acabo de comprar la licencia, y al actualizar el plugin me da el siguiente error.
Fatal error: Cannot redeclare tgmpa_load_bulk_installer() (previously declared in pornocheff.com/web/htdocs/wp-content/plugins/wp-show-posts-pro/inc/class-tgm-plugin-activation.php:3154) in pornocheff.com/web/htdocs/wp-content/themes/ilutube/inc/admin/class-tgm-plugin-activation.php on line 2218
It looks like your theme needs to check to make sure TGMPA isn’t already loaded. This can be done using ! class_exists( 'TGM_Plugin_Activation' ) in the file where it loads it.
Replace in: class-tgm-plugin-activation.php
The line 1927 with the original one: if ( ! function_exists('tgmpa') ) {
y tampoco me funciona, dando el error
Fatal error: Cannot redeclare tgmpa_load_bulk_installer() (previously declared in pornocheff.com/web/htdocs/wp-content/plugins/wp-show-posts-pro/inc/class-tgm-plugin-activation.php:3154) in pornocheff.com/web/htdocs/wp-content/themes/ilutube/inc/admin/class-tgm-plugin-activation.php on line 2218
In our pro version, that function is wrapped like this:
if ( ! function_exists( 'tgmpa_load_bulk_installer' ) ) {
}
That will prevent this error from happening if another plugin has the same function. However, that other plugin must also use the functon_exists() function, or this error can happen.