jpowersdev
Forum Replies Created
-
Hi @shakilumerji,
Could you try enabling “Page Builder Compatibility” in the settings? https://yikesplugins.com/knowledge-base/page-builder-compatibility/
Let me know if that helps,
JonForum: Plugins
In reply to: [WP REST API Controller] ACF Images not returning correctlyHi @alanbrownca,
Thank you for letting me know! That is quite a nifty plugin, glad you got it working.
We will consider your request.
Thanks,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Local Scroll Link IssueHi @whispardesign,
In your case, you probably want to modify the javascript to scroll to something directly above the tab (like the container wrapping the tabs). Could you post your javascript here? It’s been minified on your site, so I’m struggling to find it.
Thanks,
JonAs I was saying to @beemg80, sending an email in response to a form submission is not Mailchimp’s purpose. It may look that way since you can send “Welcome” emails when a user joins an audience etc., but what you are looking to send is what’s called transactional email. More of a “Thing Happens -> Send Email.” Mailchimp is a Marketing email provider, which is more of a “User Subscribes -> Send Emails at Specified Intervals.” An example of a Transactional email provider is something like Mailgun (though probably not necessary for what you are trying to do).
You can add some “Transactional” mail to your process if you handle the sending of that mail through your webserver. That way you can respond to your form submission in both ways; adding a user to the audience and sending them a separate transactional email. Alternatively, there may be some options within Mailchimp itself that allow you to re-send emails when a user is updated, but that is outside of the scope of our plugin – we just send the info to Mailchimp and it handles the rest.
Let me know if that helps,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Descriptions not showing upHi @thesocialbee,
I see what you mean. It looks like you are using Elementor, and it looks like each tab is, for some reason, printing the same Elementor block. Could you try enabling Page Builder Compatibility?
Let me know if that helps,
JonForum: Plugins
In reply to: [WP REST API Controller] ACF Images not returning correctlyHi @alanbrownca,
I’m sorry that this issue slipped through my radar. Were you able to get it working?
We don’t use ACF too often, but in the past, I have used https://github.com/airesvsg/acf-to-rest-api/ when I need to pull ACF data from the REST API. Unfortunately, it looks like it hasn’t been updated recently, but it may be worth a shot.
Jon
@beemg80 Correct, because they are re-subscribing, the messaging is all based around letting them know that they were previously an audience member. It looks like you want a form that does two separate things after submission, only one of which is to send the person’s information to MailChimp. If you are sending some file as a “Welcome” to your MailChimp audience, it will only be sent the first time a user submits the form.
If you want to do this with our plugin, I’d recommend moving the email with the gifts to your web server (i.e. send it through WordPress instead of Mailchimp) and hooking into the
yikes-mailchimp-after-submission-{$form_id}action in order to send that gift email after the specific form is submitted regardless of their prior audience status. Let me know if you need any further clarification there.@sophiamarietaylor Could you provide a link to the page you are having trouble with? That is generally the message you see when you don’t have that option turned on, are you sure you updated the correct form?
@adamlach86 Could you provide a link to the page you are having trouble with? What opt-in settings do you have selected for this form?
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] deprecated block_categories@grapplerulrich, Just merged your PR, thank you for that.
@josiah-s-carberry Please update to the latest version, the warning should no longer be visible.
Thanks,
JonHi @beemg80,
I think you are looking for the “Update Existing Subscribers” option, as seen in this article – https://yikesplugins.com/knowledge-base/opt-in-settings/
Let me know if that helps,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Use IF statements to display dataForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Use IF statements to display dataHi @crombiecrunch,
You’ll probably want to start by doing a
var_dump($product_attributes);to see what keys are set, then you’ll know what to remove.Jon
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Use IF statements to display dataHey @crombiecrunch,
It looks like you can filter the output of that function using the following filter:
add_filter( 'woocommerce_display_product_attributes', 'remove_product_information', 10, 2 ); function remove_product_information( $product_attributes, $product ) { // Remove an attribute from the array unset($product_attributes['any-field']); return $product_attributes; }That allows you to modify the list, but doesn’t allow you to change the markup. In order to do that, you’ll need to copy the
plugins/woocommerce/templates/single-product/product-attributes.phpfile into your theme and make modifications there.Here’s an article on overriding WooCommerce templates – https://docs.woocommerce.com/document/template-structure/. Be sure to use a child theme if your site’s theme is from the marketplace, otherwise, theme updates will remove your modifications.
Happy to help!
Thanks,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Not all tabs showing/incorrect infoHi @gracebex,
Fantastic! Unfortunately, since that tab is coming from outside of our plugin, it’s going to be exempt from the ordering. That being said, you could probably use the WooCommerce filters (as shown here) to reorder the tabs manually.
Thanks,
JonForum: Plugins
In reply to: [Simple Taxonomy Ordering] Order posts by taxonomies orderHi @rherault,
To the best of my knowledge, there isn’t a way to do a WP_Query ordered by taxonomy under regular circumstances, and our plugin does not provide that functionality.
The only way I can think of doing that is to fetch all the taxonomies in
term_order, loop through them, and construct a query for each. Then you would build an overall list of posts and de-dupe them.It might be a performance hit, but it would do what you are looking to do.
Let me know if that helps,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Use IF statements to display dataHi @crombiecrunch,
So for a scenario like the maybe undefined “Warranty” section, you could just wrap that section in a conditional.
In your shortcode:
$warranty = get_post_meta(get_the_ID(), 'warranty-field-name', true); // or however you are grabbing it if (!empty($warranty)) { echo "<div>Warranty: " . $warranty . "</div>"; }That probably won’t be exactly what you want, but it’s the general strategy you will follow.
The width will be set in your CSS. You can use your browser’s developer tools to see what’s going on with the page. If you wrap the whole shortcode output in some sort of container with a class (such as
<div class="data-tab">...</div>) you can make sure that the styles you write are specific to the shortcode.I checked the order. You may want to reach out to Paypal, it looks like the payment is still processing with them.
Let me know if that helps,
Jon- This reply was modified 4 years, 9 months ago by jpowersdev.