lvnaumova
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Product Tabs] Fatal Error in version 2.1.2Hi @anjanphukan?
Thanks for the advice. The rollback really helped.
There was a similar error on the site. Disabling plugins and changing the theme didn’t help. Thank you.Forum: Plugins
In reply to: [WooCommerce] Woocommerce conflicting my themein the main topic, open this very file:
/wp-content/themes/electro/inc/woocommerce/functions.php.
on line 86 insert the new code (the old one is just disabled)
/** * Sets no of products per page */ /* function electro_set_loop_shop_per_page() { if ( isset( $_REQUEST['wppp_ppp'] ) ) : $per_page = intval( $_REQUEST['wppp_ppp'] ); WC()->session->set( 'products_per_page', intval( $_REQUEST['wppp_ppp'] ) ); elseif ( isset( $_REQUEST['ppp'] ) ) : $per_page = intval( $_REQUEST['ppp'] ); WC()->session->set( 'products_per_page', intval( $_REQUEST['ppp'] ) ); elseif ( WC()->session->__isset( 'products_per_page' ) ) : $per_page = intval( WC()->session->__get( 'products_per_page' ) ); else : $per_page = electro_set_loop_shop_columns() * 4; $per_page = apply_filters( 'electro_loop_shop_per_page', $per_page ); endif; return $per_page; } */ function electro_set_loop_shop_per_page( $cols ) { $cols = 15; return $cols; }
everything will work
Forum: Plugins
In reply to: [Yoast SEO] problem when editing data in product pagesThanks for finding the problem. The plugin gives the error – Advanced Custom Fields PRO. installed on one of the network sites.
Sorry, I can’t turn it off.
I will solve problems with other methods. Thanks for the support and help.Forum: Plugins
In reply to: [Yoast SEO] problem when editing data in product pagescould it be a multisite issue with subdomains?
I have your plugin with this set of themes and plugins and there are no problems with them on other sites. There is your premium plugin on the same topic, there are no such problems there either. The only difference is multisite. Therefore, I think that there may be a problem in the correctness of the plug-in with the networkForum: Plugins
In reply to: [Yoast SEO] problem when editing data in product pagesthanks
deleted the old folder completely and replaced it with a new folder with the downloaded files.
did not help