pandamedia
Forum Replies Created
-
Hi, any news on that? The updates did not fix it yet.
Hi,
Sorry for the delay, I did not have time to reproduce the issue and send it to you.
Issue seemed fixed now, I updated to last version 2.0.4 and it’s working again ??
I will take your email into account for next inquiries.
Thanks
Forum: Plugins
In reply to: [WPMasterToolKit (WPMTK) - All in one plugin] Nouvelles fonctionnalitésHello Ludwig, merci pour tes réponses !
J’avais complètement zappé aussi la fonctionnalité pour mettre les plugins actifs en tête de liste des plugins, assez game changer quand ils sont nombreux pendant les tests.
Merci pour cette extension très complète, je vais l’installer sur tous mes sites en remplacement d’ASE.
Forum: Plugins
In reply to: [Tutor LMS - eLearning and online course solution] Zapier + Auto EnrollmentIn case someone needs this, I solved it myself after looking at the documentation.
/** * Autocomplete orders and enroll students * */ function auto_update_orders_status_from_processing_to_completed(){ global $wpdb; // Get all current "processing" customer orders $processing_orders = wc_get_orders( $args = array( 'numberposts' => -1, 'post_status' => 'wc-processing', ) ); // If there are processing orders if(!empty($processing_orders)) { // Browse orders foreach($processing_orders as $order) // Update the order to completed $order->update_status( 'completed' ); // Get order ID and WooCommerce order ID $order_id = $order->ID; $order = wc_get_order( $order_id ); // Get User ID From Order $user = $order->get_user(); $user_id = $order->get_user_id(); // Get product from order $items = $order->get_items(); // Browse products foreach ( $items as $item ) { // Product ID $product_id = $item->get_product_id(); echo $user_id; // Retrive Related Course ID $sql = "SELECT post_id FROM jungle_postmeta WHERE meta_key = '_tutor_course_product_id' AND meta_value = $product_id"; $results = $wpdb->get_results($sql); $course_id = $results[0]->post_id; // Enroll user $title = __('Course Enrolled', 'tutor')." – ".date_i18n(get_option('date_format')) .' @ '.date_i18n(get_option('time_format') ) ; $enrolment_status = 'completed'; $enroll_data = apply_filters('tutor_enroll_data', array( 'post_type' => 'tutor_enrolled', 'post_title' => $title, 'post_status' => $enrolment_status, 'post_author' => $user_id, 'post_parent' => $course_id, ) ); // Insert the post into the database $isEnrolled = wp_insert_post( $enroll_data ); update_user_meta( $user_id, '_is_tutor_student', time() ); update_post_meta( $isEnrolled, '_tutor_enrolled_by_order_id', $order_id ); update_post_meta( $isEnrolled, '_tutor_enrolled_by_product_id', $product_id ); update_post_meta( $order_id, '_is_tutor_order_for_course', time() ); update_post_meta( $order_id, '_tutor_order_for_course_id_'.$course_id, $order_id ); } } } add_action( 'init', 'auto_update_orders_status_from_processing_to_completed' ); add_action( 'woocommerce_payment_complete_order_status', 'wc_auto_complete_paid_order', 10, 3 ); function wc_auto_complete_paid_order( $status, $order_id, $order ) { if ( ! $order->has_status('completed') && $order->get_meta('_order_processed') != 'yes') { $order->update_meta_data('_order_processed', 'yes'); $status = 'completed'; } return $status; }
Hope it can help someone !
Cheers and merry xmas ??
Forum: Plugins
In reply to: [Yoast SEO] Missing Product Categories in Sitemap@mazedulislamkhan
Already did that but they don’t want to.I will close the issue cheers.
Forum: Plugins
In reply to: [Yoast SEO] Missing Product Categories in SitemapI finally found the culprit which was : “Hide WooCommerce Categories On Shop Page”
It seems that is messes up with Yoast.
About my URLs showing up in thread, you mentioned “We will also work on hiding these URLs here too.”, can you help in the end? It seems it is not possible.
Forum: Plugins
In reply to: [Yoast SEO] Missing Product Categories in SitemapHi,
I actually have the same problem with Yoast regular version, nothing changes.
I put the regular version back and I would appreciate you to answer the issue here as it could help other users troubleshooting ??
Thanks in advance
Forum: Plugins
In reply to: [Yoast SEO] Missing Product Categories in SitemapHi,
So here is the sitemap:
https://www.chausson-rigolo.fr/product_cat-sitemap.xmlHere are the categories that are not appearing in it:
https://www.chausson-rigolo.fr/chausson-drole/
https://www.chausson-rigolo.fr/chausson-fantaisie/
https://www.chausson-rigolo.fr/chausson-humoristique-et-humour/
https://www.chausson-rigolo.fr/chausson-original/By “hidden”, I mean from a SEO point of view.
Otherwise they are accessible normally.PS: I would appreciate my URLs to be hidden after we will find a solution to the problem
- This reply was modified 3 years, 11 months ago by pandamedia.
- This reply was modified 3 years, 11 months ago by pandamedia.
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Contact Form 7 IntegrationHi,
It was checked on CF7 but not on Custom integration.
Disabling it on CF7 did the trick for both !
Thanks a lot !
Cheers ??
- This reply was modified 3 years, 11 months ago by pandamedia.
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Contact Form 7 IntegrationHi,
In fact I tried both integrations without success. For both integrations, I checked same Mailchimp’s list.
So I just tried again on my newsletter form (only 1 email field + submit button) :
– Custom Integration code :
<p><input type=”hidden” name=”mc4wp-subscribe” value=”1″ /></p>
=> I checked source code to be sure that the input was there
=> not working, no data is sent to Mailchimp– CF7 integration :
[mc4wp_checkbox]
=> checkbox appears on front, I checked it then submitted the form
=> not working, no data is sent to MailchimpI just checked logs after ticking “Everything” and here is the output:
[2020-12-03 11:56:33] INFO: Contact Form 7 > Successfully subscribed test@te**.fr
[2020-12-03 11:57:29] INFO: Contact Form 7 > Successfully subscribed test*@te**.frHowever when I go in Mailchimp, those subscribers don’t appear in my audience.
I can’t understand what’s happening :/