-
Additional images problem
Hi,
My additional images are showing beautifully. But I'm having trouble showng more than one image per row. I have tried modifying the setting in the admin under :
Admin -> Images -> Product Info - Number of Additional Images per Row
But that doesn't change anything for me. I still get just the one image per row whatever figure I enter there.
Any advice would be welcome
See what I mean here : http://www.netjuggler.net/finesse-g%...ion-2-p-4.html
(Additional images show up in the Photos Tab)
-
Re: Additional images problem
Quote:
Originally Posted by
mat123slade
Hi,
My additional images are showing beautifully. But I'm having trouble showng more than one image per row. I have tried modifying the setting in the admin under :
Admin -> Images -> Product Info - Number of Additional Images per Row
But that doesn't change anything for me. I still get just the one image per row whatever figure I enter there.
Any advice would be welcome
See what I mean here :
http://www.netjuggler.net/finesse-g%...ion-2-p-4.html
(Additional images show up in the Photos Tab)
The reason you are getting only 1 picture per line is because you have:
<div class="additionalImages centeredContent back" style="width:33%;">
for your additional images module.
You are only allowing a width of 33% on your div for additional images
The default is:
<div class="additionalImages centeredContent back" style="width:100%;">
-
Re: Tabbed Products ''LITE'' version - Delimiter based
I appreciate your time and help, and have looked around as to where to change from 33% to a 100% this is a clean install on a clean 1.3.6 Zencart... weird that it should come up with a 33%. Any idea on what php file I can modify the 33% back to 100% ? I've had this same "problem" on other zencart websites. Thanks again.
-
Re: Tabbed Products ''LITE'' version - Delimiter based
iS THERE A 'NEW VERSION OF TABBED LITE which has the tabs located on the side like your demo shows ? if so where/how do I get access to that version (a beta version is acceptable because this is for an important demo now a live site right now...
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Sorry not yet. Other things came up. I hope to get to it soon. It wont be a new Tabbed Lite.. just a layout patch.
-
lost all hope!!
I just tried to install tabbed products lite on to my site and it isn't working. I believe this to be due to the sql file not installing right. I uploaded the files into the correct template and ran the sql update and all I get was:
1146 Table 'tacoman1_zc5.configuration_group' doesn't exist
in:
[SELECT @gid := configuration_group_id FROM configuration_group where configuration_group_title LIKE 'Tabbed Products Config';]
If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
Thus I cannot get it to work. nothing in the admin-config-tabbed area. and when I try to use a tab code, it displays an error on the webpage. And yes im only using source code not the htmlarea that is included in zen cart.
The site is up if it helps www.discountsupplementstore.com
Thanks,
Josh
-
Re: Tabbed Products ''LITE'' version - Delimiter based
instead of uploading the file in Admin > Tools> Install SQL Patches, copy paste the contents inside of it into the box and try running it
-
Re: lost all hope!!
Quote:
Originally Posted by
tacotupac
I just tried to install tabbed products lite on to my site and it isn't working. I believe this to be due to the sql file not installing right. I uploaded the files into the correct template and ran the sql update and all I get was:
1146 Table 'tacoman1_zc5.configuration_group' doesn't exist
in:
[SELECT @gid := configuration_group_id FROM configuration_group where configuration_group_title LIKE 'Tabbed Products Config';]
If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.
Thus I cannot get it to work. nothing in the admin-config-tabbed area. and when I try to use a tab code, it displays an error on the webpage. And yes im only using source code not the htmlarea that is included in zen cart.
The site is up if it helps
www.discountsupplementstore.com
Thanks,
Josh
Are you using a database prefix? To fix your problem, you need to add your database prefix to the sql file.
so globally replace:
FROM configuration_group --> FROM prefix_configuration_group
FROM configuration --> FROM prefix_configuration
INTO configuration_group --> INTO prefix_configuration_group
INTO configuration --> INTO prefix_configuration
UPDATE configuration_group --> UPDATE prefix_configuration_group
Be sure to use the your actual prefix, not just the word "prefix"
Does that help?
If you still can't get it working. There is a NonAdminEdition folder in your /includes/modules/ folder. Copy the version of tabbed_products_lite.php up one level to the includes/modules folder, replacing the existing Admin version. All changes will now have to be made inside the header of that file instead of via the admin panel, but at least it will get you up and running.
-
Re: lost all hope!!
Looks like you got it working. :P
www.discountsupplementstore.com
-
Re: Tabbed Products ''LITE'' version - Delimiter based
any idea when you are going to release the ":stylesheets or whatever so we can have tabs on the side??
-
Re: Tabbed Products ''LITE'' version - Delimiter based
I tried every thing from tacoman1_zc5 and changed it around alot, but errors and more errors. "I read through many of your posts to find a simliar prob" So I used the non-admin file to make it work. Works fine now editing the page itself but what commands do you enter to make the global active. is it a 0,1,true, false?
//############ GLOBALS ##############
$bGblProdDescTab = GLOBAL_PROD_DESC_ON_TAB; // Forces the Product Description to globally be in a tab
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
tacotupac
I tried every thing from tacoman1_zc5 and changed it around alot, but errors and more errors. "I read through many of your posts to find a simliar prob" So I used the non-admin file to make it work. Works fine now editing the page itself but what commands do you enter to make the global active. is it a 0,1,true, false?
//############ GLOBALS ##############
$bGblProdDescTab = GLOBAL_PROD_DESC_ON_TAB; // Forces the Product Description to globally be in a tab
The NonAdmin file shouldn't show that. You are using the "Admin" version. The nonadmin version looks like this at the top:
//-=-=-=- BOF: Tabbed Products Config -=-=-=-
//############ GLOBALS ##############
$bGblProdDescTab = true; // Forces the Product Description to globally be in a tab
$bGblMainImageOnTabs = false; // adds Main image to tabs only if you have at least one custom tab
$bGblAddToCart = false; // adds Add to Cart, Attribute Options, and Qty Discount to a tab
$bGblAdditionalImages = true; // adds Additional Images on its own tab
$bGblCustomersAlsoPurchased = true; // adds Customers Also Purchased as its own tab
$bGblMediaCollection = false; // adds Media Collection as its own tab (MUSIC PRODUCT TYPE ONLY)
$bGblReviews_Tab = true; // adds Reviews as its own tab
Go back and try my latest steps. The previous posts a few pages back were wrong because I was confusing schemas with prefixes.
-
Re: Tabbed Products ''LITE'' version - Delimiter based
After a few trials and errors I finally got it. I found that you can't do a global replace but add the prefix carfully and only in certain spots.
The big one is:
SELECT @gid := configuration_group_id FROM `zen_configuration_group` where `configuration_group_title` LIKE 'Tabbed Products Config';
it took me awhile but now it works!!
THanks Again!!
-
Re: Tabbed Products ''LITE'' version - Delimiter based
i just installed it and it allmost works
1st i can't seem to get the tabs to work it seems locked on the first tab
2nd which files do i edit to so i can work on the colors that white bg isn't working for me
http://www.gorillagear.ca/store/inde...&products_id=8
-
Re: Tabbed Products ''LITE'' version - Delimiter based
well i figured out the tabs thing i forgot to put the java script file
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
MB1
well i figured out the tabs thing i forgot to put the java script file
Look in the CSS folder in your template.. there is a folder called "EXTRA CSS FILES FOR TABS" use one at a time, they each use different tab images. You can also make custom ones following the existing one in the images folder
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Everything worked perfect untill I went to add more products today and noticed that instead of the "add to cart" button there is a text "Contact us" button. THis is very odd and I cannot figure it out. I have used the correct hard tags and sub tags but the contact link appears other than the add to cart. It was an easy setup and worked fine last night after you helped me get it going but now nothing?
GLOBALS:
Title Value Action
Show Tab Headers when Javascript is Off 0
Global Cross Sell Tab 0
Show Tab Headers 1
Cross Sell Is Installed 0
Global Media Collection Tab 0
Global Customers Also Purchased Tab 1
Global Additional Images Tab 0
Global Main Image On Tab 0
Global Add To Cart Tab 1
Global Product Description Tab 1
Global Use Sub Tags 1
Global Reviews Tab 0
SAMPLE DESC:
<!--%Product Description%--><p>Optimum Nutrition's 100% Whey Gold Standard contains 24 grams of whey protein, less than 5 grams of carbohydrates, 1.5 grams of fat and minimal lactose, the choice of brand is clear, now to decide what flavor and size! Optimum's 100% Whey Protein comes in 2, 5, and 10lb sizes and is available in Chocolate, Chocolate Mint, Strawberry, Vanilla, Tropical Punch, Rocky Road, and Cookies and Cream. And for a limited time, French Vanilla Cream, and Extreme Milk Chocolate.<!--%Nutritional Information%--> <img hspace="0" src="http://www.optimumnutrition.com/pinnacle/images/products/secondary/151.gif" /></p><!--*sub_AttributeOptions(2)*--><!--*sub_AddToCart(2)*-->
All done in code without htmlarea editor. Site is www.discountsupplementstore.com
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Josh-
Please see the other thread. The problem is not related to Tabbed Lite.
-
Re: Tabbed Products ''LITE'' version - Delimiter based
I feel like a noob, and a idot. I've been trying for hours to correct this. Odd that some how the global changed, because I didn't even know that it was there.
Thanks for your help
-
Re: Tabbed Products ''LITE'' version - Delimiter based
now how do you get the main picture and products info such as quantity and weight inside the first tab i seen it elsewhere
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
MB1
now how do you get the main picture and products info such as quantity and weight inside the first tab i seen it elsewhere
Global Main Image On Tab
-
Re: Tabbed Products ''LITE'' version - Delimiter based
i was playing with the tpl_folder but nothing i was doing was working, em i looking in the wrong area to work on this?
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
MB1
i was playing with the tpl_folder but nothing i was doing was working, em i looking in the wrong area to work on this?
Are you using the Admin or non-admin version?
Admin version: Goto Configuration->Tabbed Products Config->Global Main Image on Tabs = True
Non-Admin version: Goto includes/modules/tabbed_products_lite.php and change $bGblMainImageOnTabs=True;
-
Re: Tabbed Products ''LITE'' version - Delimiter based
i'm useing the non admin version, i'll give that a try after i upgrade the system
-
Re: Tabbed Products ''LITE'' version - Delimiter based
This may be a silly question but I have installed the admin version and run the sql file to update my database. I can see the configuration group settings and the configuration settings in phpmyadmin but I do not get the options in my configuration menu in zen cart.
Any ideas?
Thanks
Rick
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
disciple
This may be a silly question but I have installed the admin version and run the sql file to update my database. I can see the configuration group settings and the configuration settings in phpmyadmin but I do not get the options in my configuration menu in zen cart.
Any ideas?
Thanks
Rick
In the Configuration settings, do they all have the same Configuration Group ID number that matches the configuration group that is linked to "tabbed products config" ?
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Hi,
I just doubled checked each one and they all match.
Rick
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Hi ... can you please help me out.
I've installed the contrib as per your instructions on v.1.3.6 and can see the options in Admin --> Config which is all fine.
When I go to the main product description screen and add my tabs - they just don't show up. The tab identifiers are just ignored and the text for each tab is displayed in the product description area. :cry:
I am using trublu as my template and have copied the files across. Can you just also confirm that there isn't a catalog folder for this template please?
Thanks in advance
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
TeddyGirl
Hi ... can you please help me out.
I've installed the contrib as per your instructions on v.1.3.6 and can see the options in Admin --> Config which is all fine.
When I go to the main product description screen and add my tabs - they just don't show up. The tab identifiers are just ignored and the text for each tab is displayed in the product description area. :cry:
I am using trublu as my template and have copied the files across. Can you just also confirm that there isn't a catalog folder for this template please?
Thanks in advance
Do you have a link I can see? PM me if u don't want it public.
-
Re: Tabbed Products ''LITE'' version - Delimiter based
I have figured out the issue I was having which makes me feel a bit more than silly maybe on the edge of stupid.
I also have the admin profiles installed and I had not given myself permission to use the tabbed products.
Thanks for a great contribution and help.
Rick
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
disciple
I have figured out the issue I was having which makes me feel a bit more than silly maybe on the edge of stupid.
I also have the admin profiles installed and I had not given myself permission to use the tabbed products.
Thanks for a great contribution and help.
Rick
Heh.. never tried that one but good to see it works after u got permission :)
-
Re: Tabbed Products ''LITE'' version - Delimiter based
i really think this is cool and i was just curious how you go about making customizing the tab lite to look like this
http://www.winfieldwoodworks.com/cat..._Board_12.html
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
MB1
Just use colors in the style sheets and remove the background images. Then in the tpl_tabbed_products_lite.php file, you could probably change all "onclick" to "onmouseover"
-
Re: Tabbed Products ''LITE'' version - Delimiter based
thank you it's working great
-
Re: Tabbed Products ''LITE'' version - Delimiter based
is there a dowloadable version which has the tabs on the side of the like the demo shows or is that still unavailable?
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
vsymons
is there a dowloadable version which has the tabs on the side of the like the demo shows or is that still unavailable?
I'm pretty certain qhome reported in this thread (more than once) that he would post here when such update is ready ;-)
If you are happy with what you see on qhomes tabbed products demo page maybe just copy his CSS?
Woody
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
Woodymon
I'm pretty certain qhome reported in this thread (more than once) that he would post here when such update is ready ;-)
If you are happy with what you see on qhomes tabbed products demo page maybe just copy his CSS?
Woody
Well I do appologize that it has taken so long. The thing is that I recently have been enlightened to the world of "properly CSS'd Div tags". The current demo was something I was trying with many nested tables, the problem was that I had to change the code to do that.
So lately as I had been thinking of a better layout design, I had realized that the table method was a bad idea.
Then i started planning new layouts and finding the best way to design product info pages.
Then I started thinking about better ways to implement the tabs. Even tho they are already div tag based (no tables). So then as I was thinking about that, I started working on a new fully div based template. Which I do wonder why Zen team decided to use a Table for the main 3 column layout structure of zencart.. it is very limiting.
Anyway.. since I started like 5 things all at once (which is often a bad habit of mine) I haven't put the full effort into the new side view tabs.
But now that I seem to have learned quite a bit, I think it may be time to take another fresh look at the tabs and get the div stuff sorted out so that I can put the tabs on the side simply via use of CSS.
So stay tuned.. i know i said I'd get it done a while ago.. but its better that i do it right :)
-
Re: lost all hope!!
Quote:
Originally Posted by
qhome
Are you using a database prefix? To fix your problem, you need to add your database prefix to the sql file.
so globally replace:
FROM configuration_group --> FROM prefix_configuration_group
FROM configuration --> FROM prefix_configuration
INTO configuration_group --> INTO prefix_configuration_group
INTO configuration --> INTO prefix_configuration
UPDATE configuration_group --> UPDATE prefix_configuration_group
Be sure to use the your actual prefix, not just the word "prefix"
Does that help?
If you still can't get it working. There is a NonAdminEdition folder in your /includes/modules/ folder. Copy the version of tabbed_products_lite.php up one level to the includes/modules folder, replacing the existing Admin version. All changes will now have to be made inside the header of that file instead of via the admin panel, but at least it will get you up and running.
I was having the same problem, but the solution quoted didn't work. :(
Instead I ran this modified SQL (note my database prefix of 'zen_')...
Code:
DELETE FROM `configuration_group` WHERE `configuration_group_title` LIKE 'Tabbed Products Config' LIMIT 1;
DELETE FROM `configuration` WHERE `configuration_description` LIKE 'Set this to 1%' LIMIT 11;
INSERT INTO configuration_group VALUES ('', 'Tabbed Products Config', 'Tabbed Products Lite Config', '1', '1');
SELECT @gid := configuration_group_id FROM `zen_configuration_group` where `configuration_group_title` LIKE 'Tabbed Products Config';
UPDATE configuration_group SET sort_order = @gid WHERE configuration_group_id = @gid;
INSERT INTO configuration VALUES ('', 'Global Product Description Tab', 'GLOBAL_PROD_DESC_ON_TAB', '1', 'Set this to 1 if you want all products to have the Main Product Description on its own tab', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Main Image On Tab', 'GLOBAL_MAIN_IMAGE_ON_TAB', '0', 'Set this to 1 if you want the product main image on the first tab', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Add To Cart Tab', 'GLOBAL_ADD_TO_CART_ON_TAB', '0', 'Set this to 1 if you want the add to cart button on a tab. Note this includes Add To Cart, Qty Discounts, and Option Attributes. The add to cart option will add itself to the first tab if using any custom tabs, otherwise it will make its own tab, which will be the first tab. This keeps the Add to cart button in view at all times no matter the configuration', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Additional Images Tab', 'GLOBAL_ADDL_IMAGES_ON_TAB', '1', 'Set this to 1 if you want the additional images for a product on its own tab', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Customers Also Purchased Tab', 'GLOBAL_CUST_ALSO_PURCH_ON_TAB', '1', 'Set this to 1 if you want the Customers Also Purchased module on its own tab', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Media Collection Tab', 'GLOBAL_MEDIA_COLLECTION_ON_TAB', '0', 'Set this to 1 if you want the Media Collection module on its own tab. (MUSIC PRODUCT TYPE ONLY)', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Cross Sell Is Installed', 'CROSS_SELL_IS_INSTALLED', '0', 'Set this to 1 ONLY if you have the Cross Sell contrib installed as per the Cross Sell contribs instructions. This will give an error if you enable this to true without already having it installed', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Cross Sell Tab', 'GLOBAL_CROSS_SELL_ON_TAB', '0', 'Set this to 1 if you want the Cross Sell module on its own tab. This will only work if the setting \"Cross Sell Is Installed\" above is set to 1', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Show Tab Headers', 'SHOW_TAB_HEADERS', '1', 'Set this to 1 if you want a header bar to appear under the tabs, above the tab content', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Show Tab Headers when Javascript is Off', 'SHOW_TAB_HEADERS_NO_JSCRIPT', '1', 'Set this to 1 if you want the header to appear under the tabs when javascript is off. This makes it look nicer and more organized if the customer has javascript off and separates each section with a header bar. Can be used even if the normal Show Tab Header is set to false.', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Reviews Tab', 'GLOBAL_REVIEWS_ON_TAB', '1', 'Set this to 1 if you want the Product Reviews to show up on its own tab.', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Use Sub Tags', 'GLOBAL_USE_SUB_TAGS', '1', 'Set this to 1 to allow the use of sub tags to allow more than one core module to appear on the same tab.', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
Hope this helps others.
-
Re: lost all hope!!
Quote:
Originally Posted by
Alex Clarke
I was having the same problem, but the solution quoted didn't work. :(
Instead I ran this modified SQL (note my database prefix of 'zen_')...
Code:
DELETE FROM `configuration_group` WHERE `configuration_group_title` LIKE 'Tabbed Products Config' LIMIT 1;
DELETE FROM `configuration` WHERE `configuration_description` LIKE 'Set this to 1%' LIMIT 11;
INSERT INTO configuration_group VALUES ('', 'Tabbed Products Config', 'Tabbed Products Lite Config', '1', '1');
SELECT @gid := configuration_group_id FROM `zen_configuration_group` where `configuration_group_title` LIKE 'Tabbed Products Config';
UPDATE configuration_group SET sort_order = @gid WHERE configuration_group_id = @gid;
INSERT INTO configuration VALUES ('', 'Global Product Description Tab', 'GLOBAL_PROD_DESC_ON_TAB', '1', 'Set this to 1 if you want all products to have the Main Product Description on its own tab', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Main Image On Tab', 'GLOBAL_MAIN_IMAGE_ON_TAB', '0', 'Set this to 1 if you want the product main image on the first tab', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Add To Cart Tab', 'GLOBAL_ADD_TO_CART_ON_TAB', '0', 'Set this to 1 if you want the add to cart button on a tab. Note this includes Add To Cart, Qty Discounts, and Option Attributes. The add to cart option will add itself to the first tab if using any custom tabs, otherwise it will make its own tab, which will be the first tab. This keeps the Add to cart button in view at all times no matter the configuration', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Additional Images Tab', 'GLOBAL_ADDL_IMAGES_ON_TAB', '1', 'Set this to 1 if you want the additional images for a product on its own tab', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Customers Also Purchased Tab', 'GLOBAL_CUST_ALSO_PURCH_ON_TAB', '1', 'Set this to 1 if you want the Customers Also Purchased module on its own tab', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Media Collection Tab', 'GLOBAL_MEDIA_COLLECTION_ON_TAB', '0', 'Set this to 1 if you want the Media Collection module on its own tab. (MUSIC PRODUCT TYPE ONLY)', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Cross Sell Is Installed', 'CROSS_SELL_IS_INSTALLED', '0', 'Set this to 1 ONLY if you have the Cross Sell contrib installed as per the Cross Sell contribs instructions. This will give an error if you enable this to true without already having it installed', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Cross Sell Tab', 'GLOBAL_CROSS_SELL_ON_TAB', '0', 'Set this to 1 if you want the Cross Sell module on its own tab. This will only work if the setting \"Cross Sell Is Installed\" above is set to 1', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Show Tab Headers', 'SHOW_TAB_HEADERS', '1', 'Set this to 1 if you want a header bar to appear under the tabs, above the tab content', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Show Tab Headers when Javascript is Off', 'SHOW_TAB_HEADERS_NO_JSCRIPT', '1', 'Set this to 1 if you want the header to appear under the tabs when javascript is off. This makes it look nicer and more organized if the customer has javascript off and separates each section with a header bar. Can be used even if the normal Show Tab Header is set to false.', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Reviews Tab', 'GLOBAL_REVIEWS_ON_TAB', '1', 'Set this to 1 if you want the Product Reviews to show up on its own tab.', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Use Sub Tags', 'GLOBAL_USE_SUB_TAGS', '1', 'Set this to 1 to allow the use of sub tags to allow more than one core module to appear on the same tab.', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
Hope this helps others.
Hmm its odd that you would have a prefix zen_configuration_group, but not a prefix of zen_configuration
-
Re: Tabbed Products ''LITE'' version - Delimiter based
That's what I was thinking! :|
However, all my tables have a 'zen_' prefix, but when adding this prefix to the SQL above I got errors. :(
Anyway... it all appears to be working now.
Great contribution btw! :)
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
Alex Clarke
That's what I was thinking! :|
However, all my tables have a 'zen_' prefix, but when adding this prefix to the SQL above I got errors. :(
Anyway... it all appears to be working now.
Great contribution btw! :)
Well glad its working for you! Thanks for posting it, maybe its some funky nuance of mysql... Technically I never tested this myself as I dont use a prefix so I could only assume.
Glad you like it! :)
-
Re: Tabbed Products ''LITE'' version - Delimiter based
One after thorght... could the Install SQL feature add the prefix automatically?
I noticed that some table names were enclosed in '`'. Maybe these will automatically have the prefix added?
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
Alex Clarke
One after thorght... could the Install SQL feature add the prefix automatically?
I noticed that some table names were enclosed in '`'. Maybe these will automatically have the prefix added?
Ya could be good. But that would likely need to be added to the zen-cart function code for installing SQL patches. Perhaps a toggle checkbox to prepend the prefix. Maybe ZC 1.3.8 can have it :)
-
Re: Tabbed Products ''LITE'' version - Delimiter based
I was actually implying that Zen Cart currently had this feature installed and that would explain why my SQL import worked.
But hey, it works and that's that. I'm happy! :)
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
Alex Clarke
I was actually implying that Zen Cart currently had this feature installed and that would explain why my SQL import worked.
But hey, it works and that's that. I'm happy! :)
Ah I see what you're saying.. hmm i wonder if it does. Maybe thats a feature that I was not aware of so my sql implies its use.
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Either way... My version of Tabbed Products works great! :)
Thanks again for creating a great contribution.
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Qhome, Happy New Year! I was wondering if you're going to release an updated templates for the following:
- tpl_product_free_shipping_info_display.php
- tpl_product_info_display.php
- tpl_product_music_info_display.php
The above templates were changed in 1.3.7 and they are also modified by Tabbed Products.
Thanks for the great work!
-
Re: Tabbed Products ''LITE'' version - Delimiter based
From what I can see the changes were minor. But I will be looking into it. Tabbed Lite should still work with 1.3.7 for now.
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
BlessIsaacola
- tpl_product_free_shipping_info_display.php
- tpl_product_info_display.php
- tpl_product_music_info_display.php
The above templates were changed in 1.3.7 and they are also modified by Tabbed Products.
Very easy to see for yourself that the same single code change from v.1.36 to v1.37 in the above three files was the addition of:
Code:
&& $flag_show_product_info_free_shipping
to:
Code:
<?php if(zen_get_product_is_always_free_shipping($products_id_current)) { ?>
so that line is now:
Code:
<?php if(zen_get_product_is_always_free_shipping($products_id_current) && $flag_show_product_info_free_shipping) { ?>
I don't think the above is a reason for updated Tabbed Products.
Woody
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Woody,
Thanks for the clarification. When I made my post I had basically compared all 17 mods I have installed to the changelog file for v1.3.7 without regards for details. Obviously, the changes in the template files are very simple unlike some of my other mods :(
Thanks!
-
Re: lost all hope!!
So the solution for nearly all off the SQL errors is:
Code:
SELECT @gid := configuration_group_id FROM `PUT-YOUR-PREFIX-HERE_configuration_group` where `configuration_group_title` LIKE 'Tabbed Products Config';
Total SQL script after changing prefix tot zen (default) is:
Code:
DELETE FROM `configuration_group` WHERE `configuration_group_title` LIKE 'Tabbed Products Config' LIMIT 1;
DELETE FROM `configuration` WHERE `configuration_description` LIKE 'Set this to 1%' LIMIT 11;
INSERT INTO configuration_group VALUES ('', 'Tabbed Products Config', 'Tabbed Products Lite Config', '1', '1');
SELECT @gid := configuration_group_id FROM `zen_configuration_group` where `configuration_group_title` LIKE 'Tabbed Products Config';
UPDATE configuration_group SET sort_order = @gid WHERE configuration_group_id = @gid;
INSERT INTO configuration VALUES ('', 'Global Product Description Tab', 'GLOBAL_PROD_DESC_ON_TAB', '1', 'Set this to 1 if you want all products to have the Main Product Description on its own tab', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Main Image On Tab', 'GLOBAL_MAIN_IMAGE_ON_TAB', '0', 'Set this to 1 if you want the product main image on the first tab', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Add To Cart Tab', 'GLOBAL_ADD_TO_CART_ON_TAB', '0', 'Set this to 1 if you want the add to cart button on a tab. Note this includes Add To Cart, Qty Discounts, and Option Attributes. The add to cart option will add itself to the first tab if using any custom tabs, otherwise it will make its own tab, which will be the first tab. This keeps the Add to cart button in view at all times no matter the configuration', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Additional Images Tab', 'GLOBAL_ADDL_IMAGES_ON_TAB', '1', 'Set this to 1 if you want the additional images for a product on its own tab', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Customers Also Purchased Tab', 'GLOBAL_CUST_ALSO_PURCH_ON_TAB', '1', 'Set this to 1 if you want the Customers Also Purchased module on its own tab', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Media Collection Tab', 'GLOBAL_MEDIA_COLLECTION_ON_TAB', '0', 'Set this to 1 if you want the Media Collection module on its own tab. (MUSIC PRODUCT TYPE ONLY)', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Cross Sell Is Installed', 'CROSS_SELL_IS_INSTALLED', '0', 'Set this to 1 ONLY if you have the Cross Sell contrib installed as per the Cross Sell contribs instructions. This will give an error if you enable this to true without already having it installed', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Cross Sell Tab', 'GLOBAL_CROSS_SELL_ON_TAB', '0', 'Set this to 1 if you want the Cross Sell module on its own tab. This will only work if the setting \"Cross Sell Is Installed\" above is set to 1', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Show Tab Headers', 'SHOW_TAB_HEADERS', '1', 'Set this to 1 if you want a header bar to appear under the tabs, above the tab content', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Show Tab Headers when Javascript is Off', 'SHOW_TAB_HEADERS_NO_JSCRIPT', '1', 'Set this to 1 if you want the header to appear under the tabs when javascript is off. This makes it look nicer and more organized if the customer has javascript off and separates each section with a header bar. Can be used even if the normal Show Tab Header is set to false.', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Reviews Tab', 'GLOBAL_REVIEWS_ON_TAB', '1', 'Set this to 1 if you want the Product Reviews to show up on its own tab.', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
INSERT INTO configuration VALUES ('', 'Global Use Sub Tags', 'GLOBAL_USE_SUB_TAGS', '1', 'Set this to 1 to allow the use of sub tags to allow more than one core module to appear on the same tab.', @gid, '11', now(), now(), NULL, "zen_cfg_select_option(array('0', '1'),");
Quote:
Originally Posted by
qhome
Hmm its odd that you would have a prefix zen_configuration_group, but not a prefix of zen_configuration
-
Re: Tabbed Products ''LITE'' version - Delimiter based
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Im not sure if anybody else is aware of this bug, i thought id mention it:
When reviews are displayed on tabs, and then flow onto more than one page, when the user clicks a page number the reviews stop displaying. My website reloads the "Product Description" tab with "page=2" in the address bar. Is there a way to force TabbedProducts to load the Reviews tab?
This is a brilliant contribution, it has really done wonders for my store! Thank you!
Adam
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
AdamBoyle
Im not sure if anybody else is aware of this bug, i thought id mention it:
When reviews are displayed on tabs, and then flow onto more than one page, when the user clicks a page number the reviews stop displaying. My website reloads the "Product Description" tab with "page=2" in the address bar. Is there a way to force TabbedProducts to load the Reviews tab?
This is a brilliant contribution, it has really done wonders for my store! Thank you!
Adam
Hmm I guess I never tested it with more than a page before. Ill take a look
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Is there a possible conflict with easy rollovers? Rollovers work outside the tabs, but not inside.
It might be also an issue with easy rollovers as well. Kinda lost on this:lamo:
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
AdamBoyle
Im not sure if anybody else is aware of this bug, i thought id mention it:
When reviews are displayed on tabs, and then flow onto more than one page, when the user clicks a page number the reviews stop displaying. My website reloads the "Product Description" tab with "page=2" in the address bar. Is there a way to force TabbedProducts to load the Reviews tab?
This is a brilliant contribution, it has really done wonders for my store! Thank you!
Adam
got a link?
Quote:
Originally Posted by
IntelCos
Is there a possible conflict with easy rollovers? Rollovers work outside the tabs, but not inside.
It might be also an issue with easy rollovers as well. Kinda lost on this:lamo:
got a link? :P
-
Re: Tabbed Products ''LITE'' version - Delimiter based
I sure do there big buddy:smartass:
lookie here
Also, for some darn reason I also get a image link up below the tabs as well???
Prior to this, we had started a new base, but to many versions jumped and we decided to do a full new build. In 1.3.0.2 Everything was working just peachy, but not...headaches upon headaches
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Another question as I tried finding out how to have the image with the text on the top right, In the first versions anlong with 1.3.02, this worked fine, but all the upgrades have left me cross-:lamo: eyed
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
IntelCos
Is there a possible conflict with easy rollovers? Rollovers work outside the tabs, but not inside.
It might be also an issue with easy rollovers as well. Kinda lost on this:lamo:
I'm looking at your site here:
http://intelcosmet.com/boutique/inde...&products_id=4
And rollovers appear to be working. Did you get this fixed?
I would think you would have only needed to add the class="rollover" to the image and that would be it. was that the fix?
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Not fixed, I had to do a trick with the product image and needed to add another dupe with the _over to it.
Some rollovers work, example, a rollover inside a tab does not work.
Also, take for example the login button, in ver 1.3.02 of this, I had rollovers and tabs wroking like a charm.
As we were working to get this up, out came a series of updates, well you can already guess from this what happened, RESTART
Now everything is at 1.3.7, latest and greatest as quoted, BUT, what a headache to restart over.
I've tried everything, The rollover rev in the dl's states 1.3.6 and tried asking about that if there was a possible issue with 1.3.7, but thats seems to have called on a black whole so to speak(no response as of yet)
One thing I've noted which is a bit of pain, is that the hard coded tabs reflect only English, thus in the case of a multi-lang site I am fixed with inserting manual tab code. Is there a way for the hard-coded tabs to pick up on the lang that is defaulted?
I really would like this to work, the use of rollovers and your tabs contrib gives a nice touch.
-
Re: Tabbed Products ''LITE'' version - Delimiter based
See this example on 1.3.0.2 to see what I mean.
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
IntelCos
I've tried everything, The rollover rev in the dl's states 1.3.6 and tried asking about that if there was a possible issue with 1.3.7, but thats seems to have called on a black whole so to speak(no response as of yet)
I will have to install the rollover contrib and take a look
Quote:
Originally Posted by
IntelCos
One thing I've noted which is a bit of pain, is that the hard coded tabs reflect only English, thus in the case of a multi-lang site I am fixed with inserting manual tab code. Is there a way for the hard-coded tabs to pick up on the lang that is defaulted?
The tabs have been language file based since 3.5 final. The tag name is english, but the mapping of the name comes from the language files. Just create another copy of
includes/languages/english/extra_definitions/tabbed_products_lite.php
into
includes/languages/gibberish/tabbed_product_lite.php
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Ok, now for another trick, which I'm sure has been asked, ...
How do I get the text to show right of the image aligned top?
in plain text
image bla bla
bla bla
bla bla...boo
ask a ? buy now
:lamo:
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
IntelCos
Ok, now for another trick, which I'm sure has been asked, ...
How do I get the text to show right of the image aligned top?
in plain text
image bla bla
bla bla
bla bla...boo
ask a ? buy now
:lamo:
Depends which text. Do you mean you want part of the product description to be outside of the tabs and have it wrap around the text?
or
Do you want the stuff like stock qty, price, model number, etc?
-
Re: Tabbed Products ''LITE'' version - Delimiter based
@intel Cos: As qhome confirmed the rollovers on your tabs appear to be working on both of your sites. (as viewed in Firefox 2.001).
Although it is a bit off topic, regarding Easy Rollovers not working on your 1.37 site, I wanted to confirm I have Easy Rallovers installed and working on Zencart 1.37, along with Category Tab Rollovers (and also Tabbed Product rollovers).
I will need to review my shop build notes to see if I had any issues or implemented any workarounds on getting Easy Rollovers to work on 1.37. If I locate any helpful clues I will let you know.
BTW I see the cagtegories menu system you have on your production site is not running on your 1.37 site. Which categories menu mod are you using on 1.302 site?
Woody
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Thats what is so strange.
When I built 1.3.02, all went without a major hitch. Then the 1.3.7 install(new build) has taken almost two times longer for many reasons including the French Lang pak which is horrid for errors.
I used the CSS Flyout menu mod, of which I have yet to install on this build.
I have a few issues to clear before I add this in. Such as why easyrollovers fails on some things and also imposes that product photos also are rolled over.
I might try to remove this and see if I made some sort of error on the install, But I think not.
I also have this farting space problem on IE only, a one pixel space towards the top under the header image. Another head banger:lamo:
The day when all we have to do is modify one template file and the css file will be a day when Iraq deciedes to now sell flowers instead of oil.
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Can you tell me how you have your rollover mod installed ?
In the zip file it has an extra definitions folder, yet not sure on placement of this as it does not indicate....is this placed in the lang dir's or is it set in the root of the includes, meaning a creation of this folder as the base install does not have this folder in the root of includes, but rather in the root of the lang dirs?:lookaroun
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Well, this rollovers mod is really upto to something. It in fact if installed as it states, also imposes a rollover on product and cat images.
I'm using the 1.3.6 version of this along with tabs, no mods to files either, so it's got me stumped...
on version 1.3.0 of the rollover worked without a hitch on 1.3.0.2, yet the latest and greatest is giving me bumps...:no: :shocking:
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Well, I figured out the rollerover issue, and it has something to do with the version 1.3.6 of the rollerovers add on. I revert back to the 1.3.0 version of the rollovers it it works like a dream.
So If you got 1.3.6 of rollovers working with 1.3.7 and tabs 1.3.7 I'd sure in the hell like to know how.:no:
I'm not a newb, but no expert, one thing is for sure I know is that the 1.3.6 version does not work using the custom template on 1.3.7 and tabs 1.3.7
Now I'm getting closer to what I had set up in the 1.3.0.2 build...
But you know what, I got like 5 days to get this working before a major media blitz happens...I feel like I'm walking down the last lane to the chair.
-
Re: Tabbed Products ''LITE'' version - Delimiter based
still havent heard back from you about what you are lookin for in regards to the text wrapping around the main image.
are you looking to have part of the product description wrap around the pic or just the model num, qty in stock, etc?
is the pic gonna be on the tabs or off the tabs?
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Hi Q,
Sorry about that, in my version of 1.3.0.2 you will see exactlly what I mean.
The pic will be larger and would like the text to align to the top right. The pic being on the main tab along with add to cart and ask a question like that which I had setup previous to 1.3.7
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Hey Q, got another question/request
Is there a way using the admin version with globals to allow for some sort of intro text before the tabs.
If done the long way and one uses the manual method for tabs all is fine, but a quick way to allow an intro flyby or text box that is non tabbed gives a nice touch.
Once again you can see this sort of effect on my previous build prior to 1.3.7
Maybe a balloon option where the intro text becomes a tag cloud so to speak.
It could have css control as well with a css image driven highlight or balloon or whatever one would drive into the css.
If a tag cloud, one could use it to SEF advantages as well.
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Ok, figured a round about way to achieve text above by turning off the main tab. I tried using the stop parsing for text to tabs but it did not work, the text just dissappeared. As it states in the readme, this text should show below the tabs.
Not so in my case so not sure if I did that right. But point is I in this case prefer an intro heading that I've somewhat managed to arrive at now.
-
Re: Tabbed Products ''LITE'' version - Delimiter based
One thing that I'd like to change would be that if you use the title blocks would be to allow it to be contained outside the main container.
This way, one's content in the tab could be padded with out touching the title block as this allows the tabs to be an enity as well as the title block and main container.
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
IntelCos
One thing that I'd like to change would be that if you use the title blocks would be to allow it to be contained outside the main container.
This way, one's content in the tab could be padded with out touching the title block as this allows the tabs to be an enity as well as the title block and main container.
There's lots of ways to move stuff around, unfortunately its near impossible with the current template system to do everything. I had originally planned some additional layouts based on the product_type system, but notice there is no current (easy) way to edit a product's product type. The way I had it planned was to modify the Quick_updates contrib and add the fields for product type as one of the options to change.
The idea was decent but I was asked by the zc team not to release it as it would confuse things later when they revamped the product type system.
So hopefully they have some plans coming soon on better ways to do this, for now you can manually move the code around but there are 80 million different ways to move stuff around and I'm only one man :P
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Did you get around to trying the 1.3.6 version of easy with tabs ?
I could not get it to work as mentioned so I reverted an older version of Easy Rollovers and it works.
I have an issue with IH though. The zoom feature of a product image does not work in a tabbed container. Would you know why or what would be the fix for this?
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
IntelCos
Did you get around to trying the 1.3.6 version of easy with tabs ?
I could not get it to work as mentioned so I reverted an older version of Easy Rollovers and it works.
I have an issue with IH though. The zoom feature of a product image does not work in a tabbed container. Would you know why or what would be the fix for this?
I'll install the rollover today and check.
From what I remember the IH doesn't zoom the tpl_product_info_display.php image ever. Even without tabs.
I'm trying it out now on a core install of ZC 1.3.7 and its not zooming that image. I'm pretty sure I remember reading that was not supported.
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Ok, well at least won't break my brains over that...
I tried many flavors witht eh new easy rollovers 1.3.6, but it was driving my template crazy. So, I tired the older version and bang, worked like a dream and no java errors and still validates.
Let me know how you work out as well. I used the custom template base install for 1.3.7 and built from there using overrides and such. I only dropped in one product to get it to flow right, then the rest will follow. So far, it looks good from my opinion with some little things to adress to make it upto where we want it.
-
Re: Tabbed Products ''LITE'' version - Delimiter based
IntelCos. There was a bug in the Easy Rollovers v1.3.6 Contrib. I fixed it and reuploaded the file to the downloads area. Read more about it HERE
It should work fine with Tabbed Products Lite now.
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Hey Q,
When I built this the first round om 1.3.02, I did not need to mod anything to make the text flow down along the right of the image as you can see from the test active site in the previous posts. I alos used the non-admin version of tabs which was the only difference other the the versions now.
So, there has to be a quick way to do this, I did a compare on the files from 1.3.0.2 and 1.3.7 and there are so many changes I don't really know where to start.
As you can see at what I'm trying to do is that the main tab uses a large image as with all products they will hold the same ratio.
Thus, the big space that is now in the 1.3.7 needs to go and I want that to look like it was on the 1.3.0.2 build up.
So, any clues would be a welcomed.
Also, I'm not sure that update fixes all the issues in regards to the rollovers. Will see, but after getting it to finally work with all the reverts, not sure I want to got a round 3 on this.
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
IntelCos
Hey Q,
When I built this the first round om 1.3.02, I did not need to mod anything to make the text flow down along the right of the image as you can see from the test active site in the previous posts. I alos used the non-admin version of tabs which was the only difference other the the versions now.
So, there has to be a quick way to do this, I did a compare on the files from 1.3.0.2 and 1.3.7 and there are so many changes I don't really know where to start.
Oh yea there is a quick way for this, I know where the fix is. The reason it was done that way was to make room for the product details like stock qty, model number, and "ask a question" link on the right side of the picture.
But if you are not using them then you would have a big space like you say. I'm just wondering if there is an easier way to do it when I release an updated tabbed products lite file. I think it would probably make sense for me to add the clear:both to the css so you could remove it easily without code change. For now, the fix is
FIND in templates/tpl_tabbed_products_lite.php
Code:
<!--eof Product details list -->
<br class="clearBoth" />
REMOVE this:
Code:
<br class="clearBoth" />
FIND in templates/tpl_product_info_display.php
Code:
<!--eof Product details list -->
<br class="clearBoth" />
REMOVE this:
Code:
<br class="clearBoth" />
Quote:
Originally Posted by
IntelCos
Also, I'm not sure that update fixes all the issues in regards to the rollovers. Will see, but after getting it to finally work with all the reverts, not sure I want to got a round 3 on this.
Thou musn't doubt the Q! All is perfect when the Great and Powerful Q puts his name on it. so yes.. the entire 1.3.6 Easy Rollovers contrib could not work at all the way it was.. the readme was correct, but the foldername was just confused. it works as expected now, Guaranteed!
You can get it here: http://www.zen-cart.com/forum/showth...768#post324768 since its not yet approved to the downloads area yet.
-
Re: Tabbed Products ''LITE'' version - Delimiter based
I could not find anything on this and I can't seem to figure out what the problem is but only some of the products show up for some reason. For example this one has no info that comes up
http://thegaslightcompany.com/index....roducts_id=184
but this one comes up fine
http://thegaslightcompany.com/index....roducts_id=186
I removed some of the products and readded them but that did not seem to fix it and I have no idea why half work and half don't.
-
Re: Tabbed Products ''LITE'' version - Delimiter based
For now I just took Tabbed Lite out since I cant figure out the problem and I am very new at this.
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
Shtocoh
I don't see a description on either one of those products. Nor do i see the tab code. Are you sure you extracted it to the right places. I see you removed the tab stuff for now but I still don't see product descriptions
-
Re: Tabbed Products ''LITE'' version - Delimiter based
I's got's da Q's and da I's and that makes....
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Q is da man,,,hehe
The tab fix of yours was what I needed, looks better now. One question. Can't seem to figure our the text left and right inner padding. If you notice, the text does a ########-kiss and I've tried a few things, but whacks out the border alignment,,,
maybe cause I got buggy-eyes from doing the tpl square dance:shocking: :lamo: :down: :cool:
Figured I'm on a roll so why not hit for numba 2...
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Q, did you find out a way to increase the inner padding of the tab so that the text does not buttkiss as it does on the build I'm doing. This seems to avoid my eyes, then again, maybe more coffee:smartass:
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
IntelCos
Q, did you find out a way to increase the inner padding of the tab so that the text does not buttkiss as it does on the build I'm doing. This seems to avoid my eyes, then again, maybe more coffee:smartass:
Without being able to test:
Try this:
in stylesheet_tablitev3_xxxx.css
add:
.tabcontent{
padding: 5px;
border: 1px solid;
background: white;
color: black;
display:none;
}
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Ok, that works, but now gives me the issue of the header band under the tabs, what would I do to have this under the tabs between the container. I can't seem to figure that out yet...I owe ya a beer or two:wink2:
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
IntelCos
Ok, that works, but now gives me the issue of the header band under the tabs, what would I do to have this under the tabs between the container. I can't seem to figure that out yet...I owe ya a beer or two:wink2:
Not sure I understand. You mean the header bar is also padded too much and u want it directly under the tabs?
Just change
padding: 5px;
to
padding: 0px 5px 5px 5px;
(read it clockwise: top right bottom left)
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Right, So that the header bar is not padded but respects the width of the container thus the padding only effects the container of the text inside the tabs.
This leaves the flexiblilty to control the header bar, thus 3 elements, tabs, header bar, container.
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
IntelCos
Right, So that the header bar is not padded but respects the width of the container thus the padding only effects the container of the text inside the tabs.
This leaves the flexiblilty to control the header bar, thus 3 elements, tabs, header bar, container.
Hmm..well that will take a little bit of coding editing because I never gave a class for that part of the div.
What you need to do is edit the /templates/tpl_tabbed_products_lite.php file and
Find:
<div style="width:100%;">' . "\n";
Replace with:
<div style="width:90%; padding: 0px 15px 15px 15px;">' . "\n";
-
Re: Tabbed Products ''LITE'' version - Delimiter based
I did that of the header section of the code. but it does not work.
Do I need to replace all instances of this?
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
IntelCos
I did that of the header section of the code. but it does not work.
Do I need to replace all instances of this?
yea sorry. change it in all 5 places
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Hey Q, thank you thank you thank you, take a look now and let me know what you think?
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
IntelCos
Hey Q, thank you thank you thank you, take a look now and let me know what you think?
Link? I keep checking intelcos.com/ICS but i dont see any tabbed products
-
Re: Tabbed Products ''LITE'' version - Delimiter based
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
IntelCos
ya looks good :)
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Just added the Ask a Q mod, have yet to try your rollovers fix as it is working as it stands, and validates,,,whew, so far...lol
-
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by
IntelCos
Quote:
Originally Posted by
IntelCos
Just added the Ask a Q mod, have yet to try your rollovers fix as it is working as it stands, and validates,,,whew, so far...lol
have no fear.. the rollovers fix will work :)