jpowersdev
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] set tabs for all productsHi @lenshtam,
The premium version of our plugin allows you create global tabs, as well as assign tabs based on taxonomy.
Alternatively, for something like that, I’d probably recommend just using the the woocommerce edit tabs hook as documented here: https://woocommerce.com/document/editing-product-data-tabs/#section-5
Let me know if that helps,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] hide heading text in video tabHi @cladiv,
I don’t see a video tab on the page you linked, but you can do that using CSS.
Something like:
#tab-video h2 { display: none; }Jon
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Lost Tabs After ImportHi @ssalb1,
Is there any chance that your edits included edits made to the tab data? That data is stored as serialized data, which means it shouldn’t be edited manually. It’s incredibly specific. If the data is corrupted, the problem will present itself as missing tabs.
If that’s what happened, you will want to restore a backup, or re-import the original export before you made modifications.
Let me know if that helps,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Add Scroller inside TabsHi @narendra151,
The markup for that section has a
<ul>of all of the tabs followed by each tab’s content as a<div>. All of these items are siblings, so if you make the section scrollable, it will scroll everything.You could add styles to each tab that makes just that tab’s content scrollable, or you could use something like
position: stickyto make the<ul>stick to the top of the container as it scrolls.Let me know if that helps,
Jon- This reply was modified 4 years, 3 months ago by jpowersdev.
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] Problem multiple tags subscriberHi @davide46gianna, @puurchantal,
Unfortunately, this is just a limitation of Mailchimp and how the audience and tagging system works. All of the automation tooling they have in place is tied to new members being added to an audience.
If you create a separate form with the same audience but a different tag/set of tags, the previous tags will be replaced with the tags on the new form. Updating an audience member is not an additive operation, it simply overwrites what is there.
If someone wanted to make it an additive operation, they would need to write some custom API functionality that would fetch a user from Mailchimp (based on email), load the existing configuration, update it with the values in the form, and send it back to Mailchimp. That could probably be integrated with our plugin using the hooks we make available, but it’s not an intended use.
MailChimp Members API Docs
Our Plugin HooksJon
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Close all tabs on defaultHi @lcameron,
That sounds like something your theme would manage. Could you provide a link to the page?
Jon
Hi @borjalofe,
We’re looking into this on our end. It’s going to require a bit of restructuring to accomplish. I’ll update you here when we have more information.
Thanks,
JonHi @hausi1980,
Glad you figured it out! I appreciate the update.
Let us know if you need help in the future.
Thanks,
JonHi @hausi1980,
It looks like your tabs column is formatted as JSON, and it also looks like the keys and values are double-quoted, which won’t work. Could you show the code you’re using to format the tab data as JSON?
Jon
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Custom Tab URL not clickableHi @heinzoellrich,
If you inspect the page using your browser tools, you can see that the following section has a margin-top of -150px, which is causing it to cover your link, making it unable to be clicked. You’ll have to change the settings for that section in Elementor.
Jon
Hi @johnnyfit,
Thanks for the update! Glad it worked correctly this time. Feel free to reopen if the issue reoccurs.
Jon
Hi @matty1107,
Thanks for the update. I have not experienced that before, that is certainly strange.
If you run into any additional information about this bug, I’d be curious to hear it. I’m going to close the ticket, but feel free to comment back if you find anything.
Thanks,
JonHi @borjalofe,
Are you talking about the options passed to
wp_editoras defined here? – https://github.com/yikesinc/yikes-inc-easy-custom-woocommerce-product-tabs/blob/0deccf931153f64977b72d6dd823150d6225dde6/admin/class.yikes-woo-tabs.php#L297Would adding a filter for that options array be a potential solution?
Jon
Hi @matty1107,
Is that user also a site administrator? If you log into their account using your computer and update a product, does the problem still occur? Is this a multisite?
A user that isn’t an admin (or on a multisite, a superadmin) can have certain content filtered out of the content they save (like script tags), though I haven’t experienced meta failing to send.
Assuming it’s not related to that, could the user in question check their browser console after saving to see if there are any error messages? It is possible that something unrelated tied to their user account is failing, causing the overall “save product” action to fail.
Jon
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Tabs appear twiceHi @lcameron,
I’m not familiar with the Woostify theme, but it seems to be including the markup for the entire tabs section twice. I took a look at this article https://woostify.com/docs/customizer-settings/custom-product-tab and it seems like you should be able to choose either having it below the product summary or as part of the summary. It shouldn’t be in both places.
You should really open a ticket with your theme developer. This seems like a bug with their system.
As a temporary fix, the following styles hide the second tabs section on that page:
#accordion-container.woocommerce-tabs { display: none; }Let me know if that helps,
Jon