You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Deprecated: Function create_function() is deprecated in /srv/www/nbs/public_html/wp-content/themes/napoleonbeesupply-theme-2017/library/woocommerce.php on line 29
Notice: Trying to get property 'term_id' of non-object in /srv/www/nbs/public_html/wp-content/themes/napoleonbeesupply-theme-2017/library/woocommerce.php on line 123
The first one seems to be due to your use of create_function when setting the number of columns. A better way to do this while using an anonymous callback would be:
// Change number of columns on product pages
add_filter( 'woocommerce_product_thumbnails_columns', function( $columns ) {
return 3;
} );
The text was updated successfully, but these errors were encountered:
The first one seems to be due to your use of
create_function
when setting the number of columns. A better way to do this while using an anonymous callback would be:The text was updated successfully, but these errors were encountered: