Page 113 of 222 FirstFirst ... 1363103111112113114115123163213 ... LastLast
Results 1,121 to 1,130 of 2217
  1. #1121
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Tabbed Products Pro (TPP) Contrib - Official Thread

    Quote Originally Posted by Andy_GS View Post
    Hi DivaVocals,

    unfortunatly it wouldn't be much help as the shopzilla product reviews is a paid for service, but once you pay for it they do know alot about zen-cart and are available free of charge to help + they do very comprehensive guides to installing.

    + i think it should be put in a new thread as to not confuse people with 2 seperate things.

    sorry again

    regards
    Andy.
    I understand this.. (Shopzilla product reviews is a paid service) My question/concern was in providing the FULL picture for integrating the code. Someone else reading this thread might get the impression that all they needed to do was to make one change to make the tab appear when there is in fact more to the answer.. Get what I am saying??

    Putting the rest of the answer in a new thread makes sense (if you decide to be so kind to do this ). I think a link back here to that thread is still very useful..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  2. #1122
    Join Date
    Feb 2010
    Posts
    27
    Plugin Contributions
    0

    Default Re: Tabbed Products Pro (TPP) Contrib - Official Thread

    Hello i am trying to move my "Add to Cart:" box above the tabs and so above "the text above the tabs". I moved the "Add to Cart:" box below <!--eof Product Price block --> in tpl_product_info_display.php but "the text above the tabs" still display above my "Add to Cart:" box.


    Help would be appreciated. Thanks!

  3. #1123

    Default Re: Tabbed Products Pro (TPP) Contrib - Official Thread

    Great mod but just having issues with the product description text layout.

    Without the module enabled the product text is styled using the following in my stylesheet

    Code:
    #productDescription, .shippingEstimatorWrapper (line  758)
    {
    padding-top:  0.5em;
    padding-right: 0.5em;
    padding-bottom: 0.5em;
    padding-left:  0.5em;
    }
    #productDescription  (line 1823)
    {
    width: 55%;
    float: right;
    }
    This lines the product text up nicely below the price block and next to product image.

    When i switch the mod on the product text moves under the image leaving a high gap on the right side of the page and there is no styling for the product description text anymore.

    Can anyone shed any light on this for me? Want to get the TPP working with the product description looking the same as it did without the module on.

    Image of product info screen with module off and on:
    Attached Thumbnails Attached Thumbnails Click image for larger version. 

Name:	screen grab without module installed text ok.jpg 
Views:	304 
Size:	35.2 KB 
ID:	7278   Click image for larger version. 

