dat98cbr
Forum Replies Created
-
Forum: Plugins
In reply to: [Relevanssi - A Better Search] User searches statisticsI understand. No worries. Thank you so much for taking the time to reply.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] User searches statisticsThe Predictive search plugin was activated in the backend but not implemented in the frontend.
This seems to have given the effect that it messed up the search statistics. In the backlog for instance, a search for ”Searchstring” gave multiple search hits like this:
”Sea”
”Sear”
”Searc”
”Search”And so on.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] User searches statisticsI understand.
Almost all search words are legit though. I thought bots would generate weird search strings. What is your experience regarding that?
Forum: Plugins
In reply to: [Search, Filters & Merchandising for WooCommerce] Search custom fields?Cool. Thanks!
Forum: Plugins
In reply to: [Relevanssi - A Better Search] How to delete big logs?Thanks. Very nice. I completely forget that there are extra options under the Dashboard.
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Auto add new subscribers from WooCommerce checkoutRight. Thanks!
A WooCommerce coder suggest that we use this hook instead: woocommerce_checkout_order_processed
Still there is something that’s not right though since the new user is not registered as a subscriber anyhow.
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] Auto add new subscribers from WooCommerce checkoutI think the code should look something like this:
‘function my_wc_easymail_add_subscriber ( $cf7 ) {
global $woocommerce;$fields[’email’] = sanitize_email( $woocommerce->posted[‘billing_email’] );
$fields[‘name’] = sanitize_text_field( $woocommerce->posted[‘billing_first_name’].’ ‘.$this->posted[‘billing_last_name’]);
if ( function_exists (‘alo_em_add_subscriber’) && is_email( $fields[’email’] ) ){
alo_em_add_subscriber( $fields, 1, alo_em_get_language(true) );}
}add_action( ‘woocommerce_checkout_customer_userdata’, ‘my_wc_easymail_add_subscriber’ );’
Forum: Plugins
In reply to: [TinyNav] Category menu – first row not workingThat would be cool! Thanks.
Forum: Plugins
In reply to: [SlickQuiz] What character are you quiz@vasq, sorry found nothing.
Forum: Plugins
In reply to: [SlickQuiz] What character are you quizThat would be very cool!
Would you know if there exists a personality quiz plugin for WordPress at this time?
Very cool. Well done! Thanks man.
Forum: Plugins
In reply to: Disable some mail notifications in WoocommerceRight thought I could do it in one hook, but two are needed ??
/** Hook for disabling sending emails during order complete, except downloadable products*/ add_action( 'woocommerce_email', 'unhook_those_pesky_emails' ); add_action('woocommerce_order_status_completed', 'send_download_notification'); function unhook_those_pesky_emails( $email_class) { remove_action('woocommerce_order_status_completed_notification', array(&$email_class, 'customer_completed_order')); } function send_download_notification($order_id) { global $woocommerce; $order = new WC_Order($order_id); if ($order->has_downloadable_item()){ $mailer = $woocommerce->mailer(); $mailer->customer_invoice( $order ); } }
samueljeden, you beat me to it ??
Good luck Mikko. Looking forward about hearing the details.
Forum: Plugins
In reply to: [Facebook] Word Press Comments aren′t shown any moreYumi’s suggestion to activate the comments box and then deactivate it worked for me too. Now my comments ?r back!
Ahh. Now I get it. Many thanks