roghithsam
Forum Replies Created
-
How to add withdrawal fee for points withdrawal
[mycred_give amount=10 user_id=”current” limit=”5” log=”Bonus points for reading our special article” ref=”bonus_points”]
Points credits after reach the limit
Forum: Plugins
In reply to: [Wallet for WooCommerce] Referral credit after order completed (not work)ok, Thank You For Your Support
Forum: Plugins
In reply to: [WooCommerce] email when meta value changethe code i used for custom field
add_action( 'woocommerce_product_options_advanced', 'ws_adv_product_options'); function ws_adv_product_options(){ echo '<div class="options_group">'; woocommerce_wp_text_input( array( 'id' => 'winner_select', 'value' => get_post_meta( get_the_ID(), 'winner_select', true ), 'label' => 'Winner Name' ) ); echo '</div>'; } add_action( 'woocommerce_process_product_meta', 'ws_save_fields', 10, 2 ); function ws_save_fields( $id, $post ){ if( !empty( $_POST['winner_select'] ) ) { update_post_meta( $id, 'winner_select', $_POST['winner_select'] ); } else { delete_post_meta( $id, 'winner_select' ); } }
If the winner’s name is entered in the field and the product is updated. A mail should be sent to all users who have previously purchased the product
mail content
Subject: Lucky Winner Selected for [product name]
message: some text [winner name]- This reply was modified 3 years ago by roghithsam.
- This reply was modified 3 years ago by roghithsam.
Forum: Plugins
In reply to: [Paytm - Donation Plugin] Transaction feescharges for transactions are the same as described here
https://business.paytm.com/pricingImage Of the donation form (marked in red line box)https://prnt.sc/1v65lzf
Forum: Plugins
In reply to: [Paytm - Donation Plugin] Success MessageYes I know messages appear on Call back page but We want to show the success/error messages below or above the donation form
@gispatterson Try this,
If You are using itheme security plugin disable/uncheck the (Disable PHP in Plugins) options
Wp-admin menu > security > settings > Advanced > system tweaks > PHP Execution > Disable PHP in PluginsForum: Plugins
In reply to: [Simple Ajax Chat – Add a Fast, Secure Chat Box] 403 – Forbidden@woocreative Try this,
If You are using itheme security plugin disable/uncheck the (Disable PHP in Plugins) options
Wp-admin menu > security > settings > Advanced > system tweaks > PHP Execution > Disable PHP in PluginsForum: Plugins
In reply to: [Wallet for WooCommerce] Referral credit after order completed (not work)@subratamal
did you understand what I said?Forum: Plugins
In reply to: [Wallet for WooCommerce] Referral credit after order completed (not work)@subratamal
no, money credited before the order status completely.Try this you can understand what I say.
create a new account with a referral link and money to wallet greater than the fixed referral amount and process the checkout, fill the billing details and click to proceed
it redirect to the payment page (but you do not make the payment) cancel the payment and go to woocommerce my account – > orders the wallet top-up in pending payment status cancel that order
now check your referred account the referral amount is creditd to the userany shortcode available for profile upload options or how to set the user to upload profile option in account page instead of profile->edit profile
and
how to disable the tab posts for subscriber accounts because subscriber can not post a article.
example if user visit author profile the post tab show and if user visit the subscriber probile the post tab hide.3. how to change the directory to save user profiles or disable indexing profile from media page.
Forum: Plugins
In reply to: [Wallet for WooCommerce] Referral credit for failed orderyes @abdulal it’s true and it a serious problem
if the new customer processed to payment and canceled the order and the order value is greater than the referral order amount and in failed or canceled status referred users get the referral amount.
how to stop it.`
Forum: Plugins
In reply to: [Wallet for WooCommerce] Referral credit after order completed (not work)add_filter('woocommerce_order_is_paid_statuses', 'woocommerce_order_is_paid_statuses_callback', 9999); if(!function_exists('woocommerce_order_is_paid_statuses_callback')){ function woocommerce_order_is_paid_statuses_callback(){ return array( 'completed' ); } }
this code not worked.
installed plugins: woo-commerce, woo wallet only no plugin or theme conflict.if the new customer processed to payment and canceled the order and the order failed or cancelled status referred users get the referral amount
Forum: Plugins
In reply to: [Wallet for WooCommerce] Referral credit after order completed (not work)@subratamal in theme/functions.php file