Hi:
I’m rebuilding an old WooCommerce site with a new block theme – site is in staging right now.
I need a plugin to add additional Product tabs and need to be able to assign them to individual products. Your plugin (PRO version) looks promising but I want to be sure it’s going to continue to exist for the forseeable future.
Let me know – thanks!
Hello
For ecommerce polylang is definitely better, is your plugin working with polylang, can u update it to work for polylang ?
After all, we like the search function in your plugin that enable us to search by table name.
To finish, we see that your plugin doesn’t enable us to set a Table name for admin only, because if you have 1000 products and 1000 size guide then how will you know wich “Size guide” tab is for which product ?
Admins want to set tabs name to size guide product A, size guide product B, etc.. for backend only, and “Size guide” for customer tab title. Can u add this ?
Thanks
Hi, just wondering if your plugin can display product tags in a tab?
Thanks,
Mike
Hi,
great job with the Plugin. Just wanted to ask if there’s any way to switch the created tabs before the Woo default tabs?
I created a “Payments & Delivery” tab and it shows after the default “Reviews” tab which doesn’t make much sense.
Cheers,
Andy
can I access product tabs (reviews) directly via URL? I want to create a link like product-name then when the user click on this link, will direct go to product-page auto scroll to bottom and auto activate “reviews” tab. Possible to do that?
]]>This is David from the WPML compatibility team. Im writing to let you know about an issue between WPB WooCommerce Custom Tab Manager & WPML plugins.
When a user translates a product tabs, it is displayed together with its translation in the product page. This was initially reported here:
https://wpml.org/forums/topic/tab-plugin-issue/
The solution is simple, we need to add the ‘suppress_filters’ => false argument in function wpb_wctm_get_tabs(). This function is defined in inc/class.wpb-woocommerce-custom-tab-manager.php
More specifically, change this:
$args = array (
'post_type' => 'wpb_wtm_tab' ,
'post_status' => 'publish',
'posts_per_page' => -1,
'meta_query' => array(
array(
'key' => 'wpb_wctm_active_tab',
'value' => '1',
),
)
);
To this:
$args = array (
'post_type' => 'wpb_wtm_tab' ,
'post_status' => 'publish',
'posts_per_page' => -1,
'suppress_filters' => false,
'meta_query' => array(
array(
'key' => 'wpb_wctm_active_tab',
'value' => '1',
),
)
);
Let me know if you would include this fix in your next release.
Thanks
David
Hi,
I’m using this plugin to show a custom enquiry tab (contact7 form) and it’s working pretty good.
Problems comes when I try to display it as I display the whole page, I use this code in my theme’s function
function remove_woocommerce_product_tabs( $tabs ) {
unset( $tabs['description'] );
unset( $tabs['reviews'] );
unset( $tabs['additional_information'] );
return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'remove_woocommerce_product_tabs', 98 );
/**
* Hook in each tabs callback function after single content.
*/
add_action( 'woocommerce_after_single_product', 'woocommerce_product_description_tab' );
add_action( 'woocommerce_after_single_product', 'woocommerce_product_additional_information_tab' );
So tabs are dispayed and opened in the page.
I can’t find the hook I need to add to display also the custom tab in “woocommerce_after_single_product” and I also can’t actually remove it like I’ve done with other tabs.
Any help will be very appreciated.
Thank you
]]>Hey,
how do i make for each product a different tab content?
https://www.ads-software.com/plugins/wpb-woocommerce-custom-tab-manager/
]]>Hi guys.
First of all, thanks for so very nice and useful plugin. It’s awesome!
I am using since a couple of days the free version from wp.org site. It’s very easy to use and I’ve integrated in a new tab a form (Contact Form 7) and some logo, texts, buttons, etc. All works truly well but the form doesn’t send the info. You can fill the form but, when clic on the send button, a couple of circle arrows appears twirling with no end.
https://goo.gl/Hu2fek
That form is also running in other pages of the same site and is working well.
Is it due for the free version or I should activate something? I hope you can help me with this.
Kindest regards and thanks again in advance!
Antonio
https://www.ads-software.com/plugins/wpb-woocommerce-custom-tab-manager/
]]>