Page 69 of 222 FirstFirst ... 1959676869707179119169 ... LastLast
Results 681 to 690 of 2217
  1. #681
    Join Date
    Jan 2009
    Location
    Vegas Baby!
    Posts
    332
    Plugin Contributions
    0

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

    Quote Originally Posted by DivaVocals View Post
    Ahhh read back through this thread.. (Look for my posts..) There is a small change you have to make to this mod to make that stop.. I would search for ya, but I'm at work right now..
    Ah, well that figures

    No biggie, I'll probably never use reviews anyway.

  2. #682
    Join Date
    Jan 2008
    Posts
    139
    Plugin Contributions
    0

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

    Quote Originally Posted by CharInLasVegas View Post
    Ok, I getcha now. Yes, reviews still shows up even if you turn it off in tpp. I deleted the code from tpl_product_listing to get rid of it, I couldn't find any other way.

    As far as the other...when I have tabs enable to show product description, my product title (name) shows up above the item price where it does normally. So, yes something is not right.

    Do you have

    Code:
    <!--bof Product Name-->
    
    <h1 id="productName" class="productGeneral"><?php echo $products_name; ?></h1>
    
    <!--eof Product Name-->
    above your "price block" code?
    If you mean the tpl_product_info_display.php file, then yes, that code is present.

    I can't find a file anywhere named tpl_product_listing.php...

  3. #683
    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

    [FONT=Arial]
    Quote Originally Posted by DBB1 View Post
    If you mean the tpl_product_info_display.php file, then yes, that code is present.

    I can't find a file anywhere named tpl_product_listing.php...
    Your issue isn't caused by this mod at all, but an incorrect entry in your stylesheet. You've got this in your stylesheet:
    Code:
    /* Centerbox Category Title display */
    
    h1 {
        font-size: 1.5em;
        color: #9a9a9a;
        display: none;   /* prevents category title from displaying */
        }
    This hides ANYTHING inside the H1 tag, not just the category title. I would suggest you try this:
    Code:
    h1 {
        font-size: 1.5em;
        color: #9a9a9a;
        }
    
    #productListHeading {
        display: none;   /* prevents category title from displaying */
        }
    [/FONT]

  4. #684
    Join Date
    Jan 2009
    Location
    Vegas Baby!
    Posts
    332
    Plugin Contributions
    0

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

    Quote Originally Posted by DBB1 View Post
    If you mean the tpl_product_info_display.php file, then yes, that code is present.

    I can't find a file anywhere named tpl_product_listing.php...
    Yes, tpl_product_info_display.php. If you haven't already done so, try uploading the page without the tpp code (just take out the code in between the tpp comments in the 3 spots, leave the comments so you know where to put it back in). If it still doesn't show up, post on the General forum to see if someone can figure out why.

  5. #685
    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 CharInLasVegas View Post
    Yes, tpl_product_info_display.php. If you haven't already done so, try uploading the page without the tpp code (just take out the code in between the tpp comments in the 3 spots, leave the comments so you know where to put it back in). If it still doesn't show up, post on the General forum to see if someone can figure out why.
    DBB!'s problem is a stylesheet issue.. (Please see my post above)

    FYI, USUALLY the very last thing you ever want to do is hack at core files just to make style changes.. For most of these issues it's USUALLY a stylesheet resolution that is at the heart of the problem..

    I suggest getting the Firefox Web developer tools.. Very useful, and it's how I found out the answer..

  6. #686
    Join Date
    Jul 2004
    Location
    The Netherlands, Wierden
    Posts
    430
    Plugin Contributions
    0

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

    wonderful addon...is it possible to get the Products URL (For more information, please visit this product's webpage.) in the details tab?

  7. #687
    Join Date
    Jan 2009
    Location
    Vegas Baby!
    Posts
    332
    Plugin Contributions
    0

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

    Quote Originally Posted by DivaVocals View Post
    DBB!'s problem is a stylesheet issue.. (Please see my post above)

    FYI, USUALLY the very last thing you ever want to do is hack at core files just to make style changes.. For most of these issues it's USUALLY a stylesheet resolution that is at the heart of the problem..

    I suggest getting the Firefox Web developer tools.. Very useful, and it's how I found out the answer..
    I didn't see your post -- I'm still kind of Osc-fied, used to ripping apart the core files to change anything

  8. #688
    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 CharInLasVegas View Post
    I didn't see your post -- I'm still kind of Osc-fied, used to ripping apart the core files to change anything
    I kinda figured the issue was that's how things work in the OSC world.. That's why this is called ZEN Cart.. So have some tea (or coffee, wine, beer.. whatever mellows you) and relax my friend..

    In my experience with Zen Cart, I have found very few style or layout changes that requires ripping apart core files to achieve.. Now that said, I have run into a few layout changes that required some core file changes, but they are the exception truly and not the rule..

  9. #689
    Join Date
    Jan 2008
    Posts
    139
    Plugin Contributions
    0

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

    Quote Originally Posted by DivaVocals View Post
    [FONT=Arial]Your issue isn't caused by this mod at all, but an incorrect entry in your stylesheet. You've got this in your stylesheet:
    Code:
    /* Centerbox Category Title display */
    
    h1 {
        font-size: 1.5em;
        color: #9a9a9a;
        display: none;   /* prevents category title from displaying */
        }
    This hides ANYTHING inside the H1 tag, not just the category title. I would suggest you try this:
    Code:
    h1 {
        font-size: 1.5em;
        color: #9a9a9a;
        }
    
    #productListHeading {
        display: none;   /* prevents category title from displaying */
        }
    [/FONT]
    Bada-Bing! Thank you, DivaVocals!

    I, too use Firefox Web tools, but without knowing the tag naming conventions, it's can be next to impossible to find what you're looking for. And #productListHeading was not used in the sheet at all - how would I have known that, for example? I've been trying to comment things as I find them, but is there a master listing somewhere that describes all the possible classes and tags?

    By the way, if I turn off the TPP Global Reviews, should reviews then show up above the tabbed pages, or would that be a tweak?

    Anyway, thank you so much - you've earned your Diva status!

    DBB1

  10. #690
    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 DBB1 View Post
    Bada-Bing! Thank you, DivaVocals!

    I, too use Firefox Web tools, but without knowing the tag naming conventions, it's can be next to impossible to find what you're looking for. And #productListHeading was not used in the sheet at all - how would I have known that, for example? I've been trying to comment things as I find them, but is there a master listing somewhere that describes all the possible classes and tags?
    There are MANY styles in the code that are not in the stylesheet. You add them as you need them.. I believe in the FAQs or even the stylesheet forum there is a list of all possible styles.. other wise you have to use the Firefox tools to look..

    Quote Originally Posted by DBB1 View Post
    By the way, if I turn off the TPP Global Reviews, should reviews then show up above the tabbed pages, or would that be a tweak?
    Turning off the reviews in the admin should remove the reviews..

    Quote Originally Posted by DBB1 View Post
    Anyway, thank you so much - you've earned your Diva status!

    DBB1
    Awwww shuckins.. I didn't do anything special.. A view source of your product page revealed the ID in question, and on a hunch I took a quick look at your stylesheet because I suspected you had hidden the H1 tag, and bada bing bada boom.

 

 

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