Page 30 of 222 FirstFirst ... 2028293031324080130 ... LastLast
Results 291 to 300 of 2217
  1. #291
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

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

    UPDATE!

    Ok I fixed the read reviews stuff, but I'm doing it a little differently now by floating the tabcontent left as well. This should also prevent boxes from flaoting off since floats don't float drop other floats.

    But this also might break something else down the line because CSS is so flaky between browsers.

    So give this version a try.

    Files modified:
    - includes/modules/tabbed_products_pro.php
    - includes/templates/YOUR_TEMPLATE/css/tpp/*.css (all the sub css files except the alt_tpp_side1.css)


    For the PNG stuff, I managed to get it working on my demo site with IE6 & IE7:
    http://www.unbannable.com/zen138a/in...32cc4f2e37cdd4

    I noticed you had a lot of validation w3 errors so perhaps there is a problem there with the way IE renders some of the errors.
    Last edited by qhome; 9 Apr 2008 at 03:36 AM.

  2. #292
    Join Date
    Jul 2007
    Location
    Jakarta
    Posts
    358
    Plugin Contributions
    0

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

    Thanks for the review tab update. It works.


    Right, but I need to know if those png images work when the attributes are not on tabs. If you put the attributes off of the tabs, they work fine? Tho I
    am assuming they do if they work everywhere else ok too.
    The pngs display in IE on products that don't have the custom tab that include the attribute sub tab.

    http://nahidfashions.com/test_boutiq...products_id=56


    I'm working on the validation errors.

    Quote Originally Posted by qhome View Post
    For the PNG stuff, I managed to get it working on my demo site with IE6 & IE7:
    http://www.unbannable.com/zen138a/in...32cc4f2e37cdd4

    I noticed you had a lot of validation w3 errors so perhaps there is a problem there with the way IE renders some of the errors.

  3. #293
    Join Date
    Jul 2007
    Location
    Jakarta
    Posts
    358
    Plugin Contributions
    0

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

    Quote Originally Posted by qhome View Post
    For the PNG stuff, I managed to get it working on my demo site with IE6 & IE7:
    http://www.unbannable.com/zen138a/in...32cc4f2e37cdd4

    I noticed you had a lot of validation w3 errors so perhaps there is a problem there with the way IE renders some of the errors.
    I have run:
    http://jigsaw.w3.org/css-validator/v...usermedium=all


    I think I've got the validation errors fixed (except a behavioral property which I don't think is supported), but still no attribute pngs in IE 6 & 7.

    What "hack" are you using to get pngs displayed in IE 6?

    thanks for the help

  4. #294
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

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

    Quote Originally Posted by shocker View Post
    I have run:
    http://jigsaw.w3.org/css-validator/v...usermedium=all


    I think I've got the validation errors fixed (except a behavioral property which I don't think is supported), but still no attribute pngs in IE 6 & 7.

    What "hack" are you using to get pngs displayed in IE 6?

    thanks for the help
    I'm using no hacks for png display. The only hack that would be needed is one for IE6 png transparency. But for this test, I am simply adding a png image to my attribute. Nothing else.

  5. #295
    Join Date
    Jul 2007
    Location
    Jakarta
    Posts
    358
    Plugin Contributions
    0

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

    Quote Originally Posted by qhome View Post
    I'm using no hacks for png display. The only hack that would be needed is one for IE6 png transparency. But for this test, I am simply adding a png image to my attribute. Nothing else.
    I removed the transparent png hack and the pngs display in IE. (I was using a hack called Slight. I works fine, but jsut some times it gets in the way.)

    So I have to figure out how to hack the transparent pngs in order to use this.

    thanks for your help and great mod. I hope I can use it in the end.

    thanks

  6. #296
    Join Date
    Jul 2007
    Location
    Jakarta
    Posts
    358
    Plugin Contributions
    0

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

    Again great mod. I'm getting my png problems sorted out so I can put this in my live site.

    One thing I'd like to do is put the Tell a Friend and Product Notifications in the review tab.

    Can you point me in the right direction to make this mod.
    Not sure if you want to include it in the next release, but I'd like to implement this on my site to give it a more compact look but less clutter.

  7. #297
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

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

    Quote Originally Posted by shocker View Post
    Again great mod. I'm getting my png problems sorted out so I can put this in my live site.

    One thing I'd like to do is put the Tell a Friend and Product Notifications in the review tab.

    Can you point me in the right direction to make this mod.
    Not sure if you want to include it in the next release, but I'd like to implement this on my site to give it a more compact look but less clutter.
    I try to refrain from making edits to, or changing any of the supporting Zen-cart files so that if they are updated in future versions, it should be completely transparent to TPP.

    But it is quite easy at the template level for you to make those custom changes:

    1. Edit tpl_product_display_info.php
    2. Cut:
    PHP Code:
    <!--bof Tell a Friend button -->
    <?php
      
    if ($flag_show_product_info_tell_a_friend == 1) { ?>
    <div id="productTellFriendLink" class="buttonRow forward"><?php echo ($flag_show_product_info_tell_a_friend == '<a href="' zen_href_link(FILENAME_TELL_A_FRIEND'products_id=' $_GET['products_id']) . '">' zen_image_button(BUTTON_IMAGE_TELLAFRIENDBUTTON_TELLAFRIEND_ALT) . '</a>' ''); ?></div>
    <?php
      
    }
    ?>
    <!--eof Tell a Friend button -->
    3. Save that file
    4. create a copy of template_default/templates/tpl_product_reviews_default.php into your template to create an override.
    5. Edit the override file from your template templates directory. Near the end, before the final "</div>" Paste the stuff you cut from above. That will put the tell a friend button inside the template page that is called for the reviews tab.

    Do the same for the product notification

  8. #298
    Join Date
    Jul 2007
    Location
    Jakarta
    Posts
    358
    Plugin Contributions
    0

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

    Quote Originally Posted by qhome View Post

    3. Save that file
    4. create a copy of template_default/templates/tpl_product_reviews_default.php into your template to create an override.
    5. Edit the override file from your template templates directory. Near the end, before the final "</div>" Paste the stuff you cut from above. That will put the tell a friend button inside the template page that is called for the reviews tab.

    Do the same for the product notification
    Adding he Tell Friend was a piece of cake, but Product Notification appears to be trickier. What should I copy and from where?

  9. #299
    Join Date
    Feb 2004
    Posts
    1,774
    Plugin Contributions
    14

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

    Quote Originally Posted by shocker View Post
    Adding he Tell Friend was a piece of cake, but Product Notification appears to be trickier. What should I copy and from where?
    What is the product notification again? is that normally on the product info page?

  10. #300
    Join Date
    Jul 2007
    Location
    Jakarta
    Posts
    358
    Plugin Contributions
    0

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

    Quote Originally Posted by qhome View Post
    What is the product notification again? is that normally on the product info page?
    As far as I know it is usually a side box. I searched and searched but I found no option to turn this on for product info even though it is product dependent.

    It looks like I got my PNg problem sorted out.

 

 

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