Web Builder 143
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Product tabs for WooCommerce] Global tabsHi @chopperstwisted ,
- Global tab with content editable at the product level
Currently, there is no option to edit the global tab at the product level. You have to use product-specific tabs for this purpose. Alternatively, you can use the filterwb_cptb_alter_tab_content
to alter the tab content via a code snippet. - Tabs for product variations.
We will add this feature to our backlog, and you can expect it in our upcoming releases. - Do not display global tabs if empty
Please use the code snippet. - Option to have a global tab appear on every product instead of selecting every category
You can alter the tab list displayed for a product by using a code snippet with the filterwb_cptb_alter_tabs
.
Forum: Plugins
In reply to: [Custom Product tabs for WooCommerce] No tabs in categoriesThanks for pointing out the issue. We will check and fix it in our upcoming releases.
Thank you for your understanding.
Forum: Plugins
In reply to: [Custom Product tabs for WooCommerce] No tabs in categories@homedecobali
Apologies for any inconvenience caused. We’ve been unable to replicate the issue on our end. It could be a site-specific problem or possibly a conflict with other plugins. Would you mind deactivating other plugins to see if the issue persists?Forum: Reviews
In reply to: [Custom Product tabs for WooCommerce] Great plugin and quick supportThanks for the review !
Thank you for using our plugin. To enable custom tabs exclusively for logged-in users, please refer to the following code snippet:
add_filter('wb_cptb_alter_tabs', 'wb_cptb_hide_custom_tab_from_guest'); function wb_cptb_hide_custom_tab_from_guest( $wb_tabs ) { if ( ! is_user_logged_in() ) { return array(); } return $wb_tabs; }
You can enable this code snippet by adding it to your active child theme’s
functions.php
file or by using any Code snippets plugin.Thank you for notifying us of the issue. We have now deployed a fix. Please update the plugin and verify that the problem has been resolved. If the issue persists, please let us know.
Forum: Plugins
In reply to: [Custom Product tabs for WooCommerce] Global tab error@rimkus,
Thank you for the information.Forum: Plugins
In reply to: [Custom Product tabs for WooCommerce] Global tab errorThank you for providing the information. We have reviewed the plugin but were unable to replicate the issue. It’s possible that we may have overlooked something. If you wouldn’t mind, could you please share the error message, including the line number and filename, as you did previously?
Forum: Plugins
In reply to: [Custom Product tabs for WooCommerce] Global tab errorHi @rimkus,
We sincerely apologize; the specified plugin is a premium plugin. Currently, we operate on a non-profit basis, making it impractical for us to verify compatibility with that plugin. Alternatively, we recommend reaching out to the plugin developer and requesting a compatibility update from their end. Thank you for your understanding.@idiatulla,
You’re currently using a plugin created by a different author. To assist others who may encounter the same issue with that plugin, kindly post the solution in the respective plugin’s forum. Your input could be valuable for fellow users of that particular plugin.Forum: Plugins
In reply to: [Custom Product tabs for WooCommerce] Global tab errorHi @rimkus,
As you mentioned above, the error is being produced by a different plugin. Is the error occurring only when our plugin is used in conjunction with the other plugin? If so, kindly provide the download link for the other plugin.Forum: Plugins
In reply to: [Custom Product tabs for WooCommerce] Global tab error@rimkus
Sorry for the inconvenience caused. We are unable to reproduce the issue on our end. In order to investigate further, could you kindly provide the error log and a system status report?Forum: Reviews
In reply to: [Custom Product tabs for WooCommerce] the best plugin for product tabs@kilazer
Thanks for the review !Forum: Plugins
In reply to: [Custom Product tabs for WooCommerce] shortcodes for tabsUnfortunately this feature is not available in our plugin.
Forum: Plugins
In reply to: [Wb Sticky Notes] Minimum note heightHi @antipole
Thanks for choosing our plugin.
Each note comes with a resize option, but it is currently limited to minimum width and height parameters. We will consider your request and the feature will be available in our next update. - Global tab with content editable at the product level