jpowersdev
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Taxonomy Ordering] Not working on WP5.9Hi all,
Just pushed an update on this. Please let us know if you are still seeing issues after updating.
Thanks,
JonForum: Plugins
In reply to: [Simple Taxonomy Ordering] Name tab > Sorting is lostHi all,
Just pushed an update on this. Please let us know if you are still seeing issues after updating.
Thanks,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Description tab is replacedHi @marjolein64,
Unfortunately, the only solution here is to use a different name. The tabs are keyed on the tab title, so if the dutch description tab is still using
descriptionas its key, it will be replaced if you create another with that title.Jon
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] Form Builder isn’t properly displayedHi @vkreilin,
The visual bug strikes me as a CSS conflict with some other plugin or theme. If you inspect the area using your browser’s developer tools, you might be able to determine where the other styles are coming from.
As for the “this form has encountered an error” bug, that usually means that something has changed in your Mailchimp account and the information stored by our plugin is no longer valid. Have you made any recent changes in Mailchimp?
Jon
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] Popup not appearing, critical error in backendHi @sitebites,
Thanks for the update.
If you take a look at that line in the plugin, you’ll notice that it only runs when WordPress throws an error while trying to fetch your account. The line in question is here – https://github.com/yikesinc/yikes-inc-easy-mailchimp-extender/blob/d8c990858fb899582e592a97011eaa9f6b7d0c6f/admin/partials/menu/manage-lists.php#L15
You might want to check your API key. I would probably generate a new one through your Mailchimp account and switch to that one. Then clear the API cache as described here – https://yikesplugins.com/knowledge-base/api-cache-settings/
If that doesn’t work, my recommendation would be to completely uninstall the plugin and reinstall it, which will wipe all stored data and should fix any connectivity issues with your Mailchimp account.
Let me know if that helps,
JonForum: Plugins
In reply to: [Easy Forms for Mailchimp] Popup not appearing, critical error in backendHi @sitebites,
Have you recently made any changes to your Mailchimp account? These sorts of errors usually occur when data that is stored in WordPress via our plugin is no longer found on the Mailchimp account.
Jon
Hi @anasafridi,
This is most likely an issue with your theme, as it was for the OP. Can you provide a link to one of the pages you are having trouble with?
Jon
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] CF7 integration & MC TagsHi @tye,
We do! I believe you will want to use the
yikes-mailchimp-checkbox-integration-bodyfilter for this, as you are trying to modify tags. We also have an article on modifying merge vars in CF7 here.The filter I mentioned receives the following arguments:
$data,$type,$list_id, and$integration_vars.$datais ultimately the body of the request to Mailchimp, and should be returned by your filter function. As shown in the Mailchimp docs, you’ll want to add atagskey to the$dataarray with a list of tags to apply.If you want to explore further, here is the line in question.
Let me know if that helps,
JonHi @2buy,
The built-in CSV import tool should work out of the box. Be sure to select “Export custom meta” during the export process, as shown in this screenshot: https://github.com/woocommerce/woocommerce/wiki/images/importer/exportscreen.png. The column should then be displayed during the import process on the column mapping screen. Make sure the correct column is selected.
If the data is corrupted, the tabs will not show after the import process. If you have manually edited the tabs column without a specialized tool that can unserialize and reserialize the data, you have probably corrupted the tab data.
Let me know if that helps,
JonHi @shaunus,
Do you have any custom code that is interacting with the woocommerce import/export process? The CSV import tool should work out of the box, and that error message suggests to me that your server was rejecting the format of your file. If it’s not the interference of some other plugin or theme code, you might want to reach out to your host.
Let me know if that helps,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Hover efect – Delay / loading tabsHi @vitruvian24,
This looks like it’s being handled by some javascript in your theme. When you click a tab, it manually updates the opacity of the element (as opposed to adding a class and using a CSS animation). The JS is minified so I can’t easily see where it’s coming from, but you can reach out to your theme developer for support.
Let me know if that helps,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Lost Tabs After ImportHi @ssalb1,
If you’re looking for a way to do this while being able to edit the tabs, I’d recommend looking into this knowledge base article on importing JSON – https://yikesplugins.com/knowledge-base/importing-custom-tabs-using-the-built-in-woocommerce-csv-importer/, as well as this thread (among others) where the entire export/import process is discussed – https://wordpress.org/support/topic/export-not-including-data/page/2/.
Jon
Hi @gymsfordogs,
Do you have any plugins that modify the edit product screen? Do you see any relevant error messages in your browser console?
Jon
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Add Scroller inside TabsHi @narendra151,
The position: sticky approach does work, I tried it. Alternatively, if you decide to make the tabs scroll, you need to overflow: hidden the container element and ensure that the tabs have a set height in addition to overflow: auto.
If you need additional assistance with CSS, you should submit a ticket with your theme developer. Our plugin just adds content. The style and layout are coming from your theme.
Jon