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
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
didn't realize there was a tpp config in the admin problem solved
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
MB1
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)
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.
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
DivaVocals
Quote:
Originally Posted by
MB1
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.
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: 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.
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
:clap: AWESOME.. Thank you for SHARING your solution versus posting the "Nevermind I figured it out" kind of post.:laugh:
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
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:
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.
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.
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
Andy_GS
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.. :D) 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.
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.