Page 131 of 222 FirstFirst ... 3181121129130131132133141181 ... LastLast
Results 1,301 to 1,310 of 2217
  1. #1301
    Join Date
    Oct 2010
    Posts
    19
    Plugin Contributions
    0

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

    Quote Originally Posted by DivaVocals View Post
    Unless you are planning on creating WordPress tabs on your product pages, DELETE this file.. You don't need it.. This is the ONLY purpose this file serves..
    Thanks for your help Diva, i managed to get it working by doing a series of re-installing fresh, deleting that file and messing about a bit :)

  2. #1302
    Join Date
    Jun 2009
    Location
    Miami, Fl
    Posts
    138
    Plugin Contributions
    0

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

    I installed this mod and work great... I have only a cosmetic problem. In the first tab (the most important) the text it not have any margin on the left. The others tab are fine but the product description look odd.
    Please take a look:


    This is the link to see if any of you can tell me what CSS file I need to fix. Thanks

    http://cryo64.com/store/index.php?ma...&products_id=8
    Last edited by DArnaez; 6 Oct 2010 at 05:05 AM.

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

    DArnaez, Try adding this to your stylesheet.css:

    Code:
    .productGeneral.biggerText {margin: 0 0 0 15px;}
    Teach them to shop and they will shop today;
    Teach them to Zen and they will OWN a shop tomorrow!

  4. #1304
    Join Date
    Jun 2009
    Location
    Miami, Fl
    Posts
    138
    Plugin Contributions
    0

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

    It works!!!!!!! Fantastic! Thanks!!!... Now.. to move away of the line in the bottom? I tried {margin: 0 0 10 15px;}, {margin: 0 10 0 15px;} and {margin: 10 0 0 15px;}... but nothing works.

    I should just add some </br> into the products description? or with the CSS can I do it?


    BTW Thanks a lot!

  5. #1305
    Join Date
    Dec 2009
    Posts
    204
    Plugin Contributions
    0

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

    try:
    padding-bottom:15px

  6. #1306
    Join Date
    Dec 2006
    Posts
    199
    Plugin Contributions
    0

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

    Hey, we're preparing a big revamp of our product info pages and I want Tabbed products to be a part of it. I have installed this on our test server and really like it. There's just a bit of layout that's holding us back. I think the Product Extra Fields mod will take care of it but I'm not sure if they will play nicely together. Essentially, we want the image in the top left, some product data across the top right and then the tabbed description, etc. spanning all the way across below them. Any thoughts?

  7. #1307
    Join Date
    Sep 2009
    Posts
    26
    Plugin Contributions
    0

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

    I've added attributes to my products and the tab just shows up as "attributes". How do I change that based on the attributes they can choose from?

    Ideally: Is there a way to move that above the "add to cart" instead of being tabbed?

  8. #1308
    Join Date
    Jul 2007
    Location
    Roseville, Michigan
    Posts
    188
    Plugin Contributions
    0

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

    I've add the module "Numinix Product Fields" to my site. How do I add the upc and the sku so that they show up on the Details Tab.

    I tried adding this to my tpl_product_info_display.php, but it still does not show up.

    PHP Code:
    <!--bof Product details list  -->
    <?php //if ( (($flag_show_product_info_model == 1 and $products_model != '') or ($flag_show_product_info_weight == 1 and $products_weight !=0) or ($flag_show_product_info_quantity == 1) or ($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name))) ) { ?>
    <?php 
    if ( (($flag_show_product_info_model == and $products_model != '') or ($flag_show_product_info_weight == and $products_weight !=0) or ($flag_show_product_info_quantity == 1) or ($flag_show_product_info_dimensions == 1) or ($flag_show_product_info_condition == 1) or ($flag_show_product_info_upc == 1) or ($flag_show_product_info_isbn == 1) or ($flag_show_product_info_manufacturer == and !empty($manufacturers_name))) ) { ?> 
    <ul id="productDetailsList" class="floatingBox back">
      <?php echo (($flag_show_product_info_model == and $products_model != '') ? '<li>' TEXT_PRODUCT_MODEL $products_model '</li>' '') . "\n"?>
      <?php echo (($flag_show_product_info_weight == and $products_weight != 0) ? '<li>' $products_weight_display '</li>'  '') . "\n"?>
      <?php echo (($flag_show_product_info_actual_weight == and $products_actual_weight != 0) ? '<li>' $products_actual_weight_display '</li>'  '') . "\n"?>
      <?php echo (($flag_show_product_info_dimensions == && ($products_length != || $products_width != || $products_height != 0)) ? '<li>' $products_dim_display '</li>'  '') . "\n"?> 
      <?php echo (($flag_show_product_info_diameter == && $products_diameter != '') ? '<li>' $products_diameter_display '</li>'  '') . "\n"?>   
      <?php echo (($flag_show_product_info_quantity == 1) ? '<li>' $products_quantity TEXT_PRODUCT_QUANTITY '</li>'  '') . "\n"?>
      <?php echo (($flag_show_product_info_manufacturer == and !empty($manufacturers_name)) ? '<li>' TEXT_PRODUCT_MANUFACTURER $manufacturers_name '</li>' '') . "\n"?>
      <?php echo (($flag_show_product_info_condition == and $products_condition != '') ? '<li>' TEXT_PRODUCTS_CONDITION $products_condition '</li>' '') . "\n"?>
      <?php echo (($flag_show_product_info_upc == and $products_upc != '') ? '<li>' TEXT_PRODUCTS_UPC $products_upc '</li>' '') . "\n"?>  
      <?php echo (($flag_show_product_info_isbn == and $products_isbn != '') ? '<li>' TEXT_PRODUCTS_ISBN $products_isbn '</li>' '') . "\n"?>
      <?php echo (($flag_show_product_info_sku == and $products_sku != '') ? '<li>' TEXT_PRODUCTS_SKU $products_sku '</li>' '') . "\n"?>
    </ul>
    <br class="clearBoth" />
    <?php
      
    }
    ?>
    <!--eof Product details list -->

  9. #1309
    Join Date
    Jun 2009
    Posts
    617
    Plugin Contributions
    0

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

    Quote Originally Posted by hey_you View Post
    It could be that you're either missing a semi-colon at the end of that line, or the line above that one.

    $fmtManInfo .= "Thank you for shopping with us. If you have any questions, call us at 1-800-111-2222.";
    ty, that's exactly what it was!
    Thank you,
    autoace

  10. #1310
    Join Date
    Dec 2006
    Posts
    199
    Plugin Contributions
    0

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

    Good news! I've also gotten Numinix Fields to work with TPP and it's just about perfect for my needs.
    I was wondering where I would find the style for the background and border of the display for TPP. I found tabs that look great with my site but the rest needs work.

 

 

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