Name:	screen grab with module installed text bad.jpg 
Views:	292 
Size:	33.3 KB 
ID:	7279  

  4. #1124
    Join Date
    Feb 2010
    Posts
    7
    Plugin Contributions
    0

    Default Re: Tabbed Products Pro (TPP) Contrib - Official Thread

    I have spent a ludicrous number of hours searching on here and trying to get both tabbed products pro and either Zen lightbox or the slimbox to work when both installed but to no avail.

    I know some people have had no problem with compatibility but I did and saw a few others with the same problem (i.e. when TPP installed, the lightbox no longer works and opens images within the same window).

    Basically what works for me is installing and using tabbed products pro v1.05 and NOT the latest version of 1.06.
    This combined with Zen Lightbox either versions 1.4 and 1.5 (and I also use Image Handler) seems to work a treat!
    I also tried it using slimbox 1.5 but no joy so I'll stick to the Zen lightbox.

    Have no clue why this combo works for me as I am not a programmer of any description - just thought I should mention it as it could be worth a try if someone else has same problem.

  5. #1125
    Join Date
    Jun 2008
    Posts
    30
    Plugin Contributions
    0

    Default Re: Tabbed Products Pro (TPP) Contrib - Official Thread

    Setting up site to replace old published site. Installed TPP and they seem to work fine.

    The only issue I have is that under the details tab I would have thought that the manufacturer's name would be displayed after looking at tpl_product_info_display but it is not.

    When display manufacturer's name is enabled under admin it shows up in on the category product display page but not on the actual products display page.

    Got debug running and no issues there - think I have looked at all relevant files - am I missing something.

  6. #1126
    Join Date
    Dec 2006
    Location
    Seligman, MO U.S.A.
    Posts
    2,101
    Plugin Contributions
    5

    Default Re: Tabbed Products Pro (TPP) Contrib - Official Thread

    Another thing that I've found that just might be useful to somebody is that in your normal stylesheet.css for your site, if you add a background url, IT MUST BE LOWER CASE!! I'm guessing that it's because this mod "optimizes" your css. So if you've got like 4 or 5 different stylesheets loading at once, they will be combined into one with no formatting.

    But anyway, it took me a little while to figure out that 2 "hover" images in my navbar would not display due to the fact that they was the ONLY 2 images that mistakenly got written with the "URL" being in upper case........ie,

    background: URL(../images/nav_over.gif)...WILL NOT DISPLAY!

    background: url(../images/nav_over.gif).....WILL DISPLAY!


    The reason I though this might be useful is that somebody like me that was ALREADY C3C compliant like I was.....................well, after just installing a new mod.........your compliant css it one of the LAST places you would think of looking for a problem such as this.......especially when those same 2 images worked properly before the install.

    I hope this can help somebody.
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  7. #1127
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Tabbed Products Pro (TPP) Contrib - Official Thread

    The behavior has less to do with the core TPP module and more to do with the Minimizer module that is bundled into all versions of TPP since version 1.06a. Turning off the minimizer while you sort out any case issues with your CSS will do the trick..
    Quote Originally Posted by Get Em Fast View Post
    Another thing that I've found that just might be useful to somebody is that in your normal stylesheet.css for your site, if you add a background url, IT MUST BE LOWER CASE!! I'm guessing that it's because this mod "optimizes" your css. So if you've got like 4 or 5 different stylesheets loading at once, they will be combined into one with no formatting.

    But anyway, it took me a little while to figure out that 2 "hover" images in my navbar would not display due to the fact that they was the ONLY 2 images that mistakenly got written with the "URL" being in upper case........ie,

    background: URL(../images/nav_over.gif)...WILL NOT DISPLAY!

    background: url(../images/nav_over.gif).....WILL DISPLAY!


    The reason I though this might be useful is that somebody like me that was ALREADY C3C compliant like I was.....................well, after just installing a new mod.........your compliant css it one of the LAST places you would think of looking for a problem such as this.......especially when those same 2 images worked properly before the install.

    I hope this can help somebody.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  8. #1128
    Join Date
    Apr 2010
    Posts
    1
    Plugin Contributions
    0

    Default Re: Tabbed Products Pro (TPP) Contrib - Official Thread

    To share my experience about using Tabbed Products Pro Version: v1.06 (Released February 17, 2009).

    The problems are:
    when you use Details and Additional Images tabs. They will show nothing.

    How to solve?
    Please use <!--*sub_DetailsOnTab(1)*--> and <!--*sub_AdditionalImages(2)*-->
    Now,the Details and Additional Images tabs can show its contents.

  9. #1129
    Join Date
    May 2007
    Posts
    36
    Plugin Contributions
    0

    Default Re: Tabbed Products Pro (TPP) Contrib - Official Thread

    I have just installed this add on and I think it is very nice. What works by default is great but I am having a problem changing the layout with the tags. I cannot change it from the image I have attached. I have turned off HTMLArea were ever I can find it and incidently I had to turn it off in ezpages as well before I stopped seeing it in the products page.

    I have added the following tag just above the word capacity as seen in the image but it will not change the appearance.

    <!--#DetailsOnTab#-->


    What else do I need to do?

    ps the above post does not work for me.
    Attached Images Attached Images  
    Last edited by leg; 13 Apr 2010 at 10:33 AM.
    http://www.glasys.co.uk
    Noli Illegitimi Carborundum

  10. #1130
    Join Date
    May 2007
    Posts
    36
    Plugin Contributions
    0

    Default Re: Tabbed Products Pro (TPP) Contrib - Official Thread

    Quote Originally Posted by leg View Post
    I have just installed this add on and I think it is very nice. What works by default is great but I am having a problem changing the layout with the tags. I cannot change it from the image I have attached. I have turned off HTMLArea were ever I can find it and incidently I had to turn it off in ezpages as well before I stopped seeing it in the products page.

    I have added the following tag just above the word capacity as seen in the image but it will not change the appearance.

    <!--#DetailsOnTab#-->


    What else do I need to do?

    ps the above post does not work for me.
    It seems to be that using

    <!--%DetailsOnTab%-->

    instead of the tag above works. This puts the text DetailsOnTab on the tab so I can edit that.
    http://www.glasys.co.uk
    Noli Illegitimi Carborundum

 

 

Similar Threads

  1. Main Image Replacer (MIR) Contrib - Official Thread
    By qhome in forum All Other Contributions/Addons
    Replies: 21
    Last Post: 5 Aug 2017, 02:47 AM
  2. v154 Tabbed Prod Pro (TPP): Adding Anchor Links
    By Feznizzle in forum All Other Contributions/Addons
    Replies: 10
    Last Post: 30 May 2016, 07:50 PM
  3. v139h Conflicts between Tabbed Home and Tabbed Products Pro v1.07
    By swdynamic in forum All Other Contributions/Addons
    Replies: 5
    Last Post: 14 Sep 2014, 06:29 PM
  4. Column Divider Pro (CDP) Contrib - Official Thread
    By qhome in forum All Other Contributions/Addons
    Replies: 275
    Last Post: 3 Nov 2013, 07:44 AM
  5. Tabbed Products Contrib [WIP]
    By qhome in forum All Other Contributions/Addons
    Replies: 22
    Last Post: 22 Sep 2008, 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