Sounds like white font on white background or somethingQuote:
Originally Posted by scubes13
Printable View
Sounds like white font on white background or somethingQuote:
Originally Posted by scubes13
I have not downloaded this contribution yet. Looking through the thread I wanted to know if you can have a tab that will display the reviews of the product? It appears this would be a hard coded tab like "Customers Also Purchased" tab?
Thanks
It was discussed as one of the original ideas but it will be added to a later release, so not yet.
Anyone yet adapt the Tabbed Lite 2.7a version to support Cross Sell images or Ask A Question button. Being able to place Cross Sell (We Also Recommend) into a tab would be especially cool. I have attempted but so far no success.
Below is the necessary code that inserted into tpl_product_info_display.php
Cross Sell images:
Ask A Question button:Code:<!--bof xsell module-->
<?php
require($template->get_template_dir('tpl_modules_xsell_products.php', DIR_WS_TEMPLATE, $current_page_base,'templates'). '/' . 'tpl_modules_xsell_products.php');
?>
<!--eof xsell module-->
WoodyCode:<!--bof Ask A Question button -->
<?php
if ($flag_show_product_info_ask_question == 1) { ?>
<div id="productAskQuestionLink" class="buttonRow forward"><?php echo ($flag_show_product_info_ask_question == 1 ? '<a href="' . zen_href_link(FILENAME_ASK_QUESTION, 'products_id=' . $_GET['products_id']) . '">' . zen_image_button(BUTTON_IMAGE_ASK_QUESTION, BUTTON_ASK_QUESTION_ALT) . '</a>' : ''); ?></div>
<?php
}
?>
<!--eof Ask A Question button -->
I just install V2.7, but got error
Parse error: parse error, unexpected $end in C:\wamp\www\includes\templates\ilync\templates\tpl_product_info_display.php on line 680
any idea?
Thanks
ERIC
Updated version "2.7a" has been released but it does not look to be yet available in Zen Cart downloads area.Quote:
Originally Posted by ericpeng
To obtain patch see qhome post #88 . Download and replace tpl_product_info_display.php (or you easily make the two minor edits yourself). Then report back.
Your issue is likely with:
if ($bCustomerAlsoPurchased === false) {
Should be :
if ($bCustomersAlsoPurchased === false) {
Note the "s" needs added to the end of Customer
If this does not repair and you reeive an error report identifying a line number, open the file in a text editor that shows line numbers, and identify and report back with the code on that line, and also just before and just after that line (provide a brief code snippet).
Woody
Thanks for your reply. I tried the bugs on #88 but still the same problem.Quote:
Originally Posted by Woodymon
The 2.7a is availiable.But I got the same problem.
Parse error: parse error, unexpected $end in C:\wamp\www\includes\templates\ilync\templates\tpl_product_info_display.php on line 681
I found the problem is in Line#134Quote:
Originally Posted by ericpeng
change <? to <?php
Good catch. Time for v.2.7b ;)Quote:
Originally Posted by ericpeng