Quote Originally Posted by Maynards View Post
I have added this plugin and do not get the option of asking a question on product pages. This is a very simple plugin to add but where did I go wrong.
I am using zencart version 155e with a template of westminster_new.

Any ideas?

Thanks in advance
Typically and I love how so many different plugins do things differently and regardless the method of explaining/doing, none is "right", but the README.txt indicates how to "present" the option:

Move includes/templates/template_default/templates/tpl_product_info_display.php
to your own template directory, if it's not already there.
In this file, find: <!-- eof Product details list -->

On the following line, insert this block of code:

<span id="productQuestions" class="biggerText">
<br />
<b><?php echo '<a href="' . zen_href_link(FILENAME_ASK_A_QUESTION, 'products_id=' . $_GET['products_id'], 'SSL') . '">' . ASK_A_QUESTION . '</a>'; ?></b>
</span>
<br class="clearBoth" />

Alternately, you may use the button provided. To do this, insert

<div id="askQuestion" class="biggerText">
<?php echo '<a href="' . zen_href_link(FILENAME_ASK_A_QUESTION, 'products_id='
. $_GET['products_id'], 'SSL') . '">' .
zen_image_button(BUTTON_IMAGE_ASK_A_QUESTION, BUTTON_ASK_A_QUESTION_ALT) .
'</a>'; ?></div>
<br />
<br class="clearBoth" />
That is the "link" to the software being installed and the option being presented...

How/where otherwise within your code/site you place this is up to your desire, but it is a starting point that works. :)