Page 112 of 222 FirstFirst ... 1262102110111112113114122162212 ... LastLast
Results 1,111 to 1,120 of 2217
  1. #1111
    Join Date
    Jun 2006
    Posts
    566
    Plugin Contributions
    0

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

    i've been running tabbed products pro for a while now but i want to move my additional images right under my main image, i played around with the code to do this but it won't work. i assume it's because of tabbed products pro any suggestions to allow me to do this i assume i'll have to remove additional images coding from the TPP mod but i don't know where to start

    http://www.zen-cart.com/forum/showthread.php?t=94131
    www.gorillagear.ca = zencart v1.3.9h with 40+ mods

  2. #1112
    Join Date
    Jun 2006
    Posts
    566
    Plugin Contributions
    0

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

    didn't realize there was a tpp config in the admin problem solved
    www.gorillagear.ca = zencart v1.3.9h with 40+ mods

  3. #1113
    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 MB1 View Post
    didn't realize there was a tpp config in the admin problem solved
    How exactly did you solve your problem (it benefits others to know WHAT your solution was)

  4. #1114
    Join Date
    Jun 2008
    Posts
    187
    Plugin Contributions
    0

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

    Hi guys, we've recently added shopzilla reviews and we want to display this as a tab via tpp. Basically its a piece of javascript that displays the module from shopzilla. But how do i setup the tab and put the javascript within that tab?

    regards
    Andy.

  5. #1115
    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 DivaVocals View Post
    Quote Originally Posted by MB1 View Post
    didn't realize there was a tpp config in the admin problem solved
    How exactly did you solve your problem (it benefits others to know WHAT your solution was)
    I love when after asking for help (with the expectation that a detailed answer will be posted in response of course) people post a follow up which says NOTHING about HOW they solved their issue.. (It's a SHARED community others may benefit form YOUR experience..) **sigh**

    Anywho.... For the benefit of others reading this thread, apparently MB1 apparently solved his "problem" by activating the "Additional Images" tab from the Admin.
    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.

  6. #1116
    Join Date
    Jun 2008
    Posts
    187
    Plugin Contributions
    0

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

    hey guys, just wanted to explain how i sorted my problem for those who may also be in the same position as i was and wasn't around when TPP was installed, so didn't quite know the workings of how to configure it.

    To install shopzilla reviews as a 'tab':

    go to line:approx 339:

    PHP Code:
    $fmtRVW .= "\n" '<div style="width:100%;">' "\n"
    then i deleted: all lines under this line that had:
    PHP Code:
    $fmtRVW .= 
    until:
    PHP Code:
    $fmtRVW .= "\n" '</div>'"\n"
    then in between these tags add the following code from shopzilla:

    PHP Code:
    $fmtRVW .= '<!--bof Shopzilla Reviews -->
    <div class="pr_review_summary">
    <script type="text/javascript">SHOPZILLAREVIEWS.display.engine(document, { pr_page_id : "'
    $_GET['products_id'] .'" });</script>
    </div>
    <!--eof Shopzilla Reviews -->'

    leaving you with:
    PHP Code:
                $fmtRVW .= "\n" '<div style="width:100%;">' "\n";
                
    $fmtRVW .= '<!--bof Shopzilla Reviews -->
    <div class="pr_review_summary">
    <script type="text/javascript">SHOPZILLAREVIEWS.display.engine(document, { pr_page_id : "'
    $_GET['products_id'] .'" });</script>
    </div>
    <!--eof Shopzilla Reviews -->'
    ;
                
    $fmtRVW .= "\n" '</div>'"\n"
    then go to your admin.

    configuartion -> ttp -config -> and check that: TPP - Global Reviews Tab = 1.

    probably the majority of people know this just thought i'd contribute :).

    Andy.

  7. #1117
    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

    AWESOME.. Thank you for SHARING your solution versus posting the "Nevermind I figured it out" kind of post.

    Just so I understand it, you replaced the default Zen Cart review tab IN IT'S ENTIRETY with the Shopzilla reviews??

    Quote Originally Posted by Andy_GS View Post
    hey guys, just wanted to explain how i sorted my problem for those who may also be in the same position as i was and wasn't around when TPP was installed, so didn't quite know the workings of how to configure it.

    To install shopzilla reviews as a 'tab':

    go to line:approx 339:

    PHP Code:
    $fmtRVW .= "\n" '<div style="width:100%;">' "\n"
    then i deleted: all lines under this line that had:
    PHP Code:
    $fmtRVW .= 
    until:
    PHP Code:
    $fmtRVW .= "\n" '</div>'"\n"
    then in between these tags add the following code from shopzilla:

    PHP Code:
    $fmtRVW .= '<!--bof Shopzilla Reviews -->
    <div class="pr_review_summary">
    <script type="text/javascript">SHOPZILLAREVIEWS.display.engine(document, { pr_page_id : "'
    $_GET['products_id'] .'" });</script>
    </div>
    <!--eof Shopzilla Reviews -->'

    leaving you with:
    PHP Code:
                $fmtRVW .= "\n" '<div style="width:100%;">' "\n";
                
    $fmtRVW .= '<!--bof Shopzilla Reviews -->
    <div class="pr_review_summary">
    <script type="text/javascript">SHOPZILLAREVIEWS.display.engine(document, { pr_page_id : "'
    $_GET['products_id'] .'" });</script>
    </div>
    <!--eof Shopzilla Reviews -->'
    ;
                
    $fmtRVW .= "\n" '</div>'"\n"
    then go to your admin.

    configuartion -> ttp -config -> and check that: TPP - Global Reviews Tab = 1.

    probably the majority of people know this just thought i'd contribute :).

    Andy.
    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. #1118
    Join Date
    Jun 2008
    Posts
    187
    Plugin Contributions
    0

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

    Yep i removed the entire standard,
    although i should just add there is MORE things than just this part i pasted in order to implement these reviews on your site. This part i pasted is purely for getting the shopzilla reviews into a 'tab'.

    regards
    Andy.

  9. #1119
    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
    Yep i removed the entire standard,
    although i should just add there is MORE things than just this part i pasted in order to implement these reviews on your site. This part i pasted is purely for getting the shopzilla reviews into a 'tab'.

    regards
    Andy.
    Ahhhhh ha!!! I had thought that there would be more modifications required to fully replace the default reviews with the Shopzilla reviews..

    Could you please share the rest?? (Pretty please.. ) For folks using THIS add-on, I'm sure they would need to know the rest of what needs to be done after getting the Shopzilla reviews to appear on the reviews tab.
    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.

  10. #1120
    Join Date
    Jun 2008
    Posts
    187
    Plugin Contributions
    0

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

    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.

 

 

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