Page 69 of 120 FirstFirst ... 1959676869707179119 ... LastLast
Results 681 to 690 of 1194
  1. #681
    Join Date
    Oct 2006
    Location
    Italy
    Posts
    634
    Plugin Contributions
    0

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

    A new extra filed, called tech sheet, to add product description, so I write tech information in this field, and automatically show as a new tab

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

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

    Quote Originally Posted by 100asa View Post
    A new extra filed, called tech sheet, to add product description, so I write tech information in this field, and automatically show as a new tab
    Yes, read the readme file included for reference on how to do that. Also follow the example i posted above about that.

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

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

    Quote Originally Posted by Website Rob View Post
    Being a recent convert from osCommerce to ZenCart, I am just now playing catch-up with coding, customizing, and modules. I can see the advantage this module provides and have a quick question.

    Do I understand correctly that this module works in conjunction with this file:
    includes/templates/template_default/templates/tpl_product_info_display.php

    If yes and one has done some heavy customizing to the above file, will that cause a problem with the TP module, any version?
    Hi Rob,

    Well in earlier versions, I had all the tab stuff inside a custom tpl_product_info_display.php file, which was hell for people with lots of customizations.

    Since v3.5, Ive smartened up and put everything tab-related into its own file. Now there are only a few changes needed to make the tabs work with an already custom tpl_products_info_display.php page, as documented in the "extras" folder included with the package.

    There is one limit. The layout of the data, when displayed on the tabs is displayed using a clone of the zen-cart core design. It will still use the custom css values for your content, but for example if you have the add to cart button above the description on your custom template without tabs, if you enabled the Global Add To Cart on Tabs option, it will show the Add to cart button under the description. However, if you dont enable the add to cart button as a tab, it will go back to your setup of having the add to cart button above the tabs.

    The parts of that page that aren't on tabs, will still default to your custom changes. This can vary based on how big the changes were. If you could link me to a page or send me a custom tpl_product_info_display.php file I could take a look at what custom needs there might be.

  4. #684
    Join Date
    May 2006
    Posts
    725
    Plugin Contributions
    0

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

    Quote Originally Posted by qhome View Post
    Ah I see, you want image based tabs. like http://www.target.com/gp/detail.html...sin=B000BLNSPM
    For Fixed tabs like that you would normally have to a different tab system.. or at least a completely redone css/js system. Tabbed Products Lite was designed to be dynamic via the use of text based tabs.

    But, in one of my genius moments (), I allowed the tab tags to support HTML inside the tabs you could actually include <img src...> tags in the title.
    So instead of
    <!--%Product Description%-->
    you could any variation of html, Some examples:
    <!--%Product<br />Description%--> - Wrap tab text
    <!--%<b>Product</b><i>Description</i>%--> Bold first word, Italic second
    <!--%<img src="/path/to/textimage.jpg">%-->

    And of course, even a Demo for you :)
    http://www.unbannable.com/zen/index....&products_id=4

    Now the last tab is probably more what you want. but of course you'd have to make transparent background images

    Give it a try. Let me know how it works out. :)

    You could probably do it the same way in the language file to do it for the Global Products Description tab.
    qhome,

    yes, this is just what i wanted. thanks a lot.

    i will give it a go later and tell you how it works out :)

    thanks again!!!

    p.s. what other stuff will there be in version 3.8?

  5. #685
    Join Date
    Oct 2006
    Location
    Alberta, Canada
    Posts
    4,571
    Plugin Contributions
    1

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

    Site is for a Client and not yet live, this is the URL: http://reelstackle.com/index.php

    Although most of the changes within the 'tpl_product_info_display.php' file are cosmetic, it did require a changing of the logic flow. So my only concern was your Mod looking for certain code in certain places.

    Once I get a chance to read through your material I'll have a better idea of how it all works together. I do like the idea though, of using a seperate file for any Mod.

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

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

    Quote Originally Posted by Website Rob View Post
    Site is for a Client and not yet live, this is the URL: http://reelstackle.com/index.php

    Although most of the changes within the 'tpl_product_info_display.php' file are cosmetic, it did require a changing of the logic flow. So my only concern was your Mod looking for certain code in certain places.

    Once I get a chance to read through your material I'll have a better idea of how it all works together. I do like the idea though, of using a seperate file for any Mod.
    The code needed to add is basic logic so that if you set something to show up on a tab, it doesn't also show up in its original area. So in the default zen core prod info template, you see a lot of <!-- bof Add to Cart box --> and <!-- bof Quantity Discounts box -->. I simply put an if statement around each box that checks a variable that is set when you set something to be on the tabs. If it finds the global tab is set or that the tag for that tab was found in the product description area, it will set that on_tab_flag to true and if true on tab, then don't show in normal location.

    Other than that, i only do a logic check to see if you want the main image to be on the tab or if you just want the tabs under the image. Then I require the tabs module template for the tab stuff.

    The changes that I see on your site shouldn't be affected tho as those are well below the description area.

    Quote Originally Posted by Berserker View Post
    p.s. what other stuff will there be in version 3.8?
    You'll have to wait and see
    Last edited by qhome; 20 Oct 2006 at 08:37 PM.

  7. #687
    Join Date
    Sep 2006
    Location
    Oklahoma City, OK
    Posts
    28
    Plugin Contributions
    0

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

    I am really new at all of this, so hope you will bear with me.

    I've installed newest ver. of Zen-Cart, works great.

    Now I am trying to get Tabbed Lite to work.

    Installed temple files to custom dir, /includes/templates/custom.

    uploaded db files with SQL Query Executor

    Now my page looks like this:


    where have I gone wrong, and how do I get the tabbed templates to work.

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

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

    Quote Originally Posted by Saberman View Post
    I am really new at all of this, so hope you will bear with me.

    I've installed newest ver. of Zen-Cart, works great.

    Now I am trying to get Tabbed Lite to work.

    Installed temple files to custom dir, /includes/templates/custom.

    uploaded db files with SQL Query Executor

    Now my page looks like this:


    where have I gone wrong, and how do I get the tabbed templates to work.
    The tabbed look would only be on the products themselves. That page appears to be the main store front page. Try clicking on a product to see what it looks like. Also, check in your Admin->Configuration->Tabbed Products Config page to see if you have more than just "Global Product Description on Tab". If not, then run the 3.6AlternativeSQL file that I included. You should have 10 settings there, not just one.

  9. #689
    Join Date
    Sep 2006
    Location
    Oklahoma City, OK
    Posts
    28
    Plugin Contributions
    0

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

    Installed 3.6AlternativeSQL still no change. Called up product, this is what I get:




    Also need to know how to get templates to load, do I do that with the stylesheet, and do you have any examples of what to chage on thattold you I'm new to php. Just started to understand HTML, this is a whole new ball game.

    Would like it to look more like this:

    Last edited by Saberman; 23 Oct 2006 at 08:16 PM. Reason: addon

  10. #690
    Join Date
    Sep 2006
    Location
    Oklahoma City, OK
    Posts
    28
    Plugin Contributions
    0

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

    Didn't get loaded right. Want it to look more like this:


 

 

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