“Comments And Reviews” Addon Not Working With My_Changes

Hi there,

We are using the "Comments and reviews" addon. It worked fine. But after adjusting some hooks in my_changes, it does not work anymore. It still shows the link, but the pop-up doesn't give any fields anymore. Why? What hook does "Comments and reviews" work with, which have I messed up?

http://testserver-nulvijf.nl/presentatie/roll-up-banners/roll-up-banner-bronze/

If you override any hook, pre and post hooks are ignored. It can be a reason of your problem

If you override any hook, pre and post hooks are ignored. It can be a reason of your problem

Ok...

What would be the best way to work around it? Do I place those pre and/or post hooks also in my_changes?

Looks like you overrides the view_main_info hook. In this case, add the following code to the end of file:

{if $addons.discussion.status == 'A'}
    {include file="addons/discussion/hooks/products/view_main_info.post.tpl"}
{/if}

Looks like you overrides the view_main_info hook. In this case, add the following code to the end of file:

{if $addons.discussion.status == 'A'}
    {include file="addons/discussion/hooks/products/view_main_info.post.tpl"}
{/if}

Excactly! Thank you so much!

We are glad to help you