-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Great mod! It installed with ease and I was able (on the 1st try) to get a new tab inserted by following the readme PDF file.
One thing that I found, however, is that if a product has more than one page of reviews and the user presses the 'Next' link the page returns to the first tab (usually Product Description). When you click on the 'Reviews' tab, it's on the next page of reviews.
Is there a way to get the Reviews/Next to wind up with the Reviews tab open?
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Is there a way of using this module without modifying every single product?
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
bobthemolder
Is there a way of using this module without modifying every single product?
I have used custom tabs on a product by product basis.. That said, though I've not done this, I suppose you could turn off all the global tabs and use the custom tabs on whatever products you want to use them on..
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
I have a minor problem with my TPP install - on initial load of the product info page it takes second or two for the javascript to kick in. Meaning that the page loads as it did before TPP was installed and then within a second or two the whole layout of the page changes into the TPP layout. I did think of enabling Gzip compression on the site which might (?) fix the prob... as the browser waits for the whole page to be downloaded then displays it, however I also read up on this and fpund out a few older browsers don't fully support Gzip compression. I noticed in Kurois post Here that he noticed the same problem when this addon was first released... the author then fixed this prob as stated Here
But unfortunately I'm still having this issue?? :blink:
BTW I didn't install the CJ Loader module as I didn't fully understand it's purpose.. is this essential?
Is their a way to fix this minor prob?
Thanks.
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Is there a way of using this module without modifying every single product?
If you just want to use the default tabs (description, extra images, reviews, cross sell, we recommend) the answer is YES, you won't have to edit all the products.
But if you want "custom tabs" you will have to edit the product where you want that custom tab.
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
About a month ago we installed TPP on our site www.queenib.com and after a bit of a fiddle it looked brilliant. Then sadly we had to move to a different web host which we did in the usual manner of copying the database and all the files to the new server...
but for some season since the move Tabbed Products Pro has not worked.
I have checked all the files and the only file which appears to be different is the html_header.php so made a back-up of it then I uploaded the version of the html_header.php which came with the contribution... and it made the site go blank!!
so I restored to the previous version but needless to say TPP will now not work.
Has anyone an idea why the contribution version of the html_header might make my site go blank rather than enable the tabs?
OR does anyone know which lines of code in the contribution version of the html_header file can be merged into my current version and where?
Any help muchly appreciated. It's quite a puzzle!
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
beep
About a month ago we installed TPP on our site
www.queenib.com and after a bit of a fiddle it looked brilliant. Then sadly we had to move to a different web host which we did in the usual manner of copying the database and all the files to the new server...
but for some season since the move Tabbed Products Pro has not worked.
I have checked all the files and the only file which appears to be different is the html_header.php so made a back-up of it then I uploaded the version of the html_header.php which came with the contribution...
and it made the site go blank!!
so I restored to the previous version but needless to say TPP will now not work.
Has anyone an idea why the contribution version of the html_header might make my site go blank rather than enable the tabs?
OR does anyone know which lines of code in the contribution version of the html_header file can be merged into my current version and where?
Any help muchly appreciated. It's quite a puzzle!
Hard for anyone to say.. There are various mods which change/modify core files.. Only way for you to know what's diffeent is to use a file comparison tool like Winmerge or Beyond Compare and merge the differences..
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
DivaVocals
Hard for anyone to say.. There are various mods which change/modify core files.. Only way for you to know what's diffeent is to use a file comparison tool like Winmerge or Beyond Compare and merge the differences..
Thank you DivaVocals for your quick response...
I have compared the files with winmerge and can identify the differences.. the problem is i don't know what they mean or which bits to change as PHP is rather new and alien to me.
Here is what I discovered:
- The following lines of code are missing from my current version of the file:
Code:
$jscript_files_to_load = $css_files_to_load = array();
Code:
if (file_exists(DIR_WS_CLASSES . 'browser.php')) {
include_once(DIR_WS_CLASSES . 'browser.php');
$browser = new browser();
$browser_name = strtolower($browser->Name);
if (($browser_name == 'msie') && $browser->Version <= 6) {
$directory_array = $template->get_template_part($template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css'), '/^ie6-/', '.css');
$js_directory_array = $template->get_template_part($template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'js'), '/^ie6-/', '.js');
} if (($browser_name == 'msie') && $browser->Version >= 7) {
$directory_array = $template->get_template_part($template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css'), '/^ie7-/', '.css');
$js_directory_array = $template->get_template_part($template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'js'), '/^ie7-/', '.js');
} elseif ($browser_name == 'firefox') {
$directory_array = $template->get_template_part($template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css'), '/^ff-/', '.css');
$js_directory_array = $template->get_template_part($template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'js'), '/^ff-/', '.js');
} elseif ($browser_name == 'safari') {
$directory_array = $template->get_template_part($template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css'), '/^safari-/', '.css');
$js_directory_array = $template->get_template_part($template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'js'), '/^safari-/', '.js');
} elseif ($browser_name == 'chrome') {
$directory_array = $template->get_template_part($template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css'), '/^chrome-/', '.css');
$js_directory_array = $template->get_template_part($template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'js'), '/^chrome-/', '.js');
}
while(list ($key, $value) = each($directory_array )) {
$css_files_to_load[$value] = -100;
}
while(list ($key, $value) = each($js_directory_array )) {
$js_files_to_load[$value] = -500;
}
}
-
Code:
$files = loadCssJsFiles($css_files_to_load, $jscript_files_to_load);
foreach($files['css'] as $file)
if($file['include']) include($file['string']);
else echo $file['string'];
foreach($files['js'] as $file)
if($file['include']) include($file['string']);
else echo $file['string'];
and the following lines of code are different in each file:
- line 48 says
Code:
echo '<link rel="stylesheet" type="text/css" href="' . $template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css') . '/' . $value . '" />'."\n";
instead of
Code:
$css_files_to_load[$value] = -300;
- line 69 says
Code:
if (file_exists($perpagefile)) echo '<link rel="stylesheet" type="text/css" href="' . $perpagefile .'" />'."\n";
instead of
Code:
if (file_exists($perpagefile)) $css_files_to_load[trim($value, '/').'.css'] = -200;
- line 86 says
Code:
echo '<script type="text/javascript" src="' . $template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/' . $value . '"></script>'."\n";
}
instead of
Code:
$jscript_files_to_load[$value] = -400;
}
- line says
Code:
echo '<script type="text/javascript" src="' . $page_directory . '/' . $value . '"></script>' . "\n";
instead of
Code:
$jscript_files_to_load[$value] = -300;
- line 106 says
Code:
require($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/' . $value); echo "\n";
instead of
Code:
$jscript_files_to_load[$value] = -200;
- and line 117 says
Code:
require($page_directory . '/' . $value); echo "\n";
instead of
Code:
$jscript_files_to_load[$value] = -100;
I hope that sheds some light on the problem as I'm baffled.
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Honestly I can't go through each one of these changes and tell you what changes to make and which ones to not make.. So I will say this instead.. When I say merge I mean merge.. If it's missing from your file ADD it, if it's different from what's in your file analyze those differences and CHANGE it.. Hopefully you are evaluating each change and have some sense of each the change means as you go through the files.. If you are using a merge program like Winmerge or Beyond Compare it makes seeing these differences and how to merge the files much easier to execute.. If you are not using one of these programs, it will make this entire merging exercise MUCH more difficult for you..
Quote:
Originally Posted by
beep
Thank you DivaVocals for your quick response...
I have compared the files with winmerge and can identify the differences.. the problem is i don't know what they mean or which bits to change as PHP is rather new and alien to me.
Here is what I discovered:
- The following lines of code are missing from my current version of the file:
Code:
$jscript_files_to_load = $css_files_to_load = array();
Code:
if (file_exists(DIR_WS_CLASSES . 'browser.php')) {
include_once(DIR_WS_CLASSES . 'browser.php');
$browser = new browser();
$browser_name = strtolower($browser->Name);
if (($browser_name == 'msie') && $browser->Version <= 6) {
$directory_array = $template->get_template_part($template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css'), '/^ie6-/', '.css');
$js_directory_array = $template->get_template_part($template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'js'), '/^ie6-/', '.js');
} if (($browser_name == 'msie') && $browser->Version >= 7) {
$directory_array = $template->get_template_part($template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css'), '/^ie7-/', '.css');
$js_directory_array = $template->get_template_part($template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'js'), '/^ie7-/', '.js');
} elseif ($browser_name == 'firefox') {
$directory_array = $template->get_template_part($template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css'), '/^ff-/', '.css');
$js_directory_array = $template->get_template_part($template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'js'), '/^ff-/', '.js');
} elseif ($browser_name == 'safari') {
$directory_array = $template->get_template_part($template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css'), '/^safari-/', '.css');
$js_directory_array = $template->get_template_part($template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'js'), '/^safari-/', '.js');
} elseif ($browser_name == 'chrome') {
$directory_array = $template->get_template_part($template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css'), '/^chrome-/', '.css');
$js_directory_array = $template->get_template_part($template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'js'), '/^chrome-/', '.js');
}
while(list ($key, $value) = each($directory_array )) {
$css_files_to_load[$value] = -100;
}
while(list ($key, $value) = each($js_directory_array )) {
$js_files_to_load[$value] = -500;
}
}
-
Code:
$files = loadCssJsFiles($css_files_to_load, $jscript_files_to_load);
foreach($files['css'] as $file)
if($file['include']) include($file['string']);
else echo $file['string'];
foreach($files['js'] as $file)
if($file['include']) include($file['string']);
else echo $file['string'];
and the following lines of code are different in each file:
- line 48 says
Code:
echo '<link rel="stylesheet" type="text/css" href="' . $template->get_template_dir('.css',DIR_WS_TEMPLATE, $current_page_base,'css') . '/' . $value . '" />'."\n";
instead of
Code:
$css_files_to_load[$value] = -300;
- line 69 says
Code:
if (file_exists($perpagefile)) echo '<link rel="stylesheet" type="text/css" href="' . $perpagefile .'" />'."\n";
instead of
Code:
if (file_exists($perpagefile)) $css_files_to_load[trim($value, '/').'.css'] = -200;
- line 86 says
Code:
echo '<script type="text/javascript" src="' . $template->get_template_dir('.js',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/' . $value . '"></script>'."\n";
}
instead of
Code:
$jscript_files_to_load[$value] = -400;
}
- line says
Code:
echo '<script type="text/javascript" src="' . $page_directory . '/' . $value . '"></script>' . "\n";
instead of
Code:
$jscript_files_to_load[$value] = -300;
- line 106 says
Code:
require($template->get_template_dir('.php',DIR_WS_TEMPLATE, $current_page_base,'jscript') . '/' . $value); echo "\n";
instead of
Code:
$jscript_files_to_load[$value] = -200;
- and line 117 says
Code:
require($page_directory . '/' . $value); echo "\n";
instead of
Code:
$jscript_files_to_load[$value] = -100;
I hope that sheds some light on the problem as I'm baffled.
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Would it be possible to have attributes on separate tabs?
Like size on one tab and color on another.
I am using Zen Cart 1.3.8
-
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.
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
Andy_GS
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.
I understand this.. (Shopzilla product reviews is a paid service) My question/concern was in providing the FULL picture for integrating the code. Someone else reading this thread might get the impression that all they needed to do was to make one change to make the tab appear when there is in fact more to the answer.. Get what I am saying??
Putting the rest of the answer in a new thread makes sense (if you decide to be so kind to do this :smile:). I think a link back here to that thread is still very useful..:smile:
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Hello i am trying to move my "Add to Cart:" box above the tabs and so above "the text above the tabs". I moved the "Add to Cart:" box below <!--eof Product Price block --> in tpl_product_info_display.php but "the text above the tabs" still display above my "Add to Cart:" box.
Help would be appreciated. Thanks!
-
2 Attachment(s)
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Great mod but just having issues with the product description text layout.
Without the module enabled the product text is styled using the following in my stylesheet
Code:
#productDescription, .shippingEstimatorWrapper (line 758)
{
padding-top: 0.5em;
padding-right: 0.5em;
padding-bottom: 0.5em;
padding-left: 0.5em;
}
#productDescription (line 1823)
{
width: 55%;
float: right;
}
This lines the product text up nicely below the price block and next to product image.
When i switch the mod on the product text moves under the image leaving a high gap on the right side of the page and there is no styling for the product description text anymore.
Can anyone shed any light on this for me? Want to get the TPP working with the product description looking the same as it did without the module on.
Image of product info screen with module off and on:
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
I have spent a ludicrous number of hours searching on here and trying to get both tabbed products pro and either Zen lightbox or the slimbox to work when both installed but to no avail.
I know some people have had no problem with compatibility but I did and saw a few others with the same problem (i.e. when TPP installed, the lightbox no longer works and opens images within the same window).
Basically what works for me is installing and using tabbed products pro v1.05 and NOT the latest version of 1.06.
This combined with Zen Lightbox either versions 1.4 and 1.5 (and I also use Image Handler) seems to work a treat! :clap:
I also tried it using slimbox 1.5 but no joy so I'll stick to the Zen lightbox.
Have no clue why this combo works for me as I am not a programmer of any description - just thought I should mention it as it could be worth a try if someone else has same problem.
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Setting up site to replace old published site. Installed TPP and they seem to work fine.
The only issue I have is that under the details tab I would have thought that the manufacturer's name would be displayed after looking at tpl_product_info_display but it is not.
When display manufacturer's name is enabled under admin it shows up in on the category product display page but not on the actual products display page.
Got debug running and no issues there - think I have looked at all relevant files - am I missing something.
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Another thing that I've found that just might be useful to somebody is that in your normal stylesheet.css for your site, if you add a background url, IT MUST BE LOWER CASE!! I'm guessing that it's because this mod "optimizes" your css. So if you've got like 4 or 5 different stylesheets loading at once, they will be combined into one with no formatting.
But anyway, it took me a little while to figure out that 2 "hover" images in my navbar would not display due to the fact that they was the ONLY 2 images that mistakenly got written with the "URL" being in upper case........ie,
background: URL(../images/nav_over.gif)...WILL NOT DISPLAY!
background: url(../images/nav_over.gif).....WILL DISPLAY!
The reason I though this might be useful is that somebody like me that was ALREADY C3C compliant like I was.....................well, after just installing a new mod.........your compliant css it one of the LAST places you would think of looking for a problem such as this.......especially when those same 2 images worked properly before the install.
I hope this can help somebody.
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
The behavior has less to do with the core TPP module and more to do with the Minimizer module that is bundled into all versions of TPP since version 1.06a. Turning off the minimizer while you sort out any case issues with your CSS will do the trick..
Quote:
Originally Posted by
Get Em Fast
Another thing that I've found that just might be useful to somebody is that in your normal stylesheet.css for your site, if you add a background url, IT MUST BE LOWER CASE!! I'm guessing that it's because this mod "optimizes" your css. So if you've got like 4 or 5 different stylesheets loading at once, they will be combined into one with no formatting.
But anyway, it took me a little while to figure out that 2 "hover" images in my navbar would not display due to the fact that they was the ONLY 2 images that mistakenly got written with the "URL" being in upper case........ie,
background: URL(../images/nav_over.gif)...WILL NOT DISPLAY!
background: url(../images/nav_over.gif).....WILL DISPLAY!
The reason I though this might be useful is that somebody like me that was ALREADY C3C compliant like I was.....................well, after just installing a new mod.........your compliant css it one of the LAST places you would think of looking for a problem such as this.......especially when those same 2 images worked properly before the install.
I hope this can help somebody.
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
To share my experience about using Tabbed Products Pro Version: v1.06 (Released February 17, 2009).
The problems are:
when you use Details and Additional Images tabs. They will show nothing.
How to solve?
Please use <!--*sub_DetailsOnTab(1)*--> and <!--*sub_AdditionalImages(2)*-->
Now,the Details and Additional Images tabs can show its contents.
-
1 Attachment(s)
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
I have just installed this add on and I think it is very nice. What works by default is great but I am having a problem changing the layout with the tags. I cannot change it from the image I have attached. I have turned off HTMLArea were ever I can find it and incidently I had to turn it off in ezpages as well before I stopped seeing it in the products page.
I have added the following tag just above the word capacity as seen in the image but it will not change the appearance.
<!--#DetailsOnTab#-->
What else do I need to do?
ps the above post does not work for me.
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
leg
I have just installed this add on and I think it is very nice. What works by default is great but I am having a problem changing the layout with the tags. I cannot change it from the image I have attached. I have turned off HTMLArea were ever I can find it and incidently I had to turn it off in ezpages as well before I stopped seeing it in the products page.
I have added the following tag just above the word capacity as seen in the image but it will not change the appearance.
<!--#DetailsOnTab#-->
What else do I need to do?
ps the above post does not work for me.
It seems to be that using
<!--%DetailsOnTab%-->
instead of the tag above works. This puts the text DetailsOnTab on the tab so I can edit that.
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
molywerks
These instructions are for TPP 1.05 since TPP 1.06 kept crashing the site and/or conflicting with other hacks/mods. I imagine 1.06 does not differ much if at all for simple, custom content.
- OPEN includes\modules\tabbed_products_pro.php
- FIND [FONT="Courier New"]$fmtDOT = '<div style="width:100%;">' . "\n";[/FONT]
- EDIT*
*For each line of code you want to add, simply insert a new line containing [FONT="Courier New"]
$fmtDOT .= '';[/FONT] (after/before the other appropriate fmtDOT lines of code) and put your new HTML content between the single quotes. Skills sets will vary, of course, but it should be pretty self explanatory.
If you have custom data and tabs to add, the hacks necessary are way too numerous to go into detail, but
it can be done.
This is exactly what I needed for my cart as I wanted to include some instructions for customers on the attributes tab before they choose their attributes. Works a treat!
Thanks for the great post!!! :clap:
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
I am attempting to add a *NEW* global tab per the instructions in the docs folder 'Adding Global Tabs.pdf
I did as instructed and then changed all instances of 'Warranty' to 'Manufacuter_Info' and my product display page is coming up blank below the header area.
The debug utility is telling me: [21-Apr-2010 12:03:05] PHP Parse error: syntax error, unexpected T_VARIABLE in /xxxxx/xxxxxxxxx/xxxxxxxx/includes/modules/tabbed_products_pro.php on line 339
This is line 339: $fmtManInfo .= "Thank you for shopping with us. If you have any questions, call us at 1-800-111-2222."
I have no idea what that is and have done multiple searches for it on the forum and have not seen anything yet that has solved the error :(
Any suggestions?
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
autoace
This is line 339: $fmtManInfo .= "Thank you for shopping with us. If you have any questions, call us at 1-800-111-2222."
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.";
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
I want to add a bit of text at the top of the reviews tab explaining about a discount for future purchases if a review is written.
I tried applying the same method previously explained to me here but this didn't work.
How can I do this?
Thanks :smile:
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Im having a problem where the code is loading into my source, but the tabs are not showing up, Im not sure if the script is broken or what does someone mind to look? :blink:
http://star-tronics.com/index.php?ma...&products_id=2
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Hello.
I have just install tpp pro on 139b. it works great. I like to know , how i can add tabbed navigation to Categories Description ??
Thanks.
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
minor issue here... I get a "1065 Query was empty in: [] " on my product page...
My guess is something is wrong with the SQL patch (it usually is since my host is GoDaddy). Could it be a prefix problem?
Any help would be greatly appreciated.
Damien
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Hi DivaVocals,
Can you tell me how can i uninstall TPP from SQL?
thank you very much.
Jason
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
:frusty: this mod is driving me nuts... :frusty:
Got all the files uploaded (according to the readme_tabbed file).
Got the 3 snippets added to the tpl_product_info_display file
Got the SQL patch uploaded via the Admin
Now the website is fine until I get to the product page... I then get a 500 internal server error. :censored:
Without the snippets on the tpl_product_info_display file, everything is fine. No tabs obviously but I get my product page.
What am I missing???
Any help would be greatly appreciated.
Below is my tpl_product_info_display file, if that can help...
PHP Code:
<?php
/**
* Page Template
*
* Loaded automatically by index.php?main_page=product_info.<br />
* Displays details of a typical product
*
* @package templateSystem
* @copyright Copyright 2003-2006 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
* @version $Id: tpl_product_info_display.php 5369 2006-12-23 10:55:52Z drbyte $
*/
//require(DIR_WS_MODULES . '/debug_blocks/product_info_prices.php');
?>
<?php
//BOF :: Tabbed Products Pro ::
require(DIR_WS_MODULES . 'tabbed_products_pro.php');
//EOF :: Tabbed Products Pro ::
?>
<div class="centerColumn" id="productGeneral">
<!--bof Form start-->
<?php echo zen_draw_form('cart_quantity', zen_href_link(zen_get_info_page($_GET['products_id']), zen_get_all_get_params(array('action')) . 'action=add_product'), 'post', 'enctype="multipart/form-data"') . "\n"; ?>
<!--eof Form start-->
<?php if ($messageStack->size('product_info') > 0) echo $messageStack->output('product_info'); ?>
<!--bof Category Icon -->
<?php if ($module_show_categories != 0) {?>
<?php
/**
* display the category icons
*/
require($template->get_template_dir('/tpl_modules_category_icon_display.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_category_icon_display.php'); ?>
<?php } ?>
<!--eof Category Icon -->
<!--bof Prev/Next top position -->
<?php if (PRODUCT_INFO_PREVIOUS_NEXT == 1 or PRODUCT_INFO_PREVIOUS_NEXT == 3) { ?>
<?php
/**
* display the product previous/next helper
*/
require($template->get_template_dir('/tpl_products_next_previous.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_products_next_previous.php'); ?>
<?php } ?>
<!--eof Prev/Next top position-->
<!--bof Main Product Image -->
<?php
if (zen_not_null($products_image)) {
?>
<?php
/**
* display the main product image
*/
require($template->get_template_dir('/tpl_modules_main_product_image.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_main_product_image.php'); ?>
<?php
}
?>
<!--eof Main Product Image-->
<!--bof Product Name-->
<h1 id="productName" class="productGeneral"><?php echo $products_name; ?></h1>
<!--eof Product Name-->
<!--bof Product Price block -->
<h2 id="productPrices" class="productGeneral">
<?php
// base price
//***********************************************************************
//***DISPLAY NET RETAIL PRICE IF WHOLESALE CUSTOMER IS LOGGED ON
//***********************************************************************
if ($_SESSION['customer_whole'] && $_SESSION['customer_whole'] != '0' ) {
echo '<span id="retailwhole">' . ' Retail Price: '.$one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == '1') ? TEXT_BASE_PRICE : '') . zen_get_products_display_retail_net_price((int)$_GET['products_id']).'</span><br /> ';
}
//***********************************************************************
//***END DISPLAY NET RETAIL PRICE IF WHOLESALE CUSTOMER IS LOGGED ON
//***********************************************************************
if ($show_onetime_charges_description == 'true') {
$one_time = ' <span> Your Price: ' . TEXT_ONETIME_CHARGE_SYMBOL . TEXT_ONETIME_CHARGE_DESCRIPTION . '</span><br />';
} else {
$one_time = '';
}
//*********************************************************************************
//***Properly display price labeling when set to Whole sale and when not
//*********************************************************************************
if ($_SESSION['customer_whole'] && $_SESSION['customer_whole'] != '0' ) {
echo '<span id="whole">Whole Sale Price: ';
} else {
echo '<span id="retail">Retail Price: ';
}
echo $one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE : '') . zen_get_products_display_price((int)$_GET['products_id']);
echo '</span>';
//*********************************************************************************
//***END Properly display price labeling when set to Whole sale and when not
//*********************************************************************************
?></h2>
<!--eof Product Price block -->
<!--bof Product details list -->
<h2 id="productDetails" class="productGeneral">
<?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))) ) { ?>
<id="productDetailsList" class="floatingBox back">
<?php echo (($flag_show_product_info_model == 1 and $products_model !='') ? '' . TEXT_PRODUCT_MODEL . $products_model . '' : '') . "\n"; ?>
<?php echo (($flag_show_product_info_weight == 1 and $products_weight !=0) ? '' . TEXT_PRODUCT_WEIGHT . $products_weight . TEXT_PRODUCT_WEIGHT_UNIT . '' : '') . "\n"; ?>
<?php echo (($flag_show_product_info_quantity == 1) ? '' . $products_quantity . TEXT_PRODUCT_QUANTITY . '' : '') . "\n"; ?>
<?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '' . TEXT_PRODUCT_MANUFACTURER . $manufacturers_name . '' : '') . "\n"; ?>
<br class="clearBoth" />
<?php
}
?></h2>
<!--eof Product details list -->
<!--bof free ship icon -->
<?php if(zen_get_product_is_always_free_shipping($products_id_current) && $flag_show_product_info_free_shipping) { ?>
<div id="freeShippingIcon"><?php echo TEXT_PRODUCT_FREE_SHIPPING_ICON; ?></div>
<?php } ?>
<!--eof free ship icon -->
<?php
//BOF :: Tabbed Products Pro ::
echo '<div id="tpptabBlock" style="display:none;">' . $tabData . '</div>';
//EOF :: Tabbed Products Pro ::
?>
<!--bof Product description -->
<?php if ($products_description != '') { ?>
<div id="productDescription" class="productGeneral biggerText"><?php echo stripslashes($products_description); ?></div>
<?php } ?>
<!--bof Additional Product Images -->
<?php
/**
* display the products additional images
*/
require($template->get_template_dir('/tpl_modules_additional_images.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_additional_images.php'); ?>
<!--eof Additional Product Images -->
<!--bof Add to Cart Box -->
<?php
if (CUSTOMERS_APPROVAL == 3 and TEXT_LOGIN_FOR_PRICE_BUTTON_REPLACE_SHOWROOM == '') {
// do nothing
} else {
?>
<?php
$display_qty = (($flag_show_product_info_in_cart_qty == 1 and $_SESSION['cart']->in_cart($_GET['products_id'])) ? '<p>' . PRODUCTS_ORDER_QTY_TEXT_IN_CART . $_SESSION['cart']->get_quantity($_GET['products_id']) . '</p>' : '');
if ($products_qty_box_status == 0 or $products_quantity_order_max== 1) {
// hide the quantity box and default to 1
$the_button = '<input type="hidden" name="cart_quantity" value="1" />' . zen_draw_hidden_field('products_id', (int)$_GET['products_id']) . zen_image_submit(BUTTON_IMAGE_IN_CART, BUTTON_IN_CART_ALT);
} else {
// show the quantity box
$the_button = PRODUCTS_ORDER_QTY_TEXT . '<input type="text" name="cart_quantity" value="' . (zen_get_buy_now_qty($_GET['products_id'])) . '" maxlength="6" size="4" /><br />' . zen_get_products_quantity_min_units_display((int)$_GET['products_id']) . '<br />' . zen_draw_hidden_field('products_id', (int)$_GET['products_id']) . zen_image_submit(BUTTON_IMAGE_IN_CART, BUTTON_IN_CART_ALT);
}
$display_button = zen_get_buy_now_button($_GET['products_id'], $the_button);
?>
<?php if ($display_qty != '' or $display_button != '') { ?>
<div id="cartAdd">
<?php
echo $display_qty;
echo $display_button;
?>
</div>
<?php } // display qty and button ?>
<?php } // CUSTOMERS_APPROVAL == 3 ?>
<!--eof Add to Cart Box-->
<!--eof Product description -->
<br class="clearBoth" />
<!--bof Attributes Module -->
<?php
if ($pr_attr->fields['total'] > 0) {
?>
<?php
/**
* display the product atributes
*/
require($template->get_template_dir('/tpl_modules_attributes.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_attributes.php'); ?>
<?php
}
?>
<!--eof Attributes Module -->
<!--bof Quantity Discounts table -->
<?php
if ($products_discount_type != 0) { ?>
<?php
/**
* display the products quantity discount
*/
require($template->get_template_dir('/tpl_modules_products_quantity_discounts.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_products_quantity_discounts.php'); ?>
<?php
}
?>
<!--eof Quantity Discounts table -->
<!--bof Prev/Next bottom position -->
<?php if (PRODUCT_INFO_PREVIOUS_NEXT == 2 or PRODUCT_INFO_PREVIOUS_NEXT == 3) { ?>
<?php
/**
* display the product previous/next helper
*/
require($template->get_template_dir('/tpl_products_next_previous.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_products_next_previous.php'); ?>
<?php } ?>
<!--eof Prev/Next bottom position -->
<!--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 == 1 ? '<a href="' . zen_href_link(FILENAME_TELL_A_FRIEND, 'products_id=' . $_GET['products_id']) . '">' . zen_image_button(BUTTON_IMAGE_TELLAFRIEND, BUTTON_TELLAFRIEND_ALT) . '</a>' : ''); ?></div>
<?php
}
?>
<!--eof Tell a Friend button -->
<!--bof Reviews button and count-->
<?php
if ($flag_show_product_info_reviews == 1) {
// if more than 0 reviews, then show reviews button; otherwise, show the "write review" button
if ($reviews->fields['count'] > 0 ) { ?>
<div id="productReviewLink" class="buttonRow back"><?php echo '<a href="' . zen_href_link(FILENAME_PRODUCT_REVIEWS, zen_get_all_get_params()) . '">' . zen_image_button(BUTTON_IMAGE_REVIEWS, BUTTON_REVIEWS_ALT) . '</a>'; ?></div>
<br class="clearBoth" />
<p class="reviewCount"><?php echo ($flag_show_product_info_reviews_count == 1 ? TEXT_CURRENT_REVIEWS . ' ' . $reviews->fields['count'] : ''); ?></p>
<?php } else { ?>
<div id="productReviewLink" class="buttonRow back"><?php echo '<a href="' . zen_href_link(FILENAME_PRODUCT_REVIEWS_WRITE, zen_get_all_get_params(array())) . '">' . zen_image_button(BUTTON_IMAGE_WRITE_REVIEW, BUTTON_WRITE_REVIEW_ALT) . '</a>'; ?></div>
<br class="clearBoth" />
<?php
}
}
?>
<!--eof Reviews button and count -->
<!--bof Product date added/available-->
<?php
if ($products_date_available > date('Y-m-d H:i:s')) {
if ($flag_show_product_info_date_available == 1) {
?>
<p id="productDateAvailable" class="productGeneral centeredContent"><?php echo sprintf(TEXT_DATE_AVAILABLE, zen_date_long($products_date_available)); ?></p>
<?php
}
} else {
if ($flag_show_product_info_date_added == 1) {
?>
<p id="productDateAdded" class="productGeneral centeredContent"><?php echo sprintf(TEXT_DATE_ADDED, zen_date_long($products_date_added)); ?></p>
<?php
} // $flag_show_product_info_date_added
}
?>
<!--eof Product date added/available -->
<!--bof Product URL -->
<?php
if (zen_not_null($products_url)) {
if ($flag_show_product_info_url == 1) {
?>
<p id="productInfoLink" class="productGeneral centeredContent"><?php echo sprintf(TEXT_MORE_INFORMATION, zen_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($products_url), 'NONSSL', true, false)); ?></p>
<?php
} // $flag_show_product_info_url
}
?>
<!--eof Product URL -->
<!--bof also purchased products module-->
<?php
//require($template->get_template_dir('tpl_modules_also_purchased_products.php', DIR_WS_TEMPLATE, $current_page_base,'templates'). '/' . 'tpl_modules_also_purchased_products.php');?>
<!--eof also purchased products module-->
<!--bof Form close-->
</form>
<!--bof Form close-->
</div>
<?php
//BOF :: Tabbed Products Pro ::
echo $tabjscript;
//BOF :: Tabbed Products Pro ::
?>
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Got it! (well, actually a friend of mine got it for me).
There was an issue with the Tabbed_products_pro file. Something to do with the "Customer also purchase" tab.
Dunno what exactly but anyway... it's fixed!
:D
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
DamienDLSkinSolution
Got it! (well, actually a friend of mine got it for me).
There was an issue with the Tabbed_products_pro file. Something to do with the "Customer also purchase" tab.
Dunno what exactly but anyway... it's fixed!
:D
Think you might could get your friend to post his findings/fixes, so other people could benefit from them?
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Thanks a lot for this contribution, it looks great and works great so far. I am using the latest 1.06c on http://lemy.co.uk. Just on slight problem(of course): the main image is being duplicated. I have read on this thread and a similar fix is offered for product description and details, but not for the main image.
If i look into the source of the product page, i can see the main image is being duplicated from the reviews tab.
In tabbed_products_pro.php, there is
Code:
// Hack the output a bit to remove the copy of the main image that reviews normally has on it and other duplicate stuff
...
$fmtRVW = str_replace('id="productMainImage"', 'id="productMainImageReview" style="display:block;"', $fmtRVW);
$fmtRVW = str_replace('id="productReviewsDefaultProductImage"', 'id="productReviewsDefaultProductImage" style="display:block;"', $fmtRVW);
I'm thinking something there is not working right for me, but just can't figure out how to fix it. Anyone has any ideas on this?
Cheers!
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
andreitero
Thanks a lot for this contribution, it looks great and works great so far. I am using the latest 1.06c on
http://lemy.co.uk. Just on slight problem(of course): the main image is being duplicated. I have read on this thread and
a similar fix is offered for product description and details, but not for the main image.
If i look into the source of the product page, i can see the main image is being duplicated from the reviews tab.
In tabbed_products_pro.php, there is
Code:
// Hack the output a bit to remove the copy of the main image that reviews normally has on it and other duplicate stuff
...
$fmtRVW = str_replace('id="productMainImage"', 'id="productMainImageReview" style="display:block;"', $fmtRVW);
$fmtRVW = str_replace('id="productReviewsDefaultProductImage"', 'id="productReviewsDefaultProductImage" style="display:block;"', $fmtRVW);
I'm thinking something there is not working right for me, but just can't figure out how to fix it. Anyone has any ideas on this?
Cheers!
Solved by replacing tpl_reviews_default.php with dgreviews from free add-ons section.
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
I apologize now if this has been resolved elsewhere, I can't find the answer anywhere...
is there a way to add tabs to all products without requiring the addition of the short codes in the description field for each product? If so, can someone please point me to that documentation?
I am not using any of the other contribs I'm more looking for a way to add in bulk or global -- and I do have all global TPP options set to "on".
Please and thank you!
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
DivaVocals
So to expand on part of what I said above.. It sounds like your ABSPATH value is incorrect. I am going to assume it was you who asked this question on Numix's blog:
Numinix's response was:
Numinix is absolutely right, the ABSPATH value is indeed hardcoded into the
class.rlwp.php file, and it looks like you did not update it to match the correct ABSPATH value for your site. The contents of the
class.rlwp.php file is as follows:
Code:
define ('ABSPATH','/var/www/zc138/wordpress/'); // abs-path to wp
if (file_exists(ABSPATH.'wp-config.php')) {
require_once(ABSPATH.'wp-config.php');
$wpinstall = true;
}
Please note the part highlighted in red and compare to the error message you have.. As I suggested in my previous post, you need to update the ABSPATH value in the
class.rlwp.php file to match the ABSPATH value in your ZenCart
includes/configure.php file with your blog folder added to the end of the value. Try changing this to the correct value for your site and see if you still have the issue..
If you do, then try simply removing the class.rlwp.php file. Please note that if you delete this file that you will no longer have the ability to create WordPress tabs using TPP, but you will likely no longer have any issues using Numinix's embedded WordPress solution either..
and like I said.. If all else fails, you can always roll back to ver 1.05..
WOW. Thank you for this! I just upgraded to 1.3.9d and have been ripping my hair out trying to figure out what happened to wordpress. It seems that this one line was overwritten during the merge from dev to live.
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Hello, I improving a zencart into a localhost server and installed the last version of this contribution. Runs ok into the product description but I dont get to use into the ezpages.
I want to put into ezpages for improve the appearance and link some important information. But don't find nothing into forum or Google.
Someone knows how can I do?
My zencart are 1.3.8a
thankyou and sorry for my bad english:P
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
I have a very odd problem. I'm running Zen 1.38a and when I upload all of the files (tpl_product_info_display.php is the only one that I needed to modify/merge), all of the formatting is wiped from my site. The site information is still there but when I use Firebug, it says "This element has no style rules" on all of the html.
I get no errors from the debugging utility.
I removed and re-uploaded all of the Tabbed Product Pro files (SQL included) several times (and verified that everything was uploaded in one piece to the right folder every time).
After a lot of digging, I learned that there can sometimes be an issue with the html_header.php (although it's usually a problem with a file that has already been altered due to another mod and I'm still running off of the default) so I removed the html_header.php and voila! My site was styled again (no product tabs however).
I've looked through every one of the help forums (including the forums of the add ons I have installed) and no one has even come close to having an issue like this one.
Can anybody give me an inkling of where to start looking to fix this?
Thanks in advance,
Crystal
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Crystal what php version are you running?
Posted via Mobile Device
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
quentinjs
I've been slowly working the layout, and getting it I think nearly to where I want it. And I have a question related to the space between the last bar on the content and the "write a review" button below it. There is a lot of white space and I'd like to tighten it up. If I toggle to normal view that space isn't there so I'm thinking its a TPP CSS thing, so any guidance would be appreciated to try and cut it down some.
see
http://www.totalgarage.ca/products/i...roducts_id=340 for an example.
Did anyone answer this?
Or did you find the solution?
I haven't found it myself yet and I want to put my add to cart and attributed below the tpp to this would be very useful.
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Nevermind, it was a quick fix. Just in case anyone needs it...
I removed the clear both code from
PHP Code:
$tabcontent .= "\n" . '<br class="clearBoth" />' . "\n\n";
in tabbed_products_pro.php
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Thanks for posting this! It saved me a bunch of time and frustration!
Quote:
Originally Posted by
dukecomputerwiz
Never Mind I figured it out. For anyone else, you just need to add the the following code:
$files = loadCssJsFiles($css_files_to_load, $jscript_files_to_load);
foreach($files['css'] as $file)
if($file['include']) include($file['string']);
else echo $file['string'];
foreach($files['js'] as $file)
if($file['include']) include($file['string']);
else echo $file['string'];
Just before the debug section at the bottom of your original file. Not the file that came with the tabpro distribution.
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Upgrading from ZC 1.3.7 to 1.3.9d.
Also added Tabbed Products Pro contrib
Google Checkout (GCO) was working fine for a long time.
now GCO doesn't work. For starters, I don't get a button anymore. I just get the option on checkout. If I chose it, and click continue checkout - I get to a "Confirm the Order" Page. I click the button and it brings me right back to the shopping cart.
Reinstalled GCO several time - no joy.
Any ideas?
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
creinold
Crystal what php version are you running?
Posted via Mobile Device
I'm running 5.0.83? I think that's the full database version. :lookaroun
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
dukecomputerwiz
Never Mind I figured it out. For anyone else, you just need to add the the following code:
$files = loadCssJsFiles($css_files_to_load, $jscript_files_to_load);
foreach($files['css'] as $file)
if($file['include']) include($file['string']);
else echo $file['string'];
foreach($files['js'] as $file)
if($file['include']) include($file['string']);
else echo $file['string'];
Just before the debug section at the bottom of your original file. Not the file that came with the tabpro distribution.
BTW - I did try this AND I used BeyondCompare to merge my files and it's still not working. :P
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Well, I think I figured it out. From the documentation that I've read, the CSS/JS javascript loader will only work on mySQL 5.2 or higher and I'm only running 5.0. And my web host will only support the 5.0 version. :censored:
I took out the html_header out of includes/templates/my_template/common (but I left the rest of the files for CSS/JS javascript loader files - as well as the SQL patch - in place) and all of the style was returned to my site. Luckily, the most recent version of the Fast and Easy Checkout mod still works without the html_header installed.
I installed Tabbed Product Pro v. 1-05 and it's working like a charm.
Thanks for such an AWESOME mod!
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
I cant get this mod to work with 1.3.9d , I add the file tpl_product_info_display.php and my product description and add to cart button disappears. My original template tpl_product_info_display.php is:
<?php
/**
*
* @copyright Copyright 2003-2006 Zen Cart Development Team
* @copyright Portions Copyright 2003 osCommerce
* @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
*/
?>
<div class="centerBoxHeadingDetail">
<div class="dhead"> <span class="float-left"><?php echo HEADING_TITLE_PRODUCT_DETAILS; ?></span>
<!--bof Prev/Next bottom position -->
<?php if (PRODUCT_INFO_PREVIOUS_NEXT == 2 or PRODUCT_INFO_PREVIOUS_NEXT == 3) { ?>
<?php
/**
* display the product previous/next helper
*/
require($template->get_template_dir('/tpl_products_next_previous.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_products_next_previous.php'); ?>
<?php } ?>
<!--eof Prev/Next bottom position -->
<div class="clearBoth"></div>
</div>
</div>
<div class="centerColumn centerBoxWrapper" id="productGeneral">
<!--bof Form start-->
<?php echo zen_draw_form('cart_quantity', zen_href_link(zen_get_info_page($_GET['products_id']), zen_get_all_get_params(array('action')) . 'action=add_product'), 'post', 'enctype="multipart/form-data"') . "\n"; ?>
<!--eof Form start-->
<?php if ($messageStack->size('product_info') > 0) echo $messageStack->output('product_info'); ?>
<!--bof Category Icon -->
<?php if ($module_show_categories != 0) {?>
<?php
/**
* display the category icons
*/
require($template->get_template_dir('/tpl_modules_category_icon_display.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_category_icon_display.php'); ?>
<?php } ?>
<!--eof Category Icon -->
<!--bof Prev/Next top position -->
<?php if (PRODUCT_INFO_PREVIOUS_NEXT == 1 or PRODUCT_INFO_PREVIOUS_NEXT == 3) { ?>
<?php
/**
* display the product previous/next helper
*/
require($template->get_template_dir('/tpl_products_next_previous.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_products_next_previous.php'); ?>
<?php } ?>
<!--eof Prev/Next top position-->
<table class="product-detail-table" width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td class="left-side-info">
<!--bof Main Product Image -->
<?php
if (zen_not_null($products_image)) {
?>
<?php
/**
* display the main product image
*/
require($template->get_template_dir('/tpl_modules_main_product_image.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_main_product_image.php'); ?>
<?php
}
?>
<!--eof Main Product Image-->
<!--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))) ) { ?>
<ul id="productDetailsList" class="floatingBox back">
<?php echo (($flag_show_product_info_model == 1 and $products_model !='') ? '<li><span class="product-info-label">' . TEXT_PRODUCT_MODEL . '</span>' . $products_model . '</li>' : '') . "\n"; ?>
<?php echo (($flag_show_product_info_weight == 1 and $products_weight !=0) ? '<li><span class="product-info-label">' . TEXT_PRODUCT_WEIGHT . '</span>' . $products_weight . TEXT_PRODUCT_WEIGHT_UNIT . '</li>' : '') . "\n"; ?>
<?php echo (($flag_show_product_info_quantity == 1) ? '<li><span class="product-info-label">'. TEXT_PRODUCT_QUANTITY . '</span>' . $products_quantity . '</li>' : '') . "\n"; ?>
<?php echo (($flag_show_product_info_manufacturer == 1 and !empty($manufacturers_name)) ? '<li><span class="product-info-label">' . TEXT_PRODUCT_MANUFACTURER . '</span>' . $manufacturers_name . '</li>' : '') . "\n"; ?>
</ul>
<br class="clearBoth" />
<?php
}
?>
<!--eof Product details list -->
</td>
<td class="right-side-info">
<!--bof Product Name-->
<h1 id="productName" class="productGeneral"><?php echo $products_name; ?></h1>
<!--eof Product Name-->
<!--bof Product Price block -->
<span id="productPrices" class="productGeneral">
<?php
// base price
if ($show_onetime_charges_description == 'true') {
$one_time = '<span >' . TEXT_ONETIME_CHARGE_SYMBOL . TEXT_ONETIME_CHARGE_DESCRIPTION . '</span><br />';
} else {
$one_time = '';
}
echo $one_time . ((zen_has_product_attributes_values((int)$_GET['products_id']) and $flag_show_product_info_starting_at == 1) ? TEXT_BASE_PRICE : '') . zen_get_products_display_price((int)$_GET['products_id']);
?></span>
<!--eof Product Price block -->
<!--bof free ship icon -->
<?php if(zen_get_product_is_always_free_shipping($products_id_current) && $flag_show_product_info_free_shipping) { ?>
<div id="freeShippingIcon"><?php echo TEXT_PRODUCT_FREE_SHIPPING_ICON; ?></div>
<?php } ?>
<!--eof free ship icon -->
<!--bof Product description -->
<?php if ($products_description != '') { ?>
<div id="productDescription" class="productGeneral biggerText"><?php echo stripslashes($products_description); ?></div>
<?php } ?>
<!--eof Product description -->
<!--bof Attributes Module -->
<?php;
if ($pr_attr->fields['total'] > 0) {
?>
<?php
/**
* display the product atributes
*/
require($template->get_template_dir('/tpl_modules_attributes.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_attributes.php'); ?>
<?php
}
?>
<!--eof Attributes Module -->
<!--bof Quantity Discounts table -->
<?php
if ($products_discount_type != 0) { ?>
<?php
/**
* display the products quantity discount
*/
require($template->get_template_dir('/tpl_modules_products_quantity_discounts.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_products_quantity_discounts.php'); ?>
<?php
}
?>
<!--eof Quantity Discounts table -->
<br class="clearBoth" />
<!--bof Add to Cart Box -->
<?php
if (CUSTOMERS_APPROVAL == 3 and TEXT_LOGIN_FOR_PRICE_BUTTON_REPLACE_SHOWROOM == '') {
// do nothing
} else {
?>
<?php
$display_qty = '';
if ($products_qty_box_status == 0 or $products_quantity_order_max== 1) {
// hide the quantity box and default to 1
$the_button = '<input type="hidden" name="cart_quantity" value="1" />' . zen_draw_hidden_field('products_id', (int)$_GET['products_id']) . zen_image_submit(BUTTON_IMAGE_IN_CART, BUTTON_IN_CART_ALT);
} else {
// show the quantity box
$the_button = PRODUCTS_ORDER_QTY_TEXT . '<input type="text" name="cart_quantity" value="' . (zen_get_buy_now_qty($_GET['products_id'])) . '" maxlength="6" size="4" /><br />' . zen_get_products_quantity_min_units_display((int)$_GET['products_id']) . '<br />' . zen_draw_hidden_field('products_id', (int)$_GET['products_id']) . zen_image_submit(BUTTON_IMAGE_IN_CART, BUTTON_IN_CART_ALT);
}
$display_button = zen_get_buy_now_button($_GET['products_id'], $the_button);
?>
<?php if ($display_qty != '' or $display_button != '') { ?>
<div id="cartAdd">
<?php
echo $display_qty;
echo $display_button;
?>
</div>
<?php } // display qty and button ?>
<?php } // CUSTOMERS_APPROVAL == 3 ?>
<!--eof Add to Cart Box-->
</td>
</tr>
</table>
<!--bof Additional Product Images -->
<?php
/**
* display the products additional images
*/
require($template->get_template_dir('/tpl_modules_additional_images.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_additional_images.php'); ?>
<!--eof Additional Product Images -->
<!--bof Prev/Next bottom position -->
<?php if (PRODUCT_INFO_PREVIOUS_NEXT == 2 or PRODUCT_INFO_PREVIOUS_NEXT == 3) { ?>
<?php
/**
* display the product previous/next helper
*/
require($template->get_template_dir('/tpl_products_next_previous.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_products_next_previous.php'); ?>
<?php } ?>
<!--eof Prev/Next bottom position -->
<!--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 == 1 ? '<a href="' . zen_href_link(FILENAME_TELL_A_FRIEND, 'products_id=' . $_GET['products_id']) . '">' . zen_image_button(BUTTON_IMAGE_TELLAFRIEND, BUTTON_TELLAFRIEND_ALT) . '</a>' : ''); ?></div>
<?php
}
?>
<!--eof Tell a Friend button -->
<!--bof Reviews button and count-->
<?php
if ($flag_show_product_info_reviews == 1) {
// if more than 0 reviews, then show reviews button; otherwise, show the "write review" button
if ($reviews->fields['count'] > 0 ) { ?>
<div id="productReviewLink" class="buttonRow back"><?php echo '<a href="' . zen_href_link(FILENAME_PRODUCT_REVIEWS, zen_get_all_get_params()) . '">' . zen_image_button(BUTTON_IMAGE_REVIEWS, BUTTON_REVIEWS_ALT) . '</a>'; ?></div>
<br class="clearBoth" />
<p class="reviewCount"><?php echo ($flag_show_product_info_reviews_count == 1 ? TEXT_CURRENT_REVIEWS . ' ' . $reviews->fields['count'] : ''); ?></p>
<?php } else { ?>
<div id="productReviewLink" class="buttonRow back"><?php echo '<a href="' . zen_href_link(FILENAME_PRODUCT_REVIEWS_WRITE, zen_get_all_get_params(array())) . '">' . zen_image_button(BUTTON_IMAGE_WRITE_REVIEW, BUTTON_WRITE_REVIEW_ALT) . '</a>'; ?></div>
<br class="clearBoth" />
<?php
}
}
?>
<!--eof Reviews button and count -->
<!--bof Product date added/available-->
<?php
if ($products_date_available > date('Y-m-d H:i:s')) {
if ($flag_show_product_info_date_available == 1) {
?>
<p id="productDateAvailable" class="productGeneral centeredContent"><?php echo sprintf(TEXT_DATE_AVAILABLE, zen_date_long($products_date_available)); ?></p>
<?php
}
} else {
if ($flag_show_product_info_date_added == 1) {
?>
<p id="productDateAdded" class="productGeneral centeredContent"><?php echo sprintf(TEXT_DATE_ADDED, zen_date_long($products_date_added)); ?></p>
<?php
} // $flag_show_product_info_date_added
}
?>
<!--eof Product date added/available -->
<!--bof Product URL -->
<?php
if (zen_not_null($products_url)) {
if ($flag_show_product_info_url == 1) {
?>
<p id="productInfoLink" class="productGeneral centeredContent"><?php echo sprintf(TEXT_MORE_INFORMATION, zen_href_link(FILENAME_REDIRECT, 'action=url&goto=' . urlencode($products_url), 'NONSSL', true, false)); ?></p>
<?php
} // $flag_show_product_info_url
}
?>
<!--eof Product URL -->
<!--bof also purchased products module-->
<?php require($template->get_template_dir('tpl_modules_also_purchased_products.php', DIR_WS_TEMPLATE, $current_page_base,'templates'). '/' . 'tpl_modules_also_purchased_products.php');?>
<!--eof also purchased products module-->
<!--bof Form close-->
</form>
<!--bof Form close-->
</div>
<div class="mainbox-bottom-left"><div class="mainbox-bottom-right"></div></div>
Help please!
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Help cant get tabs to work in 1.3.9d
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Any suggestions anyone?
Quote:
Originally Posted by
dkerfoot
Upgrading from ZC 1.3.7 to 1.3.9d.
Also added Tabbed Products Pro contrib
Google Checkout (GCO) was working fine for a long time.
now GCO doesn't work. For starters, I don't get a button anymore. I just get the option on checkout. If I chose it, and click continue checkout - I get to a "Confirm the Order" Page. I click the button and it brings me right back to the shopping cart.
Reinstalled GCO several time - no joy.
Any ideas?
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Help I cant get this mod to work with 1.3.9d , I tried reinstalling and using v1.05 but no luck... Help please
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
rxalex
Help I cant get this mod to work with 1.3.9d , I tried reinstalling and using v1.05 but no luck... Help please
It's hard for anyone to help you because we don't really have any idea what the issue might be based on the information you've posted.. The only thing I can suggest is to roll back to the backup of your store prior to installing TPP.. Then using Winmerge or Beyond Compare, CAREFULLY merge the files in the TPP mod with your store's files and then upload the module. Items missing on the product information page implies that you missed something when you merged TPP with your store's files..
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
I totally understand, I did use winmerg and I still have the same issue coming up... although this mod worked perfectly in 1.3.8a before I reinstalled a new shop 1.3.9d.. I would appreciate help and trouble shoot.
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
rxalex
I totally understand, I did use winmerg and I still have the same issue coming up... although this mod worked perfectly in 1.3.8a before I reinstalled a new shop 1.3.9d.. I would appreciate help and trouble shoot.
And again there isn't enough information here for ANYONE to be able to do anything more than guess what your issue might be.. For example:
- What went wrong in the Winmerge?
- Did any other modules affect TPP's behavior?
We can't see your files (and BTW, posting them here in their entirely may or may not be helpful), and that makes it VERY difficult to help your troubleshoot this based on the information we do have..
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Will TPP recognize Multi Cross Sell add-on for the global cross sell tab?
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
kamelion0927
BTW - I did try this AND I used BeyondCompare to merge my files and it's still not working. :P
I'm running Zen Cart 1.39d and have installed TPP. It doesn't work - my product info page looks just as before with no tabs. I read this entry indicating that this code should be added 'just before the debug section of your origonal file'. Which file? I haven't been able to locate degug, or a degug section anywhere!
I'd really like to figure this out but after reading 6 pages of this discussion I am still lost. Can anyone suggest I try something?
Thanks!
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
i just attempted the install and got a blank product page and this error
Quote:
[08-Jul-2010 13:11:52] PHP Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /home/www/gorillagear.ca/gorilla/includes/functions/extra_functions/class.rlwp.php on line 23
as i don't have wordpress i removed the page and the lank page is gone but i don't see any tabbes in my product pages
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
getting another stupid error i give up for now
i just restored everything and i'm going to start from scratch again later
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Try installing ver 1.05.. The truth of the matter is that the only real advantage of the 1.06 installs is twofold:
- Adds the ability to create WordPress blog tabs
- Add the CSS/Javascript loader app functionality
Most folks seem to have issues getting the 1.06 flavors of this add-on working.. Ver 1.05 of TPP ain't broke so give it a shot..
Quote:
Originally Posted by
MB1
getting another stupid error i give up for now
i just restored everything and i'm going to start from scratch again later
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
i was looking at one of the files i had to merge and i was like what is all this extra coding i'll take a peek for v1.05
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
does cj loader really make things load up faster?
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
MB1
does cj loader really make things load up faster?
The better question is this: Is having CJ loader bundled in with this mod worth all the effort you are going through to get it to work??
OR
Is it better to get this mod (TPP) working FIRST and THEN worry about how to get CJ Loader working on your site (you can download the CJ Loader mod directly from Rubik's Integrations siteand configure it separately)
Just my three cents..
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
no i see your point the 1.05 install was a breeze thank you for all your help
what does the wordpress integration do? i know it's a tab to your word press blog but i'm curious how people are using it to benifit their online stores?
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
MB1
no i see your point the 1.05 install was a breeze thank you for all your help
You're welcome! I take it that it's all working now???
Quote:
Originally Posted by
MB1
what does the wordpress integration do? i know it's a tab to your word press blog but i'm curious how people are using it to benifit their online stores?
It's in the readme for the version where it was introduced.. I've no particular interest in it as I use a full WordPress integration with Zen Cart courtesy of Numinix..
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
I've spent all day trying to get 1.06 to work on my site without much luck.. took it off and put 1.05 on and it's working straight away :-)
Anyway - is there a way to set a new tab to each product without having to put it in each products description? I want to add a new tab with shipping info, and a new tab with payment info etc, but I don't want to go through 2000+ products putting it in the description :) Surely there's an easier way?
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Nevermind - I should learn to rtfm properly first :cool:
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
I just installed 1.5 of this mod no problems....... Now on the documentation end I really do not understand much about adding new tabs.....I was wondering if anyone knows if it would be possible to make a tab for each attribute on any given product ........ what I mean is lets say I have 6 different attributes I want to use, so lets say option 1,2,3,4,5,6 each option or attribute has anywhere from 6 to 30 values, instead of all the attributes and attribute values being in the same tab I would like to make tab 1 be attribute 1 with its own values in it ect ect for all the attributes.......I really do not know enough about how the zen cart works to know if this is possible or not with this mod........ This in effect would be a way around the conditional attributes I so need and desire ........
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Hi everyone looking for some help here,
ive just installed this on 1.3.9d everything seems to be working as it should .
my problem is when i try to make a custom tab eg "warranty" i followed the tutorial in the doc folder to the T ,
When i reload the page it just goes blank and no info at all shows ," just a blank white page" no product info "nothing"
i have checked the file in Includes/Modules -> tabbed_products_pro.php over and over for mistakes and cant find anything wrong.
has anyone had this problem or does any one know how to solve it, any help would be great.
regards
dave
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Sorry if someone has asked this before, but, the module is making my page load really really slow. What should I do?
Apart from that it looks great, works great and adds a lot of functionality and space efficiency to the website. Really appreciate this add on.
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Did anyone get this to work with 1.3.9d?
blank page no add to cart button
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
rxalex
Did anyone get this to work with 1.3.9d?
blank page no add to cart button
See: http://www.zen-cart.com/forum/showpo...postcount=1167
(posted 1 page back)
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Thanks, neither one works which is weird... but 1.06 is much nicer looking. How can I get this sucker to work?
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Hi,
ive already tried 1.5 ,same issues as 1.6
ive also installed multi cross sell today, this will not show on its own tab , works fine in the footer of the site, but not on its own tab,
TTP needs a good looking at
regards
dave
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
3601965
Hi,
ive already tried 1.5 ,same issues as 1.6
ive also installed multi cross sell today, this will not show on its own tab , works fine in the footer of the site, but not on its own tab,
TTP needs a good looking at
regards
dave
Given the number of folks successfully using this mod, I'd say it's more likely that another module you've installed is not working with TPP.. Best way to run it down is to get your store back to a working state before you installed TPP. Then using a tool like Beyond Compare (or Winmerge) I would do a careful comparison of your store files to the TPP files and after merging any common files try re-installing TPP..
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
So any ideas on how I can speed it up? I already have CJ Loader, it didn't help much.
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Hi guys!
The only problem I have is that I don't know much php but enough to get me around. My Add to Cart tab isn't automatically my 1st tab and I don't know where I can check/change this so that it is. I have a custom tab that's not the first time, which is not what I want.
Any help would appreciated!
Thanks!
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
One other questions. How do I have a box as a tab?
If you go to my website:
http://silverpublishing.info/index.p...products_id=34
you'll see the Excerpt Tab is first...which is wrong. Secondly, on the right you'll see called "Author Info". I would like that block to be a tab.
Anyone that can help...very much appreciated!
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
leilanddale
One other questions. How do I have a box as a tab?
If you go to my website:
http://silverpublishing.info/index.p...products_id=34
you'll see the Excerpt Tab is first...which is wrong. Secondly, on the right you'll see called "Author Info". I would like that block to be a tab.
Anyone that can help...very much appreciated!
My two cents.... I would in the admin panel uncheck add to cart as a tab, then it will always show below the current tab. I would also go in and make the description a tab. Did you make your custom tab according to the instructions? I do not know how you would make the author info box automatically be a tab, but all I would do is just make another custom tab in the product description and put that info in there...... I hope that helps .....
To make a custom tab , in the product description use <!--% title %--> then anything under it will be in that "tab" ........
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
Goetch
My two cents.... I would in the admin panel uncheck add to cart as a tab, then it will always show below the current tab. I would also go in and make the description a tab. Did you make your custom tab according to the instructions? I do not know how you would make the author info box automatically be a tab, but all I would do is just make another custom tab in the product description and put that info in there...... I hope that helps .....
To make a custom tab , in the product description use <!--% title %--> then anything under it will be in that "tab" ........
I kind of like the Add to Cart tab because of the different file formats in the Attributes. Many times people have forgotten to select the format they want. This way they kinda can't miss it.
On the specific link I gave, you can see I added the "Excerpts" tab as you described. The problem with doing it with the Author Info is that this info is automatically populated just like the Description info ect. It would be quite a feat to constantly have to find the author info again and copy and paste it.
Thanks so much though! Let's hope I find a solutions to this. :D
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Hey what file did you modify to get the attributes above the tpp?
Also what module is your Author info box? Is it manufacturers renamed? maybe you can just call that file in under a custom tab........ But I am a total newb and do not know how to do anything like that ................
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
Goetch
Hey what file did you modify to get the attributes above the tpp?
Also what module is your Author info box? Is it manufacturers renamed? maybe you can just call that file in under a custom tab........ But I am a total newb and do not know how to do anything like that ................
I just moved the cart code in the tpl_product_info.php file to just above
Quote:
<?php
//BOF :: Tabbed Products Pro ::
echo '<div id="tpptabBlock" style="display:none;">' . $tabData . '</div>';
//EOF :: Tabbed Products Pro ::
?>
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Dammit guys, help me out too....:dontgetit
here's my website:
http://e-techsiliconvalley.com/store...oducts_id=9041
We looked at everything, TPP is only thing slowing it down. With it disabled, everything loads fast but enabled it's slower than a snail pulling an 18 wheeler...
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
One other question.
I have Combination Discount module. I saw in the old threat that it was said to put the code in the tabbed_products_pro.php file. Where/how/when? LOL
Any info would be gladly appreciated!
Thanks!
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
AmirGTR
Dammit guys, help me out too....:dontgetit
:shocking: ummm okay....
Quote:
Originally Posted by
AmirGTR
Perhaps no one has addressed your issue because they don't have an answer to give..
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Hi,
Has anyone managed to get TPP & the new Multi Cross Sell mod working together yet?... By working together I don't just mean installed on the same Zen Cart store, I mean fully integrated so that cross sells have their own tab - like you could with old Just Another Cross Sell mod.
I asked this same question on the Multi Cross Sell thread a while ago but the current author (gilby) says it's not on his to-do list at the moment, which is fair enough.
Thanks :smile:
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
DivaVocals
:shocking: ummm okay....
Perhaps no one has addressed your issue because they don't have an answer to give..
uh, sorry? What do you want me to say?
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
AmirGTR
uh, sorry? What do you want me to say?
Well first you might not want to say "dammit help me" for one.. It's a bit off putting..:smile:
Secondly, looking at your site you have a LOT going on on your product info page.. It might help others help you if you give some more information about what other modifications you've made to your product info page which might be conflicting with TPP.. Otherwise all we can do is guess.. Performance problems may not be related directly to this module, and may be related to something else you have which is in conflict with this module.. Like I said, perhaps no one has responded to your post because they simply don't have an answer to give based on the information provided..
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
Quote:
Originally Posted by
DivaVocals
Well first you might not want to say "dammit help me" for one.. It's a bit off putting..:smile:
Secondly, looking at your site you have a LOT going on on your product info page.. It might help others help you if you give some more information about what other modifications you've made to your product info page which might be conflicting with TPP.. Otherwise all we can do is guess.. Performance problems may not be related directly to this module, and may be related to something else you have which is in conflict with this module.. Like I said, perhaps no one has responded to your post because they simply don't have an answer to give based on the information provided..
Oh sorry I'm a lil casual like that when I talk lol...don't take it to heart. :wink:
I'm pretty sure about the TPP being the source of the issue. With it disabled the website seems to load with virtually no delay at all, as opposed to around 10 seconds of delay with it enabled...
I'm obviously doing something wrong here. If you want any info or code lemme know.
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
No worries..:smile: an emoticon might have helped get the point across that you were playing tongue in cheek with your post.. (just saying..:smile:)
Your product info page has other stuff going on, and it seems pretty obvious that TPP is not the sole source of the issue you are experiencing.. Rather it's more likely that whatever you else you are running on that page is making TPP change your site performance.. You are going to need to let folks know what else you have going on on your product info page.. Because without that, there's no way in hell (ooops I mean HECK!!:laugh:) to figure out why TPP slows your page load..
Quote:
Originally Posted by
AmirGTR
Oh sorry I'm a lil casual like that when I talk lol...don't take it to heart. :wink:
I'm pretty sure about the TPP being the source of the issue. With it disabled the website seems to load with virtually no delay at all, as opposed to around 10 seconds of delay with it enabled...
I'm obviously doing something wrong here. If you want any info or code lemme know.
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
i seem to have been through all the steps so many times i no longer care to count if someone could help me they would be a life saver
the site in question is as follows
HTML Code:
http://www.heavenlyhome.co.uk/index.php?main_page=product_info&cPath=87_95&products_id=546
please please save me i no its going to be something stupidlly small ive overlooked
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
What's the question???
Quote:
Originally Posted by
willwright111
i seem to have been through all the steps so many times i no longer care to count if someone could help me they would be a life saver
the site in question is as follows
HTML Code:
http://www.heavenlyhome.co.uk/index.php?main_page=product_info&cPath=87_95&products_id=546
please please save me i no its going to be something stupidlly small ive overlooked
-
Re: Tabbed Products Pro (TPP) Contrib - Official Thread
^ my thoughts exactly...
Quote:
Originally Posted by
DivaVocals
No worries..:smile: an emoticon might have helped get the point across that you were playing tongue in cheek with your post.. (just saying..:smile:)
Your product info page has other stuff going on, and it seems pretty obvious that TPP is not the sole source of the issue you are experiencing.. Rather it's more likely that whatever you else you are running on that page is making TPP change your site performance.. You are going to need to let folks know what else you have going on on your product info page.. Because without that, there's no way in hell (ooops I mean HECK!!:laugh:) to figure out why TPP slows your page load..
Reminds me of that "300 PG version" trailer on youtube..."tonight...we dine...in heCK" haha
We don't really have any other modules going on in that page. Most of the code is the template written mostly in HTML. Sure it's not as optimized as it should be but it's not that slow.
I could send you the whole tpl_products_info_display.php file if that helps...