jpowersdev
Forum Replies Created
-
Hi @usarvesh,
Could you let me know how you are going about importing the data? Is this using a specific plugin?
Thanks,
JonForum: Plugins
In reply to: [WP REST API Controller] Search element by urlHi @kandalf,
If you are able to search just by the slug (instead of requiring the entire URL), you can do something like
sitename.com/wp-json/wp/v2/POST_TYPE?slug=post-slug.So in this case, it would be
sitename.com/wp-json/wp/v2/listing?slug=my-element.Let me know if that helps,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Use IF statements to display dataHi @crombiecrunch,
Thanks for reaching out! Based on your question, I’m imagining two scenarios:
1. I want a tab shown or hidden based on some condition.
2. I want the content of a tab to change based on some condition.For scenario 1, you can use the filter and approach that is outlined here. Inside of the filter function, you’ll want to check to make sure you’re on the correct product, etc.
For scenario 2, I’d recommend making a shortcode to display the data, and in the shortcode callback function you can add the conditional.
Let me know if that helps, or if you have any trouble with the implementation.
Thanks,
JonForum: Plugins
In reply to: [Easy Forms for Mailchimp] Form Not updating after changes on Mail ChimpHi @bnisia,
Have you tried editing the form through our plugin? If the fields have been changed in Mailchimp, you should see those updates in the form editor.
Jon
@chanimal Glad to hear that it’s working.
Jon
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] Adding extra tags?Hi @talkingtree,
That’s going to be something you manage in Mailchimp. Our plugin should pull them in automatically.
Here are some articles from Mailchimp on tags:
– https://mailchimp.com/help/getting-started-tags/
– https://mailchimp.com/help/create-add-remove-tags/Let me know if that helps,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Not all tabs showing/incorrect infoHi @gracebex,
Tracy mentioned that the first “Brand” tab doesn’t contain our plugin’s markup, which suggests that some other plugin (or perhaps your theme) is adding it. Do you have any plugins which manage the assigning of Brands to your Products?
Thanks,
JonHi @myglass
If your tabs aren’t showing up on the page at all, you should check the product template in your theme. Our plugin just modifies the list of tabs sent to WooCommerce, it doesn’t have any effect on the layout or presentation.
That being said, if your tab’s content has invalid HTML, it will break the layout of your page. If there is a specific problematic tab, you may want to run the content through an HTML validator such as https://validator.w3.org/
Let me know if that helps,
JonHi @sakshityagi343,
Thanks for being patient with us! I had a conversation with another user about this exact problem, you can find that here – https://wordpress.org/support/topic/old-tags-deleted-when-new-one-added/
The tags will be appended when an existing email address is used. That being said, the user I spoke with originally was not seeing that, and I believe it was resolved by modifying their settings within Mailchimp itself. They did not document their steps to resolve, but you could always reach out if you are in the same scenario as them.
Let me know if that helps,
Jon@myglass Could you describe the card you are referring to?
As I mentioned to chanimal, reviews are not managed by our plugin.
Hi @chanimal,
This does not look to be the same problem. Reviews is a tab that comes with WooCommerce and isn’t related to our plugin. Unfortunately, WooCommerce doesn’t seem to have a docs page on this (other than a casual mention at the top of this page).
Here is a link to the code defining the reviews tab: https://github.com/woocommerce/woocommerce/blob/0a857088f994def1aca6f3feb3e4a4af964b225f/includes/wc-template-functions.php#L1851. It loads the comments template, since reviews are really just post comments.
Depending on your theme’s structure, the template file is probably called
single-product-reviews.php.@myglass Could you clarify which of the two problems you are having?
Forum: Plugins
In reply to: [Easy Forms for Mailchimp] deprecated block_categoriesWe appreciate you reaching out! This will be fixed in the next update.
Thanks,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Custom Tab Side by SideHi @pearlynppl,
You can delete the block adding the mobile styles:
@media(max-width:549px) { .small-nav-collapse>li { width:100%; margin:0 !important } }Let me know if that helps,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Custom Tab Side by SideHi @pearlynppl,
That’s going to be handled by your theme’s stylesheet, not anything in our plugin. If you provide a link to the page, I may be able to point you in the right direction.
Thanks,
JonForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] How to set custom tab as default tabHi @tusharbarhate23,
That’s not a feature offered by our plugin. It just provides data for WooCommerce to display. However, you could implement this functionality in your theme using some JavaScript.
Thanks,
Jon