Shakeeb Sadikeen
Forum Replies Created
-
Forum: Plugins
In reply to: [RapidLoad AI - Optimize Web Vitals Automatically] MultisitesHey Mike,
We haven’t tested the plugin with a multisite. Ill update you with a progress in this thread.
Thanks.
Marking this as resolved as we tightened the security of our website. please feel free to open this again if you found anything related.
Thank you for pointing this out.
Hey gna,
Thank you for this support ticket.
unusedcss.io
is just our website with information regarding our service and information related to it. the service runs on a separate instance and it is 100% secured.the plugin doesn’t rely on
unusedcss.io
domain it relies onapp.unusedcss.io
domain.We are working on tightening the security of our website.
Please feel free to let us know if you have any questions.
Good day!
Forum: Plugins
In reply to: [WP CDN Rewrite] Undefined variable: thisCheck whether WP DEBUG turned on or not.. that might cause this problem
sorry for the late Reply.. been bit busy and THANK YOU VERY MUCH for your support
Thank you ONCE AGAIN for this Awesome Plugin.
I managed to add a custom field to products and as you mentioned above looped through it.it worked fine.
function addPointsOnPorderSuccuss($order_id) { $user_id = get_current_user_id(); $order = new WC_Order( $order_id ); $items = $order->get_items(); $totalVp = 0; foreach ( $items as $item ) { $product_id = $item['product_id']; $product_qty = $item['qty']; $vp = get_post_meta($product_id, 'vPoint', true); $vp = $vp * $product_qty; $totalVp = $totalVp + $vp; } //echo $totalVp ; if(is_user_logged_in()){ mycred_add( 'Order_Complete', $user_id, $totalVp, 'Earned ' . $totalVp . 'vPoints for Order #'.$order_id, $order_id ); } } add_action( 'woocommerce_order_status_complete', 'addPointsOnPorderSuccuss' );
Using above code i managed to add the points. but now when i am trying to give badges its not working. actually i am bit confused. can you please help me ??
Thank you for the Awesome Plugin. I need to do the same thing @gtrout trying.. is it possible now ??