Freddie
Forum Replies Created
-
Hey @majozuca08 @r24marisol @smorales669,
Look at the OP’s error:
yikes/cpt/v1/settings
this is coming from us because we’re Yikes.wc/v1/brands
is some sort of WooCommerce API call. This is for the same reason that we had this bug but it was someone else’s plugin causing it.If everyone looks at their error logs and then pastes this part of the error:
wc/v1/brands
, into google you should be able to figure out which plugin it belongs too and open up a ticket with that plugin.Usually the first part of the url tells who it is, which is why our url starts with
yikes
.Hope this helps!
Cheers,
FreddieForum: Plugins
In reply to: [Easy Forms for Mailchimp] Pre-populate field with post valueIts actually redirecting me back to the same page right now did you set the redirect up on that form?
– Freddie
Forum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] All of the tabs are missingHey @harrywismand,
Please use our contact form to get in touch with me over email https://yikesplugins.com/about/contact/. I’d like to get a closer look at this and make sure you don’t have to update all your products!
Cheers,
FreddieForum: Plugins
In reply to: [Custom Product Tabs for WooCommerce] Position of tabsHey @sonia456789,
The only way to apply a custom reordering is to use code or our pro extension. If you’d like to reorder your tabs through code (its not super crazy) you can follow this tutorial from WooCommerce:
https://docs.woocommerce.com/document/editing-product-data-tabs/#section-3There’s quite a few examples there doing different things with your tabs, the only difference would be if you want to target your custom tabs you would just copy what the examples are showing but replace
$tabs['additional_information']
with$tabs['your_custom_tab_slug']
Let me know if you have any questions!
Cheers,
FreddieHey @jewell850,
Where are you seeing this error? Could you send me a link to a page if it’s happening on the frontend of the site instead of on the Product Edit screen.
Also, what are you using to create tables? The shortcode might be having a conflict in the use of
the_content
WP Filter.My first instinct is to tell you to follow this tutorial because it fixes 90% of issues beyond what it describes in the article and its just a setting you turn on! ??
https://yikesplugins.com/support/knowledge-base/page-builder-compatibility/Cheers,
FreddieForum: Plugins
In reply to: [Easy Forms for Mailchimp] Pre-populate field with post valueHey @jddouglas73,
Do you have a link to where you’re doing this first implementation so I can subscribe and see what we’re working with? This seems possible because I think as long as you have the email the same it will update their profile like you’re describing.
Cheers,
FreddieForum: Plugins
In reply to: [Yoast SEO] 502 Error On Certain Post TypesUpdate:
It’s 14.9. It works at 14.8.1
This information was just forwarded to me by my boss so something that happened in 14.9 breaks the page.
Hope this helps!
– Freddie
Forum: Plugins
In reply to: [Custom WP Login] Log Out pageHey @tushargangoly,
If you want to create a logout button you can do so with WordPress functions:
<a href="<?php echo esc_url( wp_logout_url() ); ?>">Logout</a>
Cheers,
FreddieForum: Plugins
In reply to: [Simple Taxonomy Ordering] Can’t reorder additional subcategoriesAre you sure that you added that category in under
Settings > Simple Tax Ordering
?Is the category selected there and its still not available? Any additional information you have so I could test this would be appreciated!
Cheers,
FreddieForum: Plugins
In reply to: [WP REST API Controller] WooCommerce REST API missing ordersHey @ricoclark,
The WooCommerce API comes with WooCommerce by default so you don’t need to use this plugin to control it at all. You can find their support forum here:
Cheers,
FreddieForum: Plugins
In reply to: [WP REST API Controller] REST API wont save endpointHey @ketchalegend,
I just tested and wasn’t able to reproduce your bug. I see you’re using plugins to modify your wp-config.php and htaccess so you might be having some sort of server issues. You should turn on the debug log so you can see if your setup is throwing any errors.
The taxonomies are stored in the options table under
wp_rest_api_controller_taxonomies
and then each individual endpoint has their own option field. Those can be found by using this formulawp_rest_api_controller_taxonomies_TAXSLUG
replacing TAXSLUG with the slug of the taxonomy you’re looking for.I hope this helps let me know if you have any questions about that!
Cheers,
FreddieForum: Reviews
In reply to: [Custom Product Tabs for WooCommerce] Not recommendedCould you email us by going to https://yikesplugins.com/about/contact the form tells you not to use it for support but that’s okay in this instance! ??
Cheers,
FreddieForum: Reviews
In reply to: [Custom Product Tabs for WooCommerce] Not recommendedThat’s strange are you using any caching plugins? What you could do is deactivate Custom Product Tab and then reactivate it. The data doesn’t get removed unless you delete the plugin so that might help bring them back.
Cheers,
Freddie- This reply was modified 4 years, 1 month ago by Freddie.
Forum: Reviews
In reply to: [Custom Product Tabs for WooCommerce] Not recommendedSorry the formatting is getting weird but the wp_postmeta, post_id, and meta_key should all be surrounded by back ticks.
Forum: Reviews
In reply to: [Custom Product Tabs for WooCommerce] Not recommendedThe tabs are stored in 2 places.
If you’re using saved tabs those are stored in the WordPress options table as
yikes_woo_reusable_products_tabs
.The tabs for your individual products are saved as post meta on each product. You can see them on the post meta table by doing the following:
1. Find a product that had the tab and locate its ID.
2. In your database query that products custom tabs like this:SELECT * FROM
wp_postmeta
WHEREpost_id
= '116' ANDmeta_key
= 'yikes_woo_products_tabs' LIMIT 50Make sure you change 116 to your products id and if your datebase isn’t using wp_ as the prefix change that to your prefix where it says wp_postmeta.