hi, i dont want to have the above feature - in virtuemart for storebox template. pls advise how it can be removed or disabled
thanks
Enable Customer Review/Rating System => Test if you can vote / review a product. Try crossite scripting, try to vote or review even if disabled by knows link.
bkrztuk wrote:This is not template but Virtuemart issue and you will find this option is shop configuration http://dev.virtuemart.net/projects/virtuemart/wiki/Shop_configurationEnable Customer Review/Rating System => Test if you can vote / review a product. Try crossite scripting, try to vote or review even if disabled by knows link.
bkrztuk wrote:Could you check whether the same happen on default Joomla! template like Beez ?
elada wrote:bkrztuk wrote:This is not template but Virtuemart issue and you will find this option is shop configuration http://dev.virtuemart.net/projects/virtuemart/wiki/Shop_configurationEnable Customer Review/Rating System => Test if you can vote / review a product. Try crossite scripting, try to vote or review even if disabled by knows link.
I have installed Shop & Buy, and chose 'use as catalog' in the virtuemart setup. In the vm configuration tab/shopfront/Shopper Review/Rating System/ I disabled the show/enable function for rating and reviews, but the line "Please log in to write a review" on the product details page. I can't see how to remove that statement. Can you help please? Thanks!
if($this->allowRating || $this->showReview) {
?>
<input type="hidden" name="virtuemart_product_id" value="<?php echo $this->product->virtuemart_product_id; ?>" />
<input type="hidden" name="option" value="com_virtuemart" />
<input type="hidden" name="virtuemart_category_id" value="<?php echo JRequest::getInt('virtuemart_category_id'); ?>" />
<input type="hidden" name="virtuemart_rating_review_id" value="0" />
<input type="hidden" name="task" value="review" />
</form>
<?php
} else {
echo JText::_('COM_VIRTUEMART_REVIEW_LOGIN'); // Login to write a review!
}
?>
echo JText::_('COM_VIRTUEMART_REVIEW_LOGIN'); // Login to write a review!
// echo JText::_('COM_VIRTUEMART_REVIEW_LOGIN'); // Login to write a review!