Title: conceptcorenl's Replies | WordPress.org

---

# conceptcorenl

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Modal] Call emodal close using jquery](https://wordpress.org/support/topic/call-emodal-close-using-jquery/)
 *  Thread Starter [conceptcorenl](https://wordpress.org/support/users/conceptcorenl/)
 * (@conceptcorenl)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/call-emodal-close-using-jquery/#post-7548663)
 * done
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Updare quantity with php not working](https://wordpress.org/support/topic/updare-quantity-with-php-not-working/)
 *  Thread Starter [conceptcorenl](https://wordpress.org/support/users/conceptcorenl/)
 * (@conceptcorenl)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/updare-quantity-with-php-not-working/#post-7531826)
 * Thank you very much for helping me that did the job.
    And I actually did not 
   see the wc_update_order_item_meta function on :[https://docs.woothemes.com/wc-apidocs/](https://docs.woothemes.com/wc-apidocs/).
 * I looked at the classes since that made sense to me.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Updare quantity with php not working](https://wordpress.org/support/topic/updare-quantity-with-php-not-working/)
 *  Thread Starter [conceptcorenl](https://wordpress.org/support/users/conceptcorenl/)
 * (@conceptcorenl)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/updare-quantity-with-php-not-working/#post-7531821)
 * Ok so the update_product function should be written out like :
 *     ```
       /**
        * Verander de order status
        * @var WC_Order
        */
   
       // var_dump($data['metaId']);
       // string(1) “5” 
   
       // var_dump($orderId);
       // string(3) “340”
   
       $order = wc_get_order($orderId);
       $order->update_status($data['order_status']);
       $order->update_product($data['metaId'], $orderId, array('qty' => $data['order_item_qty']));
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Updare quantity with php not working](https://wordpress.org/support/topic/updare-quantity-with-php-not-working/)
 *  Thread Starter [conceptcorenl](https://wordpress.org/support/users/conceptcorenl/)
 * (@conceptcorenl)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/updare-quantity-with-php-not-working/#post-7531817)
 * So the correct code should be :
 *     ```
       /**
       	 * Verander de order status
       	 * @var WC_Order
       	 */
       	$order = wc_get_order($orderId);
       	$order->update_status($data['order_status']);
       	$order->update_product($orderId, $data['metaId'], array('qty' => $data['order_item_qty']));
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Updare quantity with php not working](https://wordpress.org/support/topic/updare-quantity-with-php-not-working/)
 *  Thread Starter [conceptcorenl](https://wordpress.org/support/users/conceptcorenl/)
 * (@conceptcorenl)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/updare-quantity-with-php-not-working/#post-7531816)
 * $orderId dumps : 340 << which also is shown in admin panel at orders.
    $data[‘
   metaId’] dumps : 5 << which corrospodends with the order_item_id
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Updare quantity with php not working](https://wordpress.org/support/topic/updare-quantity-with-php-not-working/)
 *  Thread Starter [conceptcorenl](https://wordpress.org/support/users/conceptcorenl/)
 * (@conceptcorenl)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/updare-quantity-with-php-not-working/#post-7531813)
 * That is strange since it does not update the quantity if I do that.
    This is 
   what I have now :
 *     ```
       /**
        * Update een order voor een klant
        * @param  int $userId  user id
        * @param  int $orderNr order id
        * @return bool          return true or false
        */
       function updateOrder($orderId, $data) {
       var_dump($orderId);
       	/**
       	 * Verander de order status
       	 * @var WC_Order
       	 */
       	$order = new WC_Order($orderId);
       	$order->update_status($data['order_status']);
       	$order->update_product($data['metaId'], array('qty' => $data['order_item_qty']));
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Updare quantity with php not working](https://wordpress.org/support/topic/updare-quantity-with-php-not-working/)
 *  Thread Starter [conceptcorenl](https://wordpress.org/support/users/conceptcorenl/)
 * (@conceptcorenl)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/updare-quantity-with-php-not-working/#post-7531811)
 * and the item id would be : order_item_id, from the wp_woocommerce_order_itemmeta
   table ?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Remove shopping cart prices](https://wordpress.org/support/topic/remove-shopping-cart-prices/)
 *  Thread Starter [conceptcorenl](https://wordpress.org/support/users/conceptcorenl/)
 * (@conceptcorenl)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/remove-shopping-cart-prices/#post-7527686)
 * I have found it, needed to add custom templates to my theme to fix it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Groups - Memberships and Access Control] See if user is in group](https://wordpress.org/support/topic/see-if-user-is-in-group/)
 *  Thread Starter [conceptcorenl](https://wordpress.org/support/users/conceptcorenl/)
 * (@conceptcorenl)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/see-if-user-is-in-group/#post-7527676)
 * Thank you Sir that works perfectly.
 * Best Regards,
    Wouter.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Groups - Memberships and Access Control] add group when user is being created](https://wordpress.org/support/topic/add-group-when-user-is-being-created/)
 *  Thread Starter [conceptcorenl](https://wordpress.org/support/users/conceptcorenl/)
 * (@conceptcorenl)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/add-group-when-user-is-being-created/#post-7524993)
 * Thanks that will do the job !
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] For user order item information](https://wordpress.org/support/topic/for-user-order-item-information/)
 *  Thread Starter [conceptcorenl](https://wordpress.org/support/users/conceptcorenl/)
 * (@conceptcorenl)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/for-user-order-item-information/#post-7524429)
 * I figured it out already thanks to you documentation website.
    I am completely
   new to wordpress so please don’t mind my questions please.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Edit item in order as admin ?](https://wordpress.org/support/topic/edit-item-in-order-as-admin/)
 *  Thread Starter [conceptcorenl](https://wordpress.org/support/users/conceptcorenl/)
 * (@conceptcorenl)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/edit-item-in-order-as-admin/#post-7519972)
 * ok, Thank you for your patience.
 * Have a nice day.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Edit item in order as admin ?](https://wordpress.org/support/topic/edit-item-in-order-as-admin/)
 *  Thread Starter [conceptcorenl](https://wordpress.org/support/users/conceptcorenl/)
 * (@conceptcorenl)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/edit-item-in-order-as-admin/#post-7519965)
 * well it does work with woocommerce.
 * As far as I can see it puts the product ID in _w2p_set_option field in the database.
   
   So I need a way to retrieve that ID I guess.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Edit item in order as admin ?](https://wordpress.org/support/topic/edit-item-in-order-as-admin/)
 *  Thread Starter [conceptcorenl](https://wordpress.org/support/users/conceptcorenl/)
 * (@conceptcorenl)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/edit-item-in-order-as-admin/#post-7519943)
 * Hello Mike,
 * We are using [https://wordpress.org/plugins/pitchprint/](https://wordpress.org/plugins/pitchprint/)
   in out system.
    But we need a way so the client can send trough the design and
   place and order.
 * After that is done we want the funeral employee to be able to succesfully finish
   the order.
 * That being said, We need to collect all editable text that the client has inserted
   and somehow retrieve that when the funeral employee is logged in ?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Groups - Memberships and Access Control] show all users of child group](https://wordpress.org/support/topic/show-all-users-of-child-group/)
 *  Thread Starter [conceptcorenl](https://wordpress.org/support/users/conceptcorenl/)
 * (@conceptcorenl)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/show-all-users-of-child-group/#post-7514082)
 * Hello Antonio B,
 * Thank you for the suggestion.
    I will take a look at it and see if that is what
   I need.
 * Best regards,
    Wouter van Marrum.

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