jpowersdev
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Request a SORT FeatureHi @tabledesigns,
The premium version of our plugin does allow drag-and-drop sorting of your saved and global tabs. However, that feature is designed for use when ordering tabs on the product page. I’m not sure if that will interfere with your use case.
Let me know if that helps,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Close tab on clickHi @mladja123,
It looks like you figured it out, I see the tabs closing on click now.
Let us know if you need anything else,
JonHi @clairettededie,
I don’t see the link you described in the footer of your site. Were you able to figure it out?
Thanks,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] How to remove ‘Add a Saved Tab’ buttonHi @neldad,
You could enqueue an admin stylesheet to hide the button, but we don’t expose any sort of action for disabling it.
Let me know if that helps,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Close tab on clickHi @mladja123,
That’s going to be something handled in your theme using javascript. Our plugin just adds to the list of tabs, it doesn’t manage the showing and hiding of them.
That being said, if you provide a link to the page, I may be able to help put together a script to do that.
Thanks,
JonForum: Plugins
In reply to: [Easy Forms for Mailchimp] View subscribers: how to add additional fieldsHi @zurcherart,
To the best of my knowledge, there is not a way to add additional fields to that page. However, the code is open-source, and you could theoretically copy the source code of that file into a custom admin page and display additional fields that way.
Let me know if that helps,
JonHi @zurcherart,
The function that generates that email is located here. It pulls the list information and customer information from the mailchimp api, then assembles a url here. Then it goes through the email body and replaces placeholder [link] elements with the actual links, as seen here.
We have error logging functionality that can be enabled in the plugin settings. What I would do in this scenario is first to turn that on, then start adding some debug lines inside that file. You can view the messages on that same “Debug Settings” page. You can use the following structure:
$error_logging = new Yikes_Inc_Easy_Mailchimp_Error_Logging(); $error_logging->maybe_write_to_log( 'error code / label', 'the text to dump', 'filename' );It only handles strings, so make sure not to dump an array. I’d drop the
maybe_write_to_logcall after each step of the link-building process to see where it’s going astray. And I would definitely recommend doing this either locally or in a staging environment, to avoid accidentally taking down the main site.Let me know what you find,
JonForum: Plugins
In reply to: [Easy Forms for Mailchimp] Recaptcha V3 Error for FormHi @alygraphy,
Currently, you can only have one reCAPTCHA V3 form per page. V3 functions differently than V2, and we have not yet implemented a way to have multiple forms on a page interact with the (required) single instance of V3. For the time being, if you need more than one form per page, I’d recommend using V2 instead.
Thanks,
JonForum: Plugins
In reply to: [Easy Forms for Mailchimp] Problem with groupsForum: Plugins
In reply to: [Easy Forms for Mailchimp] User Group listHi @gustavotroisi,
We do have the functionality to display the list of subscribers for a given list ID, so you may be able to modify some of this code to suit your needs. Line 51 gets the list of members for a given ID. I’d recommend caching the values if you are putting this on a frequently visited page.
Let me know if that helps,
JonForum: Plugins
In reply to: [Easy Forms for Mailchimp] Error Creating FormHi @ondway2legend,
Are you still having trouble? It looks like the screenshot you posted is not longer available.
Thanks,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Pro Version Question…Hi @britand,
We can’t answer Pro questions on the free forums. Please use our contact form to ask us any pre-sales questions you like.
https://yikesplugins.com/about/contact/Thank you!
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Text not displayingHi @serapiony,
The HTML of the tab section seems to be broken on the type-c page. The navigation bar is showing up inside the first tab, which is going to break whatever javascript manages the showing and hiding of tabs. I see that you are using visual composer page builder to create the tab content. I’d recommend taking a look at that section as regular HTML and make sure all your tags are closed correctly. Sometimes this is caused by something as simple as a missing </div> tag.
Let me know if that helps,
JonForum: Plugins
In reply to: [Easy Forms for Mailchimp] Subscribe programmaticallyHi @zyggmunt,
Though we do not directly expose an action for subscribing a user, we do have a handful of third-party integrations built out. For example, we have one for WooCommerce. I’m not sure if you are using WooCommerce to build your payment gateway, but if not the code itself may be useful for building your own handler.
Let me know if that helps,
JonHi @killz,
The error message is stating that one of your tabs doesn’t have an ID. Does the tab have a title? Have you done any manual editing of the postmeta for that product?
Thanks,
Jon