jpowersdev
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] No se suscriben los contactosHi @eduiglesias23,
That makes sense, Mailchimp only sends that initial email one time. You might be able to find a method of “re-sending the welcome email on user update” if you take a look at Mailchimp’s Automations feature, but our plugin doesn’t provide that sort of functionality.
You may want to look at a solution where the email with the PDF is sent by your WordPress server when the form is initially submitted, and the Mailchimp side of things is handled separately. Then each subsequent submission would still trigger the PDF being sent, regardless of the interaction with Mailchimp. That is something that would require a good deal of custom code, so it might not be an option for you depending on your circumstances.
Jon
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] Captcha not working on Easy FormsHi @contactpoint01,
I see that you have the same form in two locations on one page. Please try making a second form (with the same fields) and replace either the footer or sidebar form with that form. That should fix the second form’s captcha. You should also disable any external sources of recaptcha (such as elementor) to prevent additional conflicts.
Let me know if that helps,
JonForum: Plugins
In reply to: [Easy Forms for Mailchimp] We’ve encountered an error. Reload the pageHi @johnegg,
That is really very strange. Yes, it could potentially be a hosting-related issue. You might also want to do a fresh setup of the plugin. Delete it completely, reinstall, re-authenticate with Mailchimp.
Let me know if that helps,
JonForum: Plugins
In reply to: [WP REST API Controller] Error featured media rest APIHi @8cinzia8,
That error means you don’t have permission to access the resource you are trying to access. Are you using an application password for your API requests? Make sure the user that owns the application password has access to view whatever resource you are trying to view.
Jon
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] Captcha not working on Easy FormsHi @contactpoint01,
It looks like your site is password-protected, so I am unable to help debug. Could you provide me access to the page you need help with?
This is probably a JS conflict somewhere, but I’ll be able to provide more info when I see it.
Thanks,
JonForum: Plugins
In reply to: [Easy Forms for Mailchimp] No se suscriben los contactosHi @eduiglesias23,
I was able to submit the form (on this page: https://eduiglesias.net/guia-gratuita-objetivos/) and receive the double opt-in email, which I clicked and landed at the following page: https://eduiglesias.clickfunnels.com/
Several minutes later, I received an email with a link to a PDF. Do you see my email address on your Mailchimp list?
Jon
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Exporting and Importing DataHi @mmkurhade,
Yes, serialized data is difficult to edit (as it’s not designed to be), but that’s just how WordPress stores complex data types in the database.
The knowledge base article you are referencing provides code enabling you to edit your tabs as JSON, but it only provides instructions on parsing the import. There was another recent support thread which includes a discussion on how to convert your tab data to JSON during the export – https://wordpress.org/support/topic/export-not-including-data/
Let me know if that helps,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Importing tabs WooCommerceHi @emoteek,
The hybrid approach I suggested would not involve the use of our plugin, you’d be doing that in PHP. You’d add a function to your
functions.phpfile which would use the WooCommerce tabs filter to insert a tab, and that tab would contain the markup and URL coming from your spreadsheet (stored on your product as a meta field). The tabs filter / “edit tabs” hook is documented here: https://woocommerce.com/document/editing-product-data-tabs/#section-5Let me know if that makes more sense,
JonForum: Plugins
In reply to: [Easy Forms for Mailchimp] We’ve encountered an error. Reload the pageHi @johnegg,
Interesting. What version of WordPress are you using? What browser?
Do you see any issues in your website’s Site Health screen?
Do you see any relevant errors in your site’s debug log?
Let me know what you find,
JonForum: Plugins
In reply to: [Easy Forms for Mailchimp] We’ve encountered an error. Reload the pageHi @johnegg,
Yes, that’s almost certainly a plugin conflict. I find that using the Health Check & Troubleshooting plugin is the least invasive way to troubleshoot these sorts of issues.
After installing the plugin, enable troubleshooting mode and activate our plugin. Then activate your theme, and activate plugins one at a time while checking for the issue to reoccur.
Let me know what you find,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Shortcode for tabsHi @binarywc,
In the case of the product ID – Since this shortcode is only running in tabs on a single product page,
get_the_ID()should return the ID of the current product. That’s a core WordPress function you can use here because we’re in The Loop.Once you grab the meta value for the tabs (using the product ID), you can use something like print_r or var_dump to see the shape of that data so you can determine what you need. My little array_filter snippet is looping through the list of tabs and picking out the one with a matching title. That way you can check to see if it exists.
Let me know if that helps,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Empty tabs on some product pagesForum: Plugins
In reply to: [Easy Forms for Mailchimp] We’ve encountered an error. Reload the pageHi @johnegg,
Could you provide a screenshot of the form settings tab being blank? That sounds like a conflict.
Do you see any error messages in the browser console when you try to submit a form? You can view the console by right-clicking the page and clicking “Inspect”.
Could you provide a link to the page you are having trouble with?
Thanks,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Importing tabs WooCommerceHi @emoteek,
There are a few ways to go about this. 15k is a substantial number of products.
To address the concern about multiple tabs – Yes, the tabs are stored as a list, so adding one tab requires you to write it in your spreadsheet as a list containing one element.
You could theoretically use the same strategy to create a field that just stores a URL, which you then use PHP to format as the content of the single tab and store that as product meta. It would be significantly less complicated to edit on the spreadsheet side of things, but if you needed to add more than one tab, it would require using both strategies in tandem and being careful not to overwrite one another. This strategy also only works if the files are already hosted somewhere and you are just providing a link to them.
Alternatively, if you need to host the files on the WordPress server, you could add a meta field that stores a file upload. You could then use the WooCommerce “edit tabs” hook to check that meta field and append a tab with markup containing a link. This requires a bit less work on the WordPress side, but the issue of uploading PDF’s for 15k products would need to be solved separately.
There’s also the hybrid approach of 1. create a meta field storing the URL of the PDF, 2. add a column to your spreadsheet containing the URL, 3. use that “edit tabs” hook to add a tab with a link to the URL.
I’d use that last option if possible.
Let me know if that helps,
JonForum: Plugins
In reply to: [Easy Forms for Mailchimp] Invalid resource only for Contact 7 integrationFor reference, here is our knowledge base article on Contact Form 7 integration: https://yikesplugins.com/knowledge-base/contact-form-7-integration/
Could you provide a link to a page using the CF7 form?
Thanks,
Jon