jpowersdev
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] open tab on link clickHi @elenio,
I’m sorry, I completely misunderstood. My mistake.
The code can be fixed by changing it to the following:
jQuery('body').on( 'click', 'a[href^="#tab-title-trusted_shops_reviews"]', function () { var tab = jQuery(this.hash); tab.children('a').click(); } );This will correctly grab the tab and click it. Please let me know if that works for you.
Jon
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] How to edit custom tabs using elementorHi @jebrasmith,
Our plugin was written with the normal WooCommerce editing interface in mind. If you are using a Page Builder that takes over the editing experience for a product, it probably will not recognize our plugin’s fields or render them in an editable way. I would recommend using the default editing interface if you want to be able to use Custom Tabs.
Jon
Hi @thebrownagency,
Shortcodes do work in the tab content, but if they output broken html it will break the tabs. For example, if a closing tag is missing.
The page you linked to looks like it’s working. Did you get it figured out?
Jon
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Import Tabs with CVSHi all,
We put together a knowledge base article that should help you out – https://yikesplugins.com/knowledge-base/importing-custom-tabs-using-the-built-in-woocommerce-csv-importer/
Let me know if you have any trouble,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Import(NEW) product with CSVHi @olgamm,
We put together a knowledge base article that should help you out. Let me know if you have any trouble: https://yikesplugins.com/knowledge-base/importing-custom-tabs-using-the-built-in-woocommerce-csv-importer/
Thanks,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Import(NEW) product with CSVHi @olgamm,
There is not currently a supported way of doing this, but it’s on our radar as something to add.
Jon
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] open tab on link clickHi @elenio,
Okay! I’m going to close this out, but feel free to re-open if it’s still not working after you sort that out.
Thanks,
JonHi @wp-yeyo,
I threw together a knowledge base article to help you out here – https://yikesplugins.com/knowledge-base/how-to-hide-tab-headings-in-css-or-php/
With regards to SEO, here’s a Moz discussion on the effects of multiple heading tags on a page https://moz.com/community/q/is-is-ok-to-have-multiple-h2-or-h3s.
Let me know if that helps,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] open tab on link clickHi @elenio,
That code should still work, but it looks like your tab doesn’t have any visible content in it. I can see the html changing to open the tab’s content when you click on that tab, but the html in there isn’t displaying anything.
Jon
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Causes problems with WPML pluginYou could always try the normal troubleshooting routine –
1. Temporarily switch to a core theme (like 2021).
2. Disable all plugins except for WooCommerce, Custom Tabs, and your WPML plugin.
3. Re-enable one at a time until you figure out which plugin is causing the issue.If it’s still broken on step 2, then the conflict is with WPML itself. However, seeing as it works for many people with those two enabled, it’s possible that another plugin/theme is interfering.
Let me know what you find,
JonHi @brain1981,
I’m sorry, but I can’t really provide any answers about how WPML stores and updates the translations. You may want to reach out to their support team.
Jon
Hi @javii0451,
I see you are using Elementor. Page builders often change things around, and it’s possible that our usual css doesn’t apply to the structure that Elementor is creating. That being said, it’s probably a small change to write css that applies.
If you want to re-enable the tab titles I can help you update the styles.
Let me know,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Import Tabs with CVSHi @arjanvanansem,
WooCommerce allows you to add custom meta to products through the CSV, and our plugin is using custom meta to store tabs on products. The problem is that the information used by our plugin is serialized data, which you should not be editing manually. It’s a very specific format, and if even one row is invalid my guess is that WooCommerce would ignore the entire column.
You can use something like unserialize.com to take a look at the data if you want to understand the format. That being said, this question is a little out of scope for what our plugin is supposed to do.
Jon
Forum: Reviews
In reply to: [Custom Product Tabs for WooCommerce] Tabs disappearedAs explained here, you should never manually edit serialized data using PhpMyAdmin. That will break functionality in various and unexpected ways.
Jon