Hi,
I use your FlexForm theme which is great. But noticed with some plugins it conflicts causing the site to fail with the following error:
Fatal error: Cannot redeclare aq_resize() (previously declared in /home/xxxx/public_html/studio/wp-content/plugins/showbiz/inc_php/framework/aq_resizer.php:201) in /home/xxxx/public_html/studio/wp-content/themes/flexform/includes/plugins/aq_resizer-1x.php on line 134
I’ve found a solution which involves wrapping the aq_resize() function in a function_exists check – as below. I’ve applied this to both the aq_resizer-1x.php and aq_resizer-2x.php files in your theme, however wondered as others seem to be suffering from this if you’re able to incorporate this, or something similar in a future release?
if(!function_exists(‘aq_resize’)) {
function aq_resize( $url, $width, $height = null, $crop = null, $single = true ) {
Many thanks.
Matt.