hi all,
for some reason when i enable comments to be allowed on my event pages i am getting 2 boxes in which comments can be entered.
Upon using wordpress default theme i only see one comments field so i know it is theme related.. what exactly am i looking for so i can get some help from the theme developer?
The theme i am using is quark – http://wordpress.org/themes/quark
has anyone come across this before or can point me in the right direction?
thanks!
In the first instance can you try playing with the Events Template setting in Events → Settings → Display and see if that gets you closer to a solution?
If not just let us know (and please include a URL where we can see the problem) – thanks!
Hi Aurelio – you could basically try wrapping the code used in that template to display the comment form (normally this is quite simply a line reading comment_form(); ) in a conditional statement, something like this:
if ( ! tribe_is_event_query() ) comment_form();
Does that help here? You might want to make this change in a child theme to prevent your modification from being wiped on a future update – but it would be best to seek the advice of the theme author on that front.