nward85
Forum Replies Created
-
wp-json/uap/ (without *) works perfectly!
Thank you!
Hi! Thanks for responding. There is no Plugin, as the WAF is at the server level with my host (WPMUDEV).
The only setting is turning WAF on/off, as well as an Allowlist or Disallowlist.The request for “RULE ID, IP, or anything we can add to the WAF allowlist” came directly from the host as they were working with me to figure out what was blocking the saving of the Send Email action.
Forum: Plugins
In reply to: [Meta for WooCommerce] Do not sync Primary image when using Custom ImageForm sent! 🙂
Forum: Plugins
In reply to: [Meta for WooCommerce] Do not sync Primary image when using Custom ImageHi Simon!
Yes I am using the Facebook > Facebook Product Image > Use Custom Image setting for the custom image.
And yes, I did sync the product before adjusting the settings.
Forum: Plugins
In reply to: [Meta for WooCommerce] Not able to get this to workFollowing. Having the same issue.
Incognito did not work.
Forum: Plugins
In reply to: [ShipStation for WooCommerce] Plugin NotificationsThis shouldn’t even be a feature request. It should be standard. If ship station is set up, the notice should go away.
- This reply was modified 6 years, 2 months ago by nward85.
If you don’t want to use the code snippets plugin, you can apply the code to a functions.php file in your mu-plugins folder
Forum: Reviews
In reply to: [WooCommerce Admin] Seems greatBasically any order details, etc. for when users do not want to register. Sales have increased since we disabled registrations. Maybe a way to sort by emails?
Following
Everything is set correctly.
I’ve tested on a fresh install and it does the same thing.Okay so I asked my site administrators to detail what they did over the last few days.
Turns out the emails are being sent to them when they assign a password upon registering a new user, or changing another users password.
This is being done in the Dashboard.
First I don’t know why it would email when adding a new user.
Second I don’t know why it would email the person changing the password and not the user whose password was changed.
- This reply was modified 8 years, 5 months ago by nward85.
So the fact I purchased the extensions has nothing to do with it?
It is hard coded in the UM files this way. When viewing comments the default avatar does not show.
Forum: Plugins
In reply to: [WooCommerce] Custom Product Type TemplateI already copied to my theme. So far the only code online I found is:
<?php while ( have_posts() ) : the_post(); ?> <?php if ( is_product( 'listing' ) ) { woocommerce_get_template_part( 'content', 'single-product-listing' ); }else{ woocommerce_get_template_part( 'content', 'single-product' ); } ?> <?php endwhile; // end of the loop. ?>But it does not work. Any ideas?
Forum: Plugins
In reply to: [WooCommerce] Retrieve user data on/after checkoutThats okay, love the challenge, and it helps me learn more as I go.
Figured it out
function user_favorite_scent_1( $order_id ) { $meta_value = get_user_meta( get_current_user_id(), 'favorite_scent_1', true ); update_post_meta($order_id, 'favorite_scent_1', $meta_value); }Had the user meta key wrong
THANK YOU SO MUCH!