Hello,
Here is the (temporary) change I made to the plugin.
In file wp-content/plugins/explanatory-dictionary/public/classes/default.php
Just after this code (line 628) :
// Show on the homepage if the user so desires
if( !$show_on_home && is_front_page() ) {
return false;
}
I added this one :
if(is_category()) {
return false;
}
Bye
Helo,
A little more information, the fatal here is caused by this line (filepublic/classes/default.php), line 561 :
`
$content = preg_replace( $searches, $replacements, $content, $settings_list[‘_limit’] );