Title: Godson Obiazi's Replies | WordPress.org

---

# Godson Obiazi

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Social Share, Social Login and Social Comments Plugin - Super Socializer] Social Sharing Mycred Issue](https://wordpress.org/support/topic/social-sharing-mycred-issue/)
 *  [Godson Obiazi](https://wordpress.org/support/users/x3coded/)
 * (@x3coded)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/social-sharing-mycred-issue/#post-13324195)
 * I have same issue.
    If you can tell us where the Mycred “mref” script is in the
   super socializer, I’m sure we can do some changes to make it work.
 * The script below works for jetpack share buttons but I’m using Super Socializer
   Share buttons.
 * Your recommendation is highly required and appreciated.
 * add_filter( ‘sharing_permalink’, ‘mycred_pro_insert_ref_in_jetpack_share’ );
   
   function mycred_pro_insert_ref_in_jetpack_share( $url ) {
 *  // Cant do anything for visitors
    if ( ! is_user_logged_in() ) return $url;
 *  // Get users ref ID (if using numeric IDs)
    $ref_id = get_user_meta( get_current_user_id(),‘
   mycred_affiliate_link’, true ); if ( $ref_id == ” ) return $url;
 *  // Get users ref ID (is using username)
    //$user = wp_get_current_user(); //
   $ref_id = urlencode( $user->user_login );
 *  return add_query_arg( array( ‘mref’ => $ref_id ), $url );
 * }
 * //END OF SCRIPT
 * #THANKS
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Wallet for WooCommerce] How to disable partial payment for products that cannot be purchased with wallet](https://wordpress.org/support/topic/how-to-disable-partial-payments-for-product-that-cannot-be-purchased-with-wallet/)
 *  [Godson Obiazi](https://wordpress.org/support/users/x3coded/)
 * (@x3coded)
 * [6 years ago](https://wordpress.org/support/topic/how-to-disable-partial-payments-for-product-that-cannot-be-purchased-with-wallet/#post-12909378)
 * Hi [@creaweb2b](https://wordpress.org/support/users/creaweb2b/) . Thanks for 
   This Code: add_filter(‘woo_wallet_disable_partial_payment’, ‘__return_true’);
 * It worked for me but I had to Modify it first by changing ‘ to ‘ as seen below.
 * add_filter(‘woo_wallet_disable_partial_payment’, ‘__return_true’);

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