jpowersdev
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] PHP Notice: Undefined indexForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Update tab text to full widthHi @ccredicott,
Try
#primary .wc-tab pas your selector. If you inspect using your browser tools you can see that the above isn’t specific enough and it’s getting overwritten by your theme.Jon
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] PHP Notice: Undefined indexHi @thomascbs,
You’ll have to do some troubleshooting to track down the cause. This doesn’t happen under normal circumstances, and it’s a fairly generic PHP warning. Without more information, there’s not much I can do to help.
Here’s probably how I would do it:
1. Go to this line in the plugin file https://github.com/yikesinc/yikes-inc-easy-custom-woocommerce-product-tabs/blob/0deccf931153f64977b72d6dd823150d6225dde6/public/class.yikes-woo-tabs-display.php#L56 and add a print statement so you can see the current tab when this code runs. Something like this:
error_log(print_r($tab,true));2. Click around a few products while having your debug.log file up for viewing.
3. Once you trigger the log message, check and see what tab information was printed out immediately beforehand.Once you have that information, it should be clear why the ‘id’ field is missing. You’re welcome to paste it here so I can help you interpret. You’ll want to remove your error_log line as well to avoid continuining to fill the debug log.
Jon
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Update tab text to full widthHi @ccredicott,
Based on what I see for the description tab, something like this should work:
.woocommerce-tabs p { max-width: 100vw; width: 100%; }Our plugin doesn’t add any styling though, the only reason your description tab looks different is because it’s being explicitly targeted. The styles come from your theme.
Let me know if that helps,
JonForum: Plugins
In reply to: [Easy Forms for Mailchimp] Form fields breaking out of form containerHi @cliveb1,
I’m still struggling to reproduce the issue by testing in the browser at those specs.
One thing I did notice is that the styles for your page are coming from avada fusion. You might want to take a peek at your fusion markup. It looks like the form and text are sitting in two different
.fusion-fullwidth.fullwidth-boxelements, so they should be stacking vertically.Jon
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] Form fields breaking out of form containerHi @cliveb1,
Could you provide some specs on the phone you are seeing this on? Screen size, model, etc. I’m not able to reproduce the issue using my browser tools.
Thanks,
JonHi @oposum,
Having just tested it, I can confirm that our plugin works on a fresh install of WordPress with the following setup:
PHP 7.4
WordPress 5.9
WooCommerce 6.2
Custom Tabs 1.7.7
Elementor 3.5.5
Twenty Twenty-Two 1.0You do need to enable the custom
the_contentfilter as you mentioned. That feature was added specifically for page-builders like Elementor.I have to assume there’s another factor at play here. Some other plugin, or perhaps your theme, must be interfering. If you’d like to open a support ticket for this issue, I’d be happy to help troubleshoot.
Jon
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] Add a compliance check fieldHi @eduiglesias23,
You can follow the steps in this article: https://mailchimp.com/help/create-new-audience-group/
Jon
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] Error: The requested resource could not be found.Hi @rocketpig3,
That explains it. The data on your wordpress site no longer lines up with the mailchimp data in any way. You’ll need to delete the data in wordpress to avoid future errors. The quickest way to do that is to deactivate and delete the plugin, then reinstall it.
Jon
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] Add a compliance check fieldHi @eduiglesias23,
Our GDPR plugin only adds one consent checkbox. Another way to add checkboxes would be to add a checkbox interest group to your mailchimp settings. It wouldn’t be mandatory, but you could write some javascript to enforce that it’s checked.
If you’re already writing JS to make a checkbox mandatory, you might as well have that same script add the checkbox too. Then you wouldn’t have to change the form.
Jon
Hi @johnnyfit,
I attempted to reproduce the issue by installing WooCommerce 6.0 and the latest version of our plugin on a fresh install of WordPress. I updated everything through the WordPress Updates page, as mentioned. Our plugin stayed active after the process was completed.
I’m just speculating here, but perhaps there’s an issue with your environment that’s causing the update process to “fail” at some point, but then ultimately complete. This could cause plugins dependent on WooCommerce to deactivate themselves. Do you see any relevant messages in your site’s debug log?
Jon
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] Error: The requested resource could not be found.Hi @rocketpig3,
Have you recently made any changes to your mailchimp settings? That error only appears when something exists on your wordpress site but not in mailchimp. You can try clearing the API cache in your plugin settings.
Jon
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] How to install mail-chimpHi @fahimulhasan,
I don’t see any signup forms on that site. Could you give me the specific URL of the page with the form?
Could you also provide a link to your site, so I can see what’s already been done? I might be able to figure out where that white space is coming from.
Jon
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] Add a compliance check fieldHi @eduiglesias23,
Did you take a look at the plugin add-on that Tracy mentioned? I believe it does what you are looking for. If it doesn’t, can you please explain the difference?
Jon