Title: rienco's Replies | WordPress.org

---

# rienco

  [  ](https://wordpress.org/support/users/rienco/)

 *   [Profile](https://wordpress.org/support/users/rienco/)
 *   [Topics Started](https://wordpress.org/support/users/rienco/topics/)
 *   [Replies Created](https://wordpress.org/support/users/rienco/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/rienco/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/rienco/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/rienco/engagements/)
 *   [Favorites](https://wordpress.org/support/users/rienco/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 28 total)

1 [2](https://wordpress.org/support/users/rienco/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/rienco/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] Event calendar memory issue](https://wordpress.org/support/topic/event-calendar-memory-issue/)
 *  [rienco](https://wordpress.org/support/users/rienco/)
 * (@rienco)
 * [2 months ago](https://wordpress.org/support/topic/event-calendar-memory-issue/#post-18957349)
 * Same issue here, even with a brand new installation.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MyParcel] Error: Invalid order note data provided](https://wordpress.org/support/topic/error-invalid-order-note-data-provided/)
 *  Thread Starter [rienco](https://wordpress.org/support/users/rienco/)
 * (@rienco)
 * [8 months ago](https://wordpress.org/support/topic/error-invalid-order-note-data-provided/#post-18779065)
 * Bedankt, ook in de live omgeving lijkt het weer te werken.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MyParcel] Error: Invalid order note data provided](https://wordpress.org/support/topic/error-invalid-order-note-data-provided/)
 *  Thread Starter [rienco](https://wordpress.org/support/users/rienco/)
 * (@rienco)
 * [8 months ago](https://wordpress.org/support/topic/error-invalid-order-note-data-provided/#post-18776432)
 * [@joerimyparcel](https://wordpress.org/support/users/joerimyparcel/) dit lijkt
   inderdaad te werken, waar kan ik deze versie vinden? WP geeft niet aan dat er
   een update beschikbaar is.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MyParcel] Error: Invalid order note data provided](https://wordpress.org/support/topic/error-invalid-order-note-data-provided/)
 *  Thread Starter [rienco](https://wordpress.org/support/users/rienco/)
 * (@rienco)
 * [8 months ago](https://wordpress.org/support/topic/error-invalid-order-note-data-provided/#post-18775956)
 * Hoi Joeri,
 * Bedankt voor je reactie
    - Ordermodus staat inderdaad aan
    - Bij Automatisch verwerken staat de status “In de wacht”
    - De vier keuzes zijn respectievelijk: Afgerond | Geen | Geen | Geen
    - Ik stuur jullie een link naar onze stagingomgeving.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MyParcel] Error: Invalid order note data provided](https://wordpress.org/support/topic/error-invalid-order-note-data-provided/)
 *  Thread Starter [rienco](https://wordpress.org/support/users/rienco/)
 * (@rienco)
 * [8 months, 3 weeks ago](https://wordpress.org/support/topic/error-invalid-order-note-data-provided/#post-18762093)
 * Hi Joeri,
 * We hebben nog steeds gedeeltelijk dit probleem. Op het moment we de status wijzigen
   via een custom order status die via de backend besteloverzichtspagina aangepast
   kan worden geeft deze nog steeds dezelfde foutmelding. Dit is de code die we 
   hiervoor gebruiken:
 *     ```wp-block-code
       <?php/** * Plugin Name: Custom Order Status Buttons * Description: Voeg twee aangepaste orderstatussen toe (Betaald en Afgerond, wacht op betaling) met snelle actieknoppen in het WooCommerce bestellingenoverzicht. * Author: Rienco | Teqz * Version: 1.0 */if (!defined('ABSPATH')) exit;// 1. Registreer aangepaste statussenadd_action('init', function() {register_post_status('wc-betaald', ['label' => 'Betaald','public' => true,'show_in_admin_all_list' => true,'show_in_admin_status_list' => true,'label_count' => _n_noop('Betaald <span class="count">(%s)</span>', 'Betaald <span class="count">(%s)</span>'),]);register_post_status('wc-afgerond-wacht-op', ['label' => 'Afgerond, wacht op betaling','public' => true,'show_in_admin_all_list' => true,'show_in_admin_status_list' => true,'label_count' => _n_noop('Afgerond, wacht op betaling <span class="count">(%s)</span>', 'Afgerond, wacht op betaling <span class="count">(%s)</span>'),]);});add_filter('wc_order_statuses', function($statuses) {$statuses['wc-betaald'] = 'Betaald';$statuses['wc-afgerond-wacht-op'] = 'Afgerond, wacht op betaling';return $statuses;});// 2. Voeg knoppen toe aan het bestellingenoverzichtadd_filter('woocommerce_admin_order_actions', function($actions, $order) {if ($order->get_status() !== 'betaald') {$actions['mark_betaald'] = ['url' => wp_nonce_url(admin_url('admin-ajax.php?action=mark_order_status&status=betaald&order_id=' . $order->get_id()), 'mark_order_status'),'name' => __('Markeer als Betaald', 'custom-order-status-buttons'),'action' => 'mark_betaald',];}if ($order->get_status() !== 'afgerond-wacht-op') {$actions['mark_afgerond_wacht_op'] = ['url' => wp_nonce_url(admin_url('admin-ajax.php?action=mark_order_status&status=afgerond-wacht-op&order_id=' . $order->get_id()), 'mark_order_status'),'name' => __('Afgerond, wacht op betaling', 'custom-order-status-buttons'),'action' => 'mark_afgerond_wacht_op',];}return $actions;}, 20, 2);// 3. AJAX handler voor statuswijzigingadd_action('wp_ajax_mark_order_status', function() {if (!current_user_can('edit_shop_orders') || !check_admin_referer('mark_order_status')) {wp_die(__('Geen toegang', 'custom-order-status-buttons'));}$order_id = intval($_GET['order_id'] ?? 0);$status = sanitize_text_field($_GET['status'] ?? '');if (!$order_id || !$status) {wp_die(__('Ongeldige gegevens', 'custom-order-status-buttons'));}$order = wc_get_order($order_id);if (!$order) {wp_die(__('Order niet gevonden', 'custom-order-status-buttons'));}$order->update_status('wc-' . $status, __('Status handmatig gewijzigd via snelactie', 'custom-order-status-buttons'));wp_safe_redirect(wp_get_referer());exit;});// 4. Styling van de knoppenadd_action('admin_head', function() {echo '<style>.wc-action-button.mark_betaald::after {content: "";color: #fff;background: #3bb54a;border-radius: 50%;display: inline-block;width: 20px !important;height: 20px !important;text-align: center;margin: 4px 2px !important;}.wc-action-button.mark_afgerond_wacht_op::after {content: "";color: #fff;background: #f9a825;border-radius: 50%;display: inline-block;width: 20px !important;height: 20px !important;text-align: center;margin: 4px 2px !important;}</style>';});
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mollie Payments for WooCommerce] Order status not updating after recent update of Mollie](https://wordpress.org/support/topic/order-status-not-updating-after-recent-update-of-mollie/)
 *  [rienco](https://wordpress.org/support/users/rienco/)
 * (@rienco)
 * [11 months ago](https://wordpress.org/support/topic/order-status-not-updating-after-recent-update-of-mollie/page/2/#post-18675875)
 * [@femiyb](https://wordpress.org/support/users/femiyb/) We have several webshops
   on our 2 Siteground VPSes that still has issues with statusupdate after payment.
   How can I reach you to add the extra details?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mollie Payments for WooCommerce] Order Status not updating](https://wordpress.org/support/topic/order-status-not-updating-8/)
 *  [rienco](https://wordpress.org/support/users/rienco/)
 * (@rienco)
 * [11 months, 1 week ago](https://wordpress.org/support/topic/order-status-not-updating-8/#post-18666594)
 * yes, that’s correct from our side.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mollie Payments for WooCommerce] Order Status not updating](https://wordpress.org/support/topic/order-status-not-updating-8/)
 *  [rienco](https://wordpress.org/support/users/rienco/)
 * (@rienco)
 * [11 months, 1 week ago](https://wordpress.org/support/topic/order-status-not-updating-8/#post-18665245)
 * We have 2 customers with the same problem. Maybe it’s because of the WP 6.8.3
   update?
    -  This reply was modified 11 months, 1 week ago by [rienco](https://wordpress.org/support/users/rienco/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Abandoned Cart Lite for WooCommerce] Small translation issue](https://wordpress.org/support/topic/small-translation-issue/)
 *  Thread Starter [rienco](https://wordpress.org/support/users/rienco/)
 * (@rienco)
 * [11 months, 1 week ago](https://wordpress.org/support/topic/small-translation-issue/#post-18661715)
 * This issue still persists. Any updates about it?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Abandoned Cart Lite for WooCommerce] Small translation issue](https://wordpress.org/support/topic/small-translation-issue/)
 *  Thread Starter [rienco](https://wordpress.org/support/users/rienco/)
 * (@rienco)
 * [1 year ago](https://wordpress.org/support/topic/small-translation-issue/#post-18612570)
 * Unfortunately, when i select the dutch language, i can’t see this phrase:
 * [https://prnt.sc/L-we4ts5Bfat](https://prnt.sc/L-we4ts5Bfat)
 * I will send you an email.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Dynamic Pricing and Discount Rules for WooCommerce] Compatible with plugin Conditional Discounts for WooCommerce](https://wordpress.org/support/topic/compatible-with-plugin-conditional-discounts-for-woocommerce/)
 *  Thread Starter [rienco](https://wordpress.org/support/users/rienco/)
 * (@rienco)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/compatible-with-plugin-conditional-discounts-for-woocommerce/#post-17773473)
 * Unfortunately it doesn’t have the same functionality as your plugin does.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Dynamic Pricing and Discount Rules for WooCommerce] Compatible with plugin Conditional Discounts for WooCommerce](https://wordpress.org/support/topic/compatible-with-plugin-conditional-discounts-for-woocommerce/)
 *  Thread Starter [rienco](https://wordpress.org/support/users/rienco/)
 * (@rienco)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/compatible-with-plugin-conditional-discounts-for-woocommerce/#post-17773374)
 * Yes we know this and it works. However we have the entire website built on the
   other plugin discounts. Is it possible to apply only this rule and remain the
   other discounts from the other plugin that it works both on the same website?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Dynamic Pricing and Discount Rules for WooCommerce] Compatible with plugin Conditional Discounts for WooCommerce](https://wordpress.org/support/topic/compatible-with-plugin-conditional-discounts-for-woocommerce/)
 *  Thread Starter [rienco](https://wordpress.org/support/users/rienco/)
 * (@rienco)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/compatible-with-plugin-conditional-discounts-for-woocommerce/#post-17773280)
 * Hi Algol,
 * Thanks for you quick response.
 * We want to be able to set an agreed fixed price per customer for different products
   in woocommerce, we are currently stuck in that.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Google Maps stuck on Loading](https://wordpress.org/support/topic/google-maps-stuck-on-loading/)
 *  [rienco](https://wordpress.org/support/users/rienco/)
 * (@rienco)
 * [2 years, 5 months ago](https://wordpress.org/support/topic/google-maps-stuck-on-loading/page/2/#post-17561883)
 * [@emilyvansomeren](https://wordpress.org/support/users/emilyvansomeren/) Could
   you please tell us how you fixed it? We’re facing the same problem here. We have
   a Javascript error like this:
 *     ```wp-block-code
       Uncaught (in promise) SyntaxError: Expected property name or '}' in JSON at position 1 (line 1 column 2)at Function.parse as parseJSONat em_maps_load_locations (maps.js:41:23)at HTMLDivElement. (maps.js:136:60)at Function.each (jquery-3.4.1.min.js?ver=3.4.1:2:2777)at k.fn.init.each (jquery-3.4.1.min.js?ver=3.4.1:2:1419)at em_maps (maps.js:136:33)at js?v=quarterly&libraries=places&callback=em_maps&key=AIzaSyA_y7NmQY28SH0ldRcTe6NdZGgjLyTwee8:288:509at js?v=quarterly&libraries=places&callback=em_maps&key=AIzaSyA_y7NmQY28SH0ldRcTe6NdZGgjLyTwee8:288:21
       ```
   
 * It’s a error that occurs on this piece of code:
 *     ```wp-block-code
       function em_maps_load_locations(el){
       var el = jQuery(el);
       var map_id = el.attr('id').replace('em-locations-map-','');
       var em_data = jQuery.parseJSON( el.nextAll('.em-locations-map-coords').first().text() );
       if( em_data == null ){
       var em_data = jQuery.parseJSON( jQuery('#em-locations-map-coords-'+map_id).text() );
       }
       ```
   
 * The JSON looks like this:
 *     ```wp-block-code
       {“em_ajax”:true,”query”:”GlobalEventsMapData”,”width”:”400px”,”height”:”300px”,”id”:486052607}
       ```
   
 * However in my html it parses html entities:
 *     ```wp-block-code
       <div class='em-locations-map-coords' id='em-locations-map-coords-1667966170' style="display:none; visibility:hidden;">{“em_ajax”:true,”query”:”GlobalEventsMapData”,”width”:”400px”,”height”:”300px”,”id”:1667966170}</div>
       ```
   
 * Like this:
 * <div class=’em-locations-map-coords’ id=’em-locations-map-coords-1667966170′ 
   style=”display:none; visibility:hidden;”>{“em_ajax”:true,”query”:”GlobalEventsMapData”,”
   width”:”400px”,”height”:”300px”,”id”:1667966170}</div>
   _**It seems the quotes
   are not the correct opening and closing quotes?**_
    -  This reply was modified 2 years, 5 months ago by [rienco](https://wordpress.org/support/users/rienco/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Pagination never loads](https://wordpress.org/support/topic/pagination-never-loads/)
 *  [rienco](https://wordpress.org/support/users/rienco/)
 * (@rienco)
 * [3 years, 2 months ago](https://wordpress.org/support/topic/pagination-never-loads/#post-16851792)
 * Ah ok, I see.
 * About the other solutions: i don’t use shortcodes to show the pagination or calendar,
   We’re using the basic settings from Events Manager

Viewing 15 replies - 1 through 15 (of 28 total)

1 [2](https://wordpress.org/support/users/rienco/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/rienco/replies/page/2/?output_format=md)