Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by bhuntsman
As for the Add to Cart box appearing both above and below tabs...I did that intentionally.
I can see the advantages of that. Just an idea, if product descriptions are to appear on a tab you might want to put the bottom Add to Cart box on the tab under the lengthy descriptions.
Quote:
Originally Posted by bhuntsman
The title cap for x-sell tab shows the title text wrapping to second line...again, this was intentional
Sorry I wasn't clear... was not referring to the titles ON the actual tabs, I was referring to the title bar headings within the tab containers. e.g. the "We Also Recommend" container title bar (which is included in the Future Zen template). Looks like you already adjusted by changing the define to "Related Products" or by shortening the text and adding an ellipsis to end of define. So all is well with that now.
Look forward to hearing the solutions you implemented to solve your previously reported issues.
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by Woodymon
It is my experience you have to insert a minimum of one tag in your product description for the "globals" to work (or for instance, to make the x-sell items display in the "We Also Recommend" tab and not below the tabs as you are experincing.
The mod works great but some logic issues remain with default globals and requiring one soft tag (as I reported recently).
I do not understand the reasoning (logic) behind this requirement but suspecting there is some good reason that qhome configured the mod to behave this way ;-)
Woody
Quote:
Originally Posted by ideasgirl
In my experience this is only need for the image setting. They all will appear automatically if you have any thing to show.
What ideasgirl says should be the way it works.. at least thats how it was designed and appears to work on my demo examples.
I'm back from my vacation now and I've only read this one page so maybe there is more I missed. I will try to read more of what I missed tomorrow.. im tired after a long day of travelling and going to bed for now :)
Re: Tabbed Products ''LITE'' version - Delimiter based
Here's my situation:
Running Zen Cart 1.3.0.2 with latest version of Tabbed Lite and X-sell installed.
Below are Tabbed Lite Settings in tpl_product_info_display.php
Quote:
$bGblMainImageOnTabs = true;
$bGblAddToCart = true;
$bGblAdditionalImages = true;
$bGblCustomersAlsoPurchased = true;
$bCrossSell_Exists = true;
$bGblCrossSell_Tab = true;
$bShowHeaders = true;
$bShowHeadersNoJavascript = true;
$addtocart_tab_name = 'Add to Cart';
$add_images_tab_name = 'Additional Images';
$cust_also_purchased_tab_name = 'Customers Also Purchased';
$cross_sell_tab_name = 'We Also Recommend';
For the results below I have only generic text in Products Description. No tags.
RESULT: The Main Image renders above the tabs. (this would be expected based on your note "adds Main image to tabs only if you have at least one custom tab", but I don't understand the logic of why with global on, the image does not appear on tab instead of above the tab).
RESULT: Cross sell tab containing "We Also Recommend" text within tab is displayed but no "container" for the tab is rendered (just a horzonatal line where the top of the container should be). And then of course no cross sell items render on the product info page.
However if I change $bGblCrossSell_Tab = false;
then the Xsell items appear below tabs on the product info page as expected (by default).
Later I will post some observations of unexpected strangeness when the tag <!--%Product Description%--> is inserted at beginning of "products Description" and I then change some of the above settings in tpl_product_info_display.php
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by Woodymon
For the results below I have only generic text in Products Description. No tags.
RESULT: The Main Image renders above the tabs. (this would be expected based on your note "adds Main image to tabs only if you have at least one custom tab", but I don't understand the logic of why with global on, the image does not appear on tab instead of above the tab).
This is because I haven't yet added the "$GblProdDescAsTab" feature yet. Remember I was working on it and had it almost working but there was some tough logic to work out and there were other issues I wanted to work out first. It is at the bottom of the readme in the ToDo list. When that is implemented, then it will also have that option to have the image on the tab instead of above the tab so I can see if I can see any problems.
Quote:
Originally Posted by Woodymon
RESULT: Cross sell tab containing "We Also Recommend" text within tab is displayed but no "container" for the tab is rendered (just a horzonatal line where the top of the container should be). And then of course no cross sell items render on the product info page.
However if I change $bGblCrossSell_Tab = false;
then the Xsell items appear below tabs on the product info page as expected (by default).
This was something I remember seeing as well and was fixed in 3.1 final. I haven't tested tabbed lite with 1.3.0.2 yet tho, I will be upgrading this week. Still.. I dont think a simple sql query should cause this problem. You are sure you have the latest version of Tabbed Lite? And you uploaded the jscript, and tpl files? Do any of your image files begin with numbers?... and finally.. could you send your modified tpl file to the email in the readme file. Or at least do a 'view source' on your browser on that page and copy/paste it for me and send to my email.
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by bhuntsman
Finally, after 3 long days of frustration, hair pulling, etc., my site's product page layout not only looks the way I want it to, but all the tabs also work. Here's an example page
http://www.learningbydvd.com/newstor...roducts_id=918. I would appreciate any comments, feedback or criticism.
And to everyone who contributed their thoughts and suggestions, I give you my thanks. Take care everyone. Long live ZenCart!!!
can you share what fixed the tabs for you? this seems to be a similar problem that woody is seeing with having the cross sell tab showing the tab but no products underneath.
Also after reading back a few pages it looks like I've confused a few things with not adding the Global Products Description.. i will work on that this week.. I think most of the current code is decently stable, just a few anomalies that seem to be working themselves out. So I will build the GblProdDesc on this latest version.
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by IntelCos
Few issues I've noticed...
One was that if you created a product but do not use tabs yet globals set on a java error is generated. Once you inset at least one tab, then the java error is gone.
Be sure to upload the latest jscript file in 3.11 too. That should fix it.
Quote:
Originally Posted by IntelCos
Second, trying to set the borders to use images and cannot seem to get this to work.
example border-top-image:url(../images/bordertop.gif); which is standard css entry and fails to show the image. Yet if I set the border to a pixel def only a border works. I tried to set the border as well to "wave" to see and that fails as well. Dots or solid lines work...So not sure whats up there either or what I'm doing wrong???
border-top-image and especially wavy and dots IIRC is slated for CSS3 ... CSS2.x is the current standard and CSS3 hasn't been released yet. see more here: http://www.w3.org/TR/2002/WD-css3-border-20021107/ (correct me if I'm wrong tho, I just remember having this problem a few month back when I tried it for another site of mine)
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
haven't tested tabbed lite with 1.3.0.2 yet tho
I'm running 1.3.0.2 and is working perfectly.
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by qhome
This is because I haven't yet added the "$GblProdDescAsTab" feature yet. Remember I was working on it and had it almost working but there was some tough logic to work out and there were other issues I wanted to work out first. It is at the bottom of the readme in the ToDo list. When that is implemented, then it will also have that option to have the image on the tab instead of above the tab so I can see if I can see any problems.
Apologies Q. I missed that info. Thanks for the reminder.
Quote:
Originally Posted by qhome
This was something I remember seeing as well and was fixed in 3.1 final.
What's strange is the xsell items were displaying on the tabs fine before the last Tabbed Lite upgrade (I've been testing on ZC 1302 all along.
Quote:
Originally Posted by qhome
I haven't tested tabbed lite with 1.3.0.2 yet tho, I will be upgrading this week. Still.. I dont think a simple sql query should cause this problem. You are sure you have the latest version of Tabbed Lite? And you uploaded the jscript, and tpl files?
Yes. And I reuploaded all files and did compares just in case.
Quote:
Originally Posted by qhome
Do any of your image files begin with numbers?...
Yes. Both test product image filenames begin with a numeric. Was not aware of this as an issue.
Quote:
Originally Posted by qhome
could you send your modified tpl file to the email in the readme file. Or at least do a 'view source' on your browser on that page and copy/paste it for me and send to my email.
I'll change my product image filenames first, and see if that helps.
Can you point me to a document/resource that explains not to use numerics at the beginning of image filenames? I read the docs diligently before requesting support and posting my issues. That particular guideline slipped by me somehow. Does it apply to Zen Cart in general or just when using the Tabbed Lite mod (I've been using numbers at beginning of product images filenames for some time now without issues).
P.S. I have ImageHandler2 installed if that makes any diff.
Thanks for the follow-up!
Woody
Re: Tabbed Products ''LITE'' version - Delimiter based
Quote:
Originally Posted by Woodymon
Yes. Both test product image filenames begin with a numeric. Was not aware of this as an issue.
I'll change my product image filenames first, and see if that helps.
Can you point me to a document/resource that explains not to use numerics at the beginning of image filenames? I read the docs diligently before requesting support and posting my issues. That particular guideline slipped by me somehow. Does it apply to Zen Cart in general or just when using the Tabbed Lite mod (I've been using numbers at beginning of product images filenames for some time now without issues).
P.S. I have ImageHandler2 installed if that makes any diff.
Thanks for the follow-up!
Woody
Well I didnt know about this either until when i was trying to set up my demo site and started naming files like this:
1.jpg
1_1.jpg
2.jpg
2_1.jpg
.
.
.
11.jpg
in this case, it would show 2.jpg and 2_1.jpg for product 2 properly,
but 1.jpg, 1_1.jpg, 11.jpg and 2_1.jpg for product 1. Or something hokey like that. I was doin some indepth variable echoing to see what zc saw and its basically just confusing the zc additional images code up when the file name is only a number. I think it should be fine as long as there is at least one letter or word in the name after the number. But if you had the files working with numbers in your filename in the previous version then it's probably not a problem.
Have you tried getting Xsell to work before modifying any files first just to see if it works? Ill rescan the code again. I am trying to remember back to when I was seeing this problem. I can't remember what the solution was but it took me nearly half a day to figure it out... so I'll see if I can remember.
Re: Tabbed Products ''LITE'' version - Delimiter based
Try using words for image names and words in the model number just to see if that does anything for you. I seem to recall that being related however I can't remember if that was it or not.
I'm just trying the process of elimination but so far it seems to work for me both ways.