:smile: 100% What I was thinking of...
Can I make it only appear on the first tab and not any others?
Printable View
:smile: 100% What I was thinking of...
Can I make it only appear on the first tab and not any others?
Oh. Forgot. You changed the tabs around for me...
http://www.allforyourwedding.com/~no...oducts_id=1690
Ideally. would be. The massage on the first 2 tabs. Then on the personalization tab it would disappear.
Thanks so much for the help
Is there anyway I can throw some of my attributes in one tab and make another tab for my other attributes? If this question has been covered already in this thread, just say so and I'll read the thread more carefully. I just skimmed through and didn't see anything.
Great mod...how do I disable the ZenCart's original description and have the tabs on the top just the way you have it in your demo...
Thanks.
PM
The tabs just call the zen-cart module. There's no real way to do that in zen-cart so there's no good way to do it in the tabs.
be sure you are using the latest version posted a few posts up (TPP v0.6BETA) that has the "main image on tabs" option for the image. Otherwise just use Global Product description tabs for the text on tabs. Should be the default install so assuming you installed it correctly it should already be like that.
There was a post regarding the same topic (tabs above description)...but couldn't find the answer.
Thanks,
PM
Thanks, I have the image above the tabs bar and also in the overview tab. I would like to turn-off the image above the tabs and keep the image on the overview tab only...sorry if I am not explaining my request properly. Too late in the night...Quote:
be sure you are using the latest version posted a few posts up (TPP v0.6BETA) that has the "main image on tabs" option for the image. Otherwise just use Global Product description tabs for the text on tabs. Should be the default install so assuming you installed it correctly it should already be like that.
Thanks,
PM
Still Cross-Sell dont work :no:
Hmm... If you have the "Global Main Image On Tabs" set or added "<!--#MainImageOnTab#-->" set in your product description, it should automatically remove the original image above and leave only the tabbed version.
Did you upload the new jscript_tpp.js file?
Do you have a link I can check?
Yes, the variable is set in "tabbed_products_pro.php" and I also tried by adding the tag <!--#MainImageOnTab#--> to the product description.
http://www.herbalbazar.com/index.php...&products_id=6
I observed that above link doesn't work properly when accessed the store in IE6, the left column is pushed down (happens only for the products that has attributes). It works fine in IE7 and Firefox. Can you please look into that too for me.
Thanks again,
PM
First i see that you are just renaming the old versions of the jscript_tpp.js file. You can't rename the file name part because any file that has the prefix jscript_ and the extension .js will still be loaded (thats how zen-cart works). So it appears the the _old version is overwriting the new version since its is listed alphabetically after the non-old one. Same with the _V5 version. You need to rename the jscript and .js parts. Something like:
jxscript_tpp.js_old, jxscript_tpp.js_v5,
That should fix your main image problem.
I don't have any PC's with IE6 to test the other problem but I think I might know what the problem is and I will take a look
Hi
I've tried installing this awesome module three times now, but each time I install it, the Image Handler module stops working :huh:. Has anyone got any ideas why this might be the case please? I've definitely installed the files into the correct folder as the tabs work once they've been installed.
I'm using Zencart 1.3.8a
Tabbed Prod Pro v0.6
Image Handler v2.0 zc1.3.7
Many thanks for your help
Please go into a little more detail. Are you saying that the rest of the site stops working for Image handler? or are you saying that the image on the product info page doesn't zoom?
If it is the latter, please note that the image on the product info page never zoomed. It is considered the "large" image which doesn't have a zoom option.
You can see IH2 still works on the sideboxes and main page and stuff on my demo site that has TPP.
DEMO
To test further, you can remove the product display info overrides in your template folder and use the one that is in template default and see that it also does not zoom.
Are you seeing this when using the default tpl_product_display_info.php file? I see what you are saying with your site and this is usually caused by what is called "float drop"
I notice that Cherry Zen template uses a "Float-wrap" for some of the column work. I am wondering if it related to clearboth or to something else.
I was using the tpl_product_info_display.php provided in your package...so I went back to Cherry Zen's product display info page and added the following snippet...
<?php
//BOF :: Tabbed Products Pro ::
require(DIR_WS_MODULES . 'tabbed_products_pro.php');
//EOF :: Tabbed Products Pro ::
?>
Now the issue is gone, but the display is all messed up. Please have a look.
http://www.herbalbazar.com/index.php...&products_id=6
Thanks,
PM
What I've seen of this tool looks fantastic. Its exactly what I decided today I needed to write... as it didn't exist (or so I thought) and then I found this... WOW... I have found 1 concern so far.
Here is some install problems... I'm using MySQL 5, and its a little more picky on the inserts, it likes all the fields to be specified (if you can). And you can't use "" as NULL should be used instead.
I quickly modded the TPP one here....
PHP Code:
SET @gid=0;
SELECT @gid:=configuration_group_id
FROM configuration_group
WHERE configuration_group_title LIKE '%Tabbed Products Config%'
LIMIT 1;
DELETE FROM configuration WHERE configuration_group_id = @gid;
DELETE FROM configuration_group WHERE configuration_group_id = @gid;
SET @gid=0;
SELECT @gid:=configuration_group_id
FROM configuration_group
WHERE configuration_group_title LIKE '%TPP - Config%'
LIMIT 1;
DELETE FROM configuration WHERE configuration_group_id = @gid;
DELETE FROM configuration_group WHERE configuration_group_id = @gid;
DELETE FROM configuration_group WHERE configuration_group_title LIKE '%Tabbed Products Config%';
DELETE FROM configuration_group WHERE configuration_group_title LIKE '%TPP - Config%';
DELETE FROM configuration WHERE configuration_description LIKE 'Set this to 1%' LIMIT 12;
DELETE FROM configuration WHERE configuration_title LIKE 'TPP - %' LIMIT 11;
INSERT INTO configuration_group VALUES (NULL, 'TPP - Config', 'Tabbed Products Lite - Config', '1', '1');
SET @gid=last_insert_id();
UPDATE configuration_group SET sort_order = @gid WHERE configuration_group_id = @gid;
INSERT INTO configuration VALUES(NULL, 'TPP - Global Enable Tabs', 'GLOBAL_ENABLE_TABS', '1', 'Set this to 1 if you want to enable the global use of tabs on your products', @gid, 1, '2008-01-14 20:11:07', '2007-01-12 22:07:11', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(NULL, 'TPP - 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, 2, '2008-01-14 20:18:34', '2007-01-12 22:07:11', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(NULL, 'TPP - Global Attributes on Tab', 'GLOBAL_ATTRIBUTES_ON_TAB', '1', 'Set this to 1 if you want the Attributes to appear on their own tab. This will only show up if the product has attributes to show. If there are no attributes, the tab will not show up.', @gid, 3, '2008-01-14 20:19:22', '2007-01-12 22:07:11', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(NULL, 'TPP - Global Details On Tabs', 'GLOBAL_DETAILS_ON_TAB', '1', 'Set this to 1 if you want the Product Details to appear on their own tab (weight, model number, etc). This will only show up if the product has details enabled. If there are no product details, the tab will not show up. ', @gid, 4, '2008-01-15 15:34:07', '0001-01-01 00:00:00', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(NULL, 'TPP - Global Add To Cart Tab', 'GLOBAL_ADD_TO_CART_ON_TAB', '1', 'Set this to 1 if you want the add to cart button to be on its own tab. Note this includes Add To Cart button and Qty Discounts table.', @gid, 5, '2008-01-14 19:29:49', '2007-01-12 22:07:11', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(NULL, 'TPP - 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. This will only show up if the product has additional images to show. If there are no additional images, the tab will not show up.', @gid, 6, '2008-01-14 20:19:09', '2007-01-12 22:07:11', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(NULL, 'TPP - 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. This will only show up if the product has other products to show. If there are no other products, the tab will not show up.', @gid, 7, '2008-01-14 20:19:15', '2007-01-12 22:07:11', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(NULL, 'TPP - 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, 8, '2007-01-12 22:07:11', '2007-01-12 22:07:11', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(NULL, 'TPP - 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, 9, '2007-01-12 22:07:11', '2007-01-12 22:07:11', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(NULL, 'TPP - 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. This will always show up even if there are no reviews. The Review module has its own "No reviews found" so it defaults.', @gid, 10, '2008-01-14 20:19:36', '2007-01-12 22:07:11', NULL, 'zen_cfg_select_option(array(''0'', ''1''),'),
(NULL, 'TPP - 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, '2007-01-12 22:07:11', '2007-01-12 22:07:11', NULL, 'zen_cfg_select_option(array(''0'', ''1''),');
Glad you found it useful.
Thank you for the Mysql5 update. I will add it to the Final version with credits to you.
So I'm not sure what I've not done, or is not configured correctly...
1. I installed the config sql
2. I installed all the files, including templates to my templatye folder
3. I can see the TPP config under the configuration tab.
4. The files all look to be in the correct locations, as I've done a check
But when I go to products I don't see any tabs. I've tried FireFox and Explorer and both are showing just a standard product display.
Very puzzled.
Sorry, I meant to list that. I did check FireFox, and just checked IE and JavaScript should be on.
Fixed :-)
I'd suggest leaving the "Add-to-cart" tab as off. I think this would be the preferred option for most people.
If I added a new set of fields to all products, how would I add those to a specific standard tab? Also if these fields are blank then they shouldn't be added.
Can I add additional standard tabs to all products, with the caveat that if there isn't any info, then they shouldn't display?
Well the way it works now is based on each module. For example. Additional Images, Customers Also Purchased, and Cross Sell... if there aren't any additional images, purchased products, or cross sell items, it doesn't show up.
So to add more features to a product would be essentially adding a new module to the product and then you could follow the process that was used to create those tabs to create more tabs structures.
Thanks for your help, I was able to modify the Cherry Zen template for Tabbed pro, now all is fine!
I noticed in my testing that, if the Javascript is turned off, the product info is not displayed. Is there a way to check for Javascript when loading the store, to warn the user to turn Javascript on? or check for Javascript and bypass the Tabbed Pro logic and display the default Product Info w/o Tabs?
Thanks,
PM
That shouldn't be. Sounds like you still don't have something right. The design is that when Javascript is off, you see the normal default zen-cart view of the product display page, including the product description. The tabs are set to hide by default and javascript enables them.
Take a look at my demo site with and without javascript. You should see product info and everything else while jscript is off. Be sure you didn't edit it out of your product info file when adding the tab block.
(Trying to check your site now but once again.. its taking its time to load. You might want to change hosts asap unless your not targeting USA)
@PM.
I took a look at your site and sure enough you seem to be missing the productdescription section that should appear directly under the tab block. In the default tpl_product_display_info.php file it is denoted by id="productDescription".
Not finding that in your source
I had to take that out because the description was showing up all the time, please check the link below:
http://www.herbalbazar.com/index.php...products_id=13
And also attached the code for your review.
thanks,
PM
Tabs flickers under IE and even disapear some times after you click on one,
FF works perfect!
anyone have fix for that?
And thank for this great mod.
Just Delete IE :smile: Is this IE6 or IE7? I know there was a problem with IE6 with the old tabs lite version that would hide the headerbar when you clicked on the main image to enlarge it. But I'm not quite sure what flicker means in this case.
Can you give steps to reproduce it?
Well I'm glad we got it worked out :) Enjoy!
demo and my site, if you wish i can record demo.
Ok. I was looking around at some css sites and came upon a site with css tabs that also mentioned the "IE6 Flicker" problem:
So it looks like its for people who have "NEVER" store pages .. which should be very few people.Quote:
Originally Posted by http://superfluousbanter.org/archives/2004/05/navigation-matrix/#comment15
He also figured out a solution... but its too much work to bother with since IE7 fixes the problem (stored pages ignores the tab images which are cached). Essentially I would need to create new images to load in the background with the same color as the tab images so that when the tab image changed it would show a duplicate color in the background.
Great news!
I've been working on the CSS side of things all day to find the easiest way to use different tab images. I've got about 20 different Tabs now.
I've also figured out how to out tabs on the side using just css now.
That will be the last major feature before releasing it as v1.0 and getting it out of BETA state. I'm also going to check out the CrossSell problem that some people are mentioning.
Stay Tuned while i fine tune some of the css files.
wow thanks!
about flickering ill just say well ill just say: Upgrade to FF.
VERSION 1.0 RELEASED!
Thank you to all of those who had faith in me and helped me test the first couple beta versions. Things seem to be working well for most and now is the time to officially release it.
Some additional features in the release version:
I've redesigned the css/tab image setup.Quote:
- Restructured & Added nearly 40 different tab styles. All based on an css @import command to change them out easier.
- Moved some stuff to the css files for better support of CSS Standards.
- Updated sql file to support MySql 4 & 5 (thanks quentinjs)
- Files Modified:
--modules/tabbed_products_pro.php
--css/stylesheet_tpp.css
--TabbedProductsPro.sql
--doc/readme_tabbed.html- Files Added:
--css/tpp/*.css (many files)
--images/tpp/*.gif (many files)
First off, I standardized the names (alt_tpp_tabs1.css, alt_tpp_tabs2.css, ... alt_tpp_tabs37.css) to make it simpler to reference them. I also moved all the tab images into a /tpp/ sub folder inside of the images folder and used the same name as their corresponding css file:
alt_tpp_tabs1.css <--> tableft1.gif, tabright1.gif
By default i am still using the silver tabs, which is now known as alt_tpp_tabs13.css, but it should be easier now for people to change to different styles. There are nearly 40 tab styles to choose from, so people should be able to find something they like.
I've also created one side-tab style. This is a bit trickier because of the IE6 bugs, but I managed to get it working. It doesn't use images, tho many wouldn't know it. This means you can change it to any color you want for your site if you follow the same method of fancy coloring. this style is known as alt_tpp_side1.css.
TO USE THE NEW CSS:
Simply edit the includes/templates/YOUR_TEMPLATE/css/stylesheet_tpp.css file.
Change @import "tpp/alt_tpp_tabs13.css"; to a different number and it will load that file.
UPGRADERS:
Those upgrading from previous BETA versions do not need to re-run the SQL. I haven't added any new settings, just updated it to have MYSQL 5 support.
DOWNLOAD:
I've uploaded TPP to the ZC Downloads area. Just waiting for authorization. (tho I did get a mixed messages during upload. Said "Success. Your file was submitted" in green and right below that stack said "Failed: File was not uploaded". But I am assuming it made it)
@dinix:
I went ahead and installed the latest Cross Sell contrib onto my demo site and tried it with TPP. It worked just fine. Please PM me and explain the problem you are having so I can help you figure it out.
I've put together a little test demo for most of the tab styles to be tested out.
Its a radio box chooser that auto-loads the tabs for that number so you can try them all out:
Tab Switcher Demo
(This is not part of the tab contrib, this is something I set up for you all to see all the different styles)
very very very good contribuition
works fine with cross-sell
TANKS qhome
If you want images in your description it works if you use align=right for example, but when you do this it flickers the image and then doesn't show it at all.. not in the description, or any tabs at all.
HTML Code:<img width="250" style="float: right; margin: 0px 5px 5px 0px;" src="http://www.totalgarage.ca/garagemahal/rd_1.jpg" />
Hmm... I checked IE7, FF2, Opera9 and not seeing any problem with the image. Are you saying it flickers when you use align="right" or when you use the string above? I tried both:
Code:<img width="250" align="right" src="http://www.totalgarage.ca/garagemahal/rd_1.jpg" />
Neither of them "flicker" for me on any of the above browsers.Code:<img width="250" style="float: right; margin: 0px 5px 5px 0px;" src="http://www.totalgarage.ca/garagemahal/rd_1.jpg" />
Okay my machine is on drugs and isn't sharing! I just re-did it and its working now.. SO BIZARRE!
So on to more fun things....
1. how do I remove the <hr> lines?
2. using http://www.totalgarage.ca/products/i...products_id=84 I want to have the dimensional information on the "Details" tab. Is this possible, as its just text in the product description currently.
3. I'm going to look into how I can get the shipping dimension fields added to the tabs, should be interesting...
So they are included in the 1.0 version? I installed Beta 0.4 and have made changes to product_info_display, can I just leave this file out and overwrite all the others when I install the latest version? Or have you made changes to product_info_display for 1.0 as well?
Just updated to 1.0.
Question, why did my product image, name, and prices all move into the first tab? I notice your demo http://www.unbannable.com/zen138a/in...products_id=36 still works as before, how do I move them back?
1. Those aren't <hr> those are css borders. Edit the CSS file that you are using to set borders to 0px
2. & 3. You can do it on a product-by-product basis by adding a <!--%Details%--> custom tab, then add that data under it, and use a <!--*sub_DetailsOnTab(1)*--> to put the details on that tab directly below it.
Because you ran the sql file again which sets those as defaults. Simply change them back in your admin area.
No there are no changes to the product info file. You can keep the one you have.
The only files that changed are listed in the readme history, and here
<delete>
Oh, I didn't run the SQL again, just copied the includes\ files.
Also on borders... there is 2 places in the CSS
that have borders noted, like the top one, but if you look at http://www.totalgarage.ca/products/i...products_id=84 you will see that there is additional lines across, and on the reviews page there is even more. These are very distracting, plus you can see that the image/name/price are not where they used to be, and from what I can see in the admin, there is not a specific config to just move those, either I loose the entire first tab or everything is on it.HTML Code:#slidetabsmenu {
border-bottom:1px solid #2763A5;
.tabcontent{
border-bottom: 1px solid;
Found flag for the header bar in the admin->config that solved that problem. looks much better.
On "reviews" and "customer purchased" there is still an additional border along the top. Where does this come from?
These borders are part of the original module. They aren't part of the tabs. You'd have to override them in the zen-cart stylesheet.
As far as the header bar, your template css is in need of some updating as you are seeing only the border lines because you have no header image set and you have white text on the white background so you don't see the header.
1. How do I move the Product Image, Name and Price back to upper arad, but leave the description in the tabs ?
2. I have 2 "details tabs"
I did
I have also triedHTML Code:<font size="2" style="font-family: arial,helvetica,sans-serif;">The InterChange IVB-1R Vertical Bike Hook is great for storage of anything heavy from bikes, leaf blowers and chainsaws to everything in between. Easy installation using the InterChange WallDock (included). The unit is made of sturdy solid steel construction and a durable epoxy finish. </font><font size="2"><br style="font-family: arial,helvetica,sans-serif;" /><br style="font-family: arial,helvetica,sans-serif;" />
<!--%Details%-->
<b style="font-family: arial,helvetica,sans-serif;">Dimensions:</b><span style="font-family: arial,helvetica,sans-serif;"> 10 3/4" x 5 3/4" x 3 1/2" Packaged</span><br style="font-family: arial,helvetica,sans-serif;" /><b style="font-family: arial,helvetica,sans-serif;">Color:</b><span style="font-family: arial,helvetica,sans-serif;"> Black </span><br style="font-family: arial,helvetica,sans-serif;" /><b style="font-family: arial,helvetica,sans-serif;">Max Capacity:</b><span style="font-family: arial,helvetica,sans-serif;"> 50 lbs </span><br style="font-family: arial,helvetica,sans-serif;" /></font>
<br /><br /><!--*sub_DetailsOnTab(1)*-->
<!--*sub_DetailsOnTab(#)*-->
and
<!--*sub_DetailsOnTab(2)*-->
with no sucess on making them only be 1 tab.
And thanks for the help. I also fixed that CSS thing for reviews, looks better..
Oh I see ... you probably never upgraded to TPP BETA 0.6 that added the MainImage stuff. You DO need to run the SQL file that came with v1.0. Sorry about that confusion.
For the details on tabs you need to disable the global one if you are using the sub tab one.
Hi ,
I have installed as being said by doc. I am getting error messages as below while accessing the product info page:
1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'MAX_DISPLAY_XSELL' at line 8
in:
[select distinct p.products_id, p.products_image, pd.products_name from TABLE_PRODUCTS_XSELL xp, products p, products_description pd where xp.products_id = '11' and xp.xsell_id = p.products_id and p.products_id = pd.products_id and pd.language_id = '1' and p.products_status = 1 order by xp.sort_order asc limit MAX_DISPLAY_XSELL]
Could any body help me?
Thanks
Brian
looks like you enabled the Cross Sell option on TPP but don't have the Cross Sell contrib installed. You need to have Cross Sell already installed before you can use it as a tab. If you don't want cross sell, disable the "Cross Sell as a tab" and "Cross Sell is installed" options from the admin section of TPP.
SQL fixed my problem, thats good, and I never saw the 0.6 beta :-)
Now the "Detail" thing is going to be a big concern for me... as I have a lot of products I'll want to add stuff there for... not good :-( So there isn't a way to *blend* them. I would think that from the brief look at the code that it should be doable. (I still need to delve in to add my other database fields to the "Details" tab.)
A small amount of space between the bar and the content I think is a good idea. I added:
.tabcontent{
padding-top: 10px;
}
For those using Canada Post, or dimensional shipping, I posted a new thread with some changes to allow all dimensions to be shown, the one additional change to use it for TPP is
PHP Code:
$fmtDOT .= (($flag_show_product_info_model == 1 and $products_model !='') ? '<li><b>' . TEXT_PRODUCT_MODEL .':</b> '. $products_model . '</li>' : '') . "\n";
$fmtDOT .= (($flag_show_product_info_weight == 1 and $products_weight !=0) ? '<li><b>' . TEXT_PRODUCT_WEIGHT .':</b> '. $products_weight .' '. $products_weight_type . '</li>' : '') . "\n";
$fmtDOT .= (($flag_show_product_info_weight == 1 and $products_length !=0) ? '<li><b>' . TEXT_PRODUCT_LENGTH .':</b> '. $products_length .' '. $products_dim_type . '</li>' : '') . "\n";
$fmtDOT .= (($flag_show_product_info_weight == 1 and $products_length !=0) ? '<li><b>' . TEXT_PRODUCT_WIDTH .':</b> '. $products_width .' '. $products_dim_type . '</li>' : '') . "\n";
$fmtDOT .= (($flag_show_product_info_weight == 1 and $products_length !=0) ? '<li><b>' . TEXT_PRODUCT_HEIGHT .':</b> '. $products_height .' '. $products_dim_type . '</li>' : '') . "\n";
$fmtDOT .= (($flag_show_product_info_quantity == 1) ? '<li><b>' . $products_quantity . TEXT_PRODUCT_QUANTITY . '</li>' : '') . "\n";
$fmtDOT .= (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li><b>' . TEXT_PRODUCT_MANUFACTURER .':</b> '. $manufacturers_name . '</li>' : '') . "\n";
I've been slowly working the layout, and getting it I think nearly to where I want it. And I have a question related to the space between the last bar on the content and the "write a review" button below it. There is a lot of white space and I'd like to tighten it up. If I toggle to normal view that space isn't there so I'm thinking its a TPP CSS thing, so any guidance would be appreciated to try and cut it down some.
see http://www.totalgarage.ca/products/i...roducts_id=340 for an example.
Qhome,
I uploaded the files from modules/css/appropriate images from this latest version and left the files from languages/templates as they are. I also did not run the sql file again but for some reason, the images/product title/prices are in the product information tab as well as outside the tabs? I only want them outside.
I only have Global, Additional Images, Customers Purchased and Reviews enabled in admin.
Thx
Forgot to add, I like the idea of alt_tpp_side1 in not having any images to load but is it possible to have it on top instead? Also, can the colors for it be changed?
Berserker, I believe you said earlier that you last installed Beta 0.4. There were changes made to other files after BETA 0.4. The only file that hasn't changed since then was the product display template. You will need to run the new sql and upload ALL files except for the tpl_template_display_info file, as that didn't change. When I said upgraders didn't need the new files I had BETA 0.6 users in mind. Sorry about that.
You mean you want a non-image styled top-tab style? you can take any of the top-tab stylesheets and copy it. Instead of using the images, you can just use colors.
Thx for that. I was worried I did something wrong.
And yes, I want non-image styled top-tab but im not sure what you mean by copy? Do you mean, copy the content of alt_tpp_tabs1 (for example) and paste that inside alt_tpp_side1? or use any stylesheet apart from side 1 and replace the image with colors?
Can I not copy alt_tpp_side1 instead? Because I want the hover to be a different color.
Well, the style you made for the side tabs was pretty good so I thought maybe I could use that. Anyway, I got it the way I want it now so that's all good.
Since im not using images anymore, can I delete all the "background-position:0% -42px;" comment from the stylesheet? I commented them out using /* */ and they didn't make any difference so maybe I could just delete them?
Yes you can delete all the background position stuff if not using images. Looks good the way you got the color tabs too :)
For those who don't want the ShowHeaders option, but still see it in Cross Sell and Customers Also Purchased... this was done somewhat by default, as the header already exists in those modules. I added it to the other tabs to make them match. But to make it easier I will make it go both ways. So I've got a new version of the tpp module file to hide those headers for modules that have it inherently.
I'm also looking at re-doing the cross sell exists part. To make it actually look for the file or db entry instead of having a separate manual entry in the admin area and causing an error if it is set when it doesn't exist.
I will release a 1.01 version shortly.
NEW VERSION - 1.01
I've uploaded it to the Downloads area.
(Awaiting file acceptance to the downloads area)Quote:
16-Feb-2008 - v1.01 (Release) - qhome
* Updated a few buggy CSS tab files (tab22.css was using tab21 images, spacing was off on tab1).
* Added ability for Cross Sell tab option to auto-detect Cross Sell contrib existence.
* Updated sql file too remove the "Cross Sell Exists" option since it is automatically found now
* Added support for hiding headers of modules that have their own headers (e.g. customers also purchased, cross sell)
* Files Modified:
o modules/tabbed_products_pro.php
o css/tpp/alt_tpp_tabs1.css
o css/tpp/alt_tpp_tabs21.css
o css/tpp/alt_tpp_tabs22.css
o css/tpp/alt_tpp_tabs23.css
o TabbedProductsPro.sql
o doc/readme_tabbed.html
I tried adding padding, padding-left or padding-right to the li section but did not create any spaces. I also tried the margin but that resulted to the same thing.
I have uploaded the new modules file and that worked for the customers purchased header. Do I have to run the new sql file as well?
Can i install the Pro version on zen cart 1.3.6?
You should be able to, but you might need to manually modify the 1.3.6 tpl_product_display_info.php template for tabs, as the included version was built off of 1.3.8's version and there might be some changes there.
It is quite simple to do still, only 3 code blocks that need to be pasted. One at the top, one at the bottom, and one in the middle where you want the tabs to be.
But you could try the included version to see if it works, as they may have only made minor changes between versions that might be backwards compatible.
Aside from that file, the rest of my code should work as far back as 1.2 maybe :P
qhome,
Thanks for your quick response, I'll try that and see.
Also, I'd like to ask another question. On my site i've products with lots of "options" or accessories. I'd like to show the options in its own exclusive tab. Does the Pro version support this? or if not, is there a way to make it happen?
Thank you, you are the best. :clap:
Hi qhome,
Installed the pro version on 1.3.6, and modified the products info display file in 3 places as you specified in your readme file. Installation and everything worked fine, and TPP config appears in Admin, but the products display page is blank. What do you think could be the issue?
qhome, it was my mistake. I had put the modules php in the custom folder, when I put it in the default folder it worked. Thank a lot for your help. :smile: