Forum Replies Created
-
AuthorPosts
-
August 20, 2015 at 5:12 pm in reply to: 3.3 update problem – Widget: Latest News – Categories are not there #490920
Worked great! Thanks so much for the quick fix!
Found my fix: Also had to change this:
Change yes to on.wp-content/plugins/woocommerce-tab-manager/woocommerce-tab-manager.php
From:
if ( ‘yes’ == $override_tab_layout ) {
// product defines its own tab layout?
$this->product_tabs[ $product_id ] = get_post_meta( $product_id, ‘_product_tabs’, true );
To:
if ( ‘on’ == $override_tab_layout ) {
// product defines its own tab layout?
$this->product_tabs[ $product_id ] = get_post_meta( $product_id, ‘_product_tabs’, true );Also:
/wp-content/plugins/woocommerce-tab-manager/admin/woocommerce-tab-manager-admin-functions.php and look for this line 102:
<label for=”_override_tab_layout”><?php _e( ‘Override default tab layout:’, WC_Tab_Manager::TEXT_DOMAIN ); ?></label> <input type=”checkbox” name=”_override_tab_layout” id=”_override_tab_layout” <?php checked( $override_tab_layout, “yes” ); ?> />Replace it with:
<label for=”_override_tab_layout”><?php _e( ‘Override default tab layout:’, WC_Tab_Manager::TEXT_DOMAIN ); ?></label> <input type=”checkbox” name=”_override_tab_layout” id=”_override_tab_layout” <?php checked( $override_tab_layout, “on” ); ?> />August 20, 2015 at 2:41 am in reply to: 3.3 update problem – Widget: Latest News – Categories are not there #490511Yes. Same on my website. http://www.therecordist.com
-
This reply was modified 10 years, 2 months ago by
therecordist.
-
This reply was modified 10 years, 2 months ago by
-
AuthorPosts
