Peter
Forum Replies Created
-
Forum: Plugins
In reply to: [Judge.me Product Reviews for WooCommerce] Hide TimestampHello,
I was able to turn timestamps off:
Review Widget > Widget Body > Review Timestamps
A lot of your guidance is for Shopify, however we are using WordPress. Can you provide a link to documentation for adding the carousel to a page in WordPress?
Thanks
First, thanks for a great plugin and for such a fast response.
I did click both links. Forvive me, I do not see the difference in the browser, but I do understand the url structure.
Thanks
Forum: Fixing WordPress
In reply to: Plugin or Extension Statistics on How Often Files AccessedThanks for that. Might be more that we need.
Just want to know how many times a video that’s hosted on our site has been viewed on our site.
Forum: Plugins
In reply to: [WooCommerce Cart Abandonment Recovery] Notify Admin or Store ManagerThanks
Is there as way to notify the admin or shop manager about the abandoned cart without using Zapier?
Forum: Plugins
In reply to: [WooCommerce Cart Abandonment Recovery] Shop Manager RightsWe would like this feature too.
Is there a temporary work-around?
Forum: Fixing WordPress
In reply to: Warning: WP_HOME Constant Contains A VariableWe chose “b)” and all seems well.
Thank you.
- This reply was modified 4 years, 9 months ago by Peter.
Yes, If you noticed in the thread of the first question, I was asked to post here in your forum by the WordPress moderator.
- This reply was modified 4 years, 9 months ago by Peter.
Forum: Fixing WordPress
In reply to: Warning: WP_HOME Constant Contains A VariableIt’s only an external host.
The site was moved from a shared hosting account to an AWS Lightsail Instance with Bitnami about a year ago; it should have never been a localhost, unless that was something that the former hosting company used in the shared hosting environment.
I followed your suggestion and posted in the plugin forum as well.
Thanks
- This reply was modified 4 years, 9 months ago by Peter.
Forum: Fixing WordPress
In reply to: Warning: WP_HOME Constant Contains A VariableHello @sterndata
Thanks for that; I have no idea if it’s a legitimate use of a variable. That is why I have posted here.
You’re stating that the use of the variable is customary and correct?
You also state that the plugin is correct to complain about the variable’s use, so I seek clarity.
Forum: Plugins
In reply to: [Code Snippets] Snippets by Added by Plugin?Ok, the behavior I am referring to did not seem to occur during an upgrade. The plugin has been installed since Sept. 2019.
For some reason all five snippets were created on the same date and they were all the same. Basically five copies of the same thing.
We can just delete them I suppose?
Thanks
@davidanderson I was trying to turn off (in whatever was using it) so that I could turn on in WP-Optimize as a test to see what performed better.
I have no idea where it is enabled, unless it’s in the server side
Forum: Plugins
In reply to: [Code Snippets] Snippet to Inhibit Emails to CustomerThanks.
For the benefit of others, Here is the code that works:
//** Inhibit WooCommerce Emails to Customer when user is admin **// add_action( 'woocommerce_email', 'unhook_emails_for_admin' ); function unhook_emails_for_admin( $email_class ) { $user = wp_get_current_user(); if ( in_array( 'administrator', (array) $user->roles ) ) { // New order emails remove_action( 'woocommerce_order_status_pending_to_processing_notification', array( $email_class->emails['WC_Email_New_Order'], 'trigger' ) ); remove_action( 'woocommerce_order_status_pending_to_completed_notification', array( $email_class->emails['WC_Email_New_Order'], 'trigger' ) ); remove_action( 'woocommerce_order_status_pending_to_on-hold_notification', array( $email_class->emails['WC_Email_New_Order'], 'trigger' ) ); remove_action( 'woocommerce_order_status_failed_to_processing_notification', array( $email_class->emails['WC_Email_New_Order'], 'trigger' ) ); remove_action( 'woocommerce_order_status_failed_to_completed_notification', array( $email_class->emails['WC_Email_New_Order'], 'trigger' ) ); remove_action( 'woocommerce_order_status_failed_to_on-hold_notification', array( $email_class->emails['WC_Email_New_Order'], 'trigger' ) ); // Processing order emails remove_action( 'woocommerce_order_status_pending_to_processing_notification', array( $email_class->emails['WC_Email_Customer_Processing_Order'], 'trigger' ) ); remove_action( 'woocommerce_order_status_pending_to_on-hold_notification', array( $email_class->emails['WC_Email_Customer_Processing_Order'], 'trigger' ) ); // Completed order emails remove_action( 'woocommerce_order_status_completed_notification', array( $email_class->emails['WC_Email_Customer_Completed_Order'], 'trigger' ) ); // Note emails remove_action( 'woocommerce_new_customer_note_notification', array( $email_class->emails['WC_Email_Customer_Note'], 'trigger' ) ); } }
- This reply was modified 5 years, 3 months ago by Peter.