Page 12 of 120 FirstFirst ... 210111213142262112 ... LastLast
Results 111 to 120 of 1194
  1. #111
    Join Date
    Sep 2004
    Posts
    2,420
    Plugin Contributions
    2

    Default Re: Tabbed Products ''LITE'' version - Delimiter based

    Just downloaded v.2.7a. Besides the two reported diffs between v2.7a and v2.7, I note one other diff which was not previosuly reported. Looks insignificant, but just checking.

    2.7 line 476 shows:
    echo '</div>'; //ditch-tab-pane-wrap

    2.7a line 476 shows:
    echo '</div id="duh">'; //ditch-tab-pane-wrap

    - Woody

  2. #112
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

    Default Re: Tabbed Products ''LITE'' version - Delimiter based

    BWAHAHA! that was my way of finding out which div was which lol! When I was trying to find the problem with the table ending, I was trying to see how many times it looped through so I put that little identifier on there

    I'll remove it and fix that <? tag for the next version.

    I'll also take a look at cross sell. It should be pretty easy to make it a tab and Ill try to document how I do it.

  3. #113
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

    Default Re: Tabbed Products ''LITE'' version - Delimiter based

    CrossSell added to tabs in 10 steps :)


    DEMO: http://www.unbannable.com/zen/index....&products_id=1

    Attached a zip.. inside has 10 steps to adding the CrossSell Contrib as a tab. These 10 steps can also be a template to follow for adding any others.

    Also included the completed tpl file for those who don't want to take the time adding those steps by themselves.

    (Also fixed the <? and duh bugs mentioned above)

    Thanks guys!
    Last edited by qhome; 9 Apr 2008 at 03:38 AM.

  4. #114
    Join Date
    Jan 2006
    Posts
    115
    Plugin Contributions
    0

    Default Re: Tabbed Products ''LITE'' version - Delimiter based

    Is this a bug?
    In admin panel - product description :

    <!--%Product Description%-->
    Line1
    <!--%Extra Specs%-->
    Line2

    The 'Extra Specs' tab won't work.(left hand side bottom - error on page.)
    But if I add <!--#AdditionalImages#--> to the bottom, then it works fine.

    ------------------

    This is a great contribution, it makes the website looks much much better.
    I just think if the tab could be apeared in admin panel(WYSIWYG), it'll be perfect.

    Thank you
    ERIC

  5. #115
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

    Default Re: Tabbed Products ''LITE'' version - Delimiter based

    Quote Originally Posted by ericpeng
    Is this a bug?
    In admin panel - product description :

    <!--%Product Description%-->
    Line1
    <!--%Extra Specs%-->
    Line2

    The 'Extra Specs' tab won't work.(left hand side bottom - error on page.)
    But if I add <!--#AdditionalImages#--> to the bottom, then it works fine.

    Hmm Im trying this on my demo site and its working fine with and without the <!--#AdditionalImages#--> tag. can you post or PM the full description you are using that doesn't work.


    Quote Originally Posted by ericpeng
    This is a great contribution, it makes the website looks much much better.
    I just think if the tab could be apeared in admin panel(WYSIWYG), it'll be perfect.
    It originally was. There is a TabbedProducts nonlite version that creates a whole new product type. But that requires a database field to be added for each tab you want. And it was too hard to customize.. thats why I switched to the this "tag" method so it could be done on a per-product level.

  6. #116
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

    Default Re: Tabbed Products ''LITE'' version - Delimiter based

    ECKK.. i see it now. I removed the text before the tabs and i see the problem you are having now.. crraaaaappp

    Ok ill take a look.. you can blame woodymon for needing all these extra features (LOL j/k) :)

  7. #117
    Join Date
    Jan 2006
    Posts
    115
    Plugin Contributions
    0

    Default Re: Tabbed Products ''LITE'' version - Delimiter based

    [QUOTE=qhome]Hmm Im trying this on my demo site and its working fine with and without the <!--#AdditionalImages#--> tag. can you post or PM the full description you are using that doesn't work.

    I tried again and same problem.

    <!--%Product Description%-->
    Detailed Product Description
    512M Memory
    <!--%Test%-->
    This is another tab named test

    That's all I have in products description.

  8. #118
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

    Default Re: Tabbed Products ''LITE'' version - Delimiter based

    Quote Originally Posted by ericpeng
    Is this a bug?
    In admin panel - product description :

    <!--%Product Description%-->
    Line1
    <!--%Extra Specs%-->
    Line2

    The 'Extra Specs' tab won't work.(left hand side bottom - error on page.)
    But if I add <!--#AdditionalImages#--> to the bottom, then it works fine.

    FIXED:

    FIND (TWICE!!) :
    Code:
    if (($chkTabStart && $chkTabEnd) || ($bAdditionalImages || $bProductDetails || $bCustomersAlsoPurchased)) {
    REPLACE WITH (TWICE!!) :
    Code:
    if (($chkTabStart >= 0 && $chkTabEnd >= 0) || ($bAdditionalImages || $bProductDetails || $bCustomersAlsoPurchased) {
    I was using absolute string value check.. but if the tags weren't used, it sets the value of the chktabstart and end to -1 which is infact a real value...

    Thanks eric :)
    Last edited by qhome; 8 Jun 2006 at 09:06 PM.

  9. #119
    Join Date
    Jan 2006
    Posts
    115
    Plugin Contributions
    0

    Default Re: Tabbed Products ''LITE'' version - Delimiter based

    Quote Originally Posted by qhome
    FIXED:

    FIND (TWICE!!) :
    Code:
    if (($chkTabStart && $chkTabEnd) || ($bAdditionalImages || $bProductDetails || $bCustomersAlsoPurchased)) {
    REPLACE WITH (TWICE!!) :
    Code:
    if (($chkTabStart >= 0 && $chkTabEnd >= 0) || ($bAdditionalImages || $bProductDetails || $bCustomersAlsoPurchased) {
    I was using absolute string value check.. but if the tags weren't used, it sets the value of the chktabstart and end to -1 which is infact a real value...

    Thanks eric :)
    I changed on Line# 261 and Line# 415 and it works.
    Thank you so much.
    I think change the line #133 to <br class="clearBoth" /> will be a good idea(in case of big prodcut image).

    Thansks again
    ERIC

  10. #120
    Join Date
    Jul 2004
    Posts
    130
    Plugin Contributions
    0

    Default Re: Tabbed Products ''LITE'' version - Delimiter based

    FYI - don't know if you've noticed this yet (haven't read the whole thread) but the first tab fits nicely in a small browser width but going to the second tab makes it jump off the right side of the screen.

 

 

Similar Threads

  1. File list for Tabbed Products Lite v3.8?
    By spaz_tic in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 24 Mar 2010, 05:58 PM
  2. PHP Inlcudes with Tabbed Products Lite v3.8
    By rmjr in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 7 Dec 2007, 05:28 PM
  3. tabbed products lite big problem
    By tacotupac in forum All Other Contributions/Addons
    Replies: 5
    Last Post: 27 Jun 2007, 11:25 PM
  4. Tabbed Products LITE - CSS/JS Issue?
    By rknepp79 in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 15 Dec 2006, 08:04 PM
  5. x-sell, tabbed products lite, IH2 question
    By signs in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 30 Oct 2006, 01:43 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR