-
AuthorPosts
-
May 16, 2013 at 10:43 am #23271
Hello, I have a problem with a plug-in for WooCommerce “Tab Manager”
the plugin works fine if I use the default theme of wordpress but not enfold (for the admin part)
Indeed Tab manager to delete the tab by default thanks to a label check
My problem is that in enfold
after update my product
check the label is in the initial state
I will attach a link to an image to explain my problem
http://docs.woothemes.com/wp-content/uploads/2012/11/woocommerce-tab-manager-admin-product-data.png
I state whether I use the default theme by parametrer by my product and I turn then enfold my product with my new tab appears normally
Best regard
May 16, 2013 at 2:51 pm #119161We’ll look into it. A temporary fix would be to replace following code in wp-contentpluginswoocommerce-tab-managerwoocommerce-tab-manager.php:
if ( 'yes' == $override_tab_layout ) {with:
if($override_tab_layout == 'on') $override_tab_layout = 'yes';
if ( 'yes' == $override_tab_layout ) {and in wp-contentpluginswoocommerce-tab-manageradminwoocommerce-tab-manager-admin-functions.php
$override_tab_layout = get_post_meta( $post->ID, '_override_tab_layout', true );with
$override_tab_layout = get_post_meta( $post->ID, '_override_tab_layout', true );
if($override_tab_layout == 'on') $override_tab_layout = 'yes';May 16, 2013 at 3:15 pm #119162Super,
Thank you very much if you have a solution to correct the serch function plug-in Product finder that would be great
Enfodld is really a very good template
best look
May 16, 2013 at 4:59 pm #119164In wp-contentthemesenfoldincludeshelper-template-logic.php replace
if (isset($_GET['s']) && empty($_GET['s']) && $query->is_main_query())with
if (isset($_GET['s']) && empty($_GET['s']) && empty($_GET['adv_search']) && $query->is_main_query())We’ll fix this in the next version too.
May 17, 2013 at 7:07 am #119165Thank you very much for your help
All works well
Sincerely,
philippe BEAU
-
AuthorPosts
- The topic ‘Woocommerce plugin "Tab manager" don't work’ is closed to new replies.
