Title: Shortcode
Last modified: July 13, 2022

---

# Shortcode

 *  Resolved [mynetflixtain](https://wordpress.org/support/users/mynetflixtain/)
 * (@mynetflixtain)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/shortcode-894/)
 * The shortcode isn’t working for the wallet transfer and wallet Transactions. 
   I pasted it correctly but shows fatal error in the front end
 * [https://gist.github.com/malsubrata/a84b8a6eae0f02873d9c7d576f5c7ec1](https://gist.github.com/malsubrata/a84b8a6eae0f02873d9c7d576f5c7ec1)
 * [https://gist.github.com/malsubrata/003fc3e9b017b1b2ac0ae2c90ef42c8d](https://gist.github.com/malsubrata/003fc3e9b017b1b2ac0ae2c90ef42c8d)
 * Also, please what shortcode can I use for wallet top up ?

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

 *  Plugin Author [Subrata Mal](https://wordpress.org/support/users/subratamal/)
 * (@subratamal)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/shortcode-894/#post-15821691)
 * [@mynetflixtain](https://wordpress.org/support/users/mynetflixtain/) Please try
   to put those codes in the theme functions.php file.
 * And here is the shortcode for wallet top-up [https://gist.github.com/malsubrata/be5a4314956117a773e2b9423b4067dc](https://gist.github.com/malsubrata/be5a4314956117a773e2b9423b4067dc)
 *  Thread Starter [mynetflixtain](https://wordpress.org/support/users/mynetflixtain/)
 * (@mynetflixtain)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/shortcode-894/#post-15821732)
 * I have put them in the function.php .but I get same error on the front end. After
   putting them on the function.php file
 * Please, specify the exact shortcode I should use in pages or post
 *  Plugin Author [Subrata Mal](https://wordpress.org/support/users/subratamal/)
 * (@subratamal)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/shortcode-894/#post-15821753)
 * For transactions use `[terawallet-transactions]`.
    For Transfer use `[terawallet-
   transfer]`. For topup use `[terawallet-topup]`.
 *  Thread Starter [mynetflixtain](https://wordpress.org/support/users/mynetflixtain/)
 * (@mynetflixtain)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/shortcode-894/#post-15821790)
 * Lovely..you are 😍 adorable.it works now … please, how do I change the text- 
   wallet transfer, wallet top up and wallet wallet Transactions.
 *  Plugin Author [Subrata Mal](https://wordpress.org/support/users/subratamal/)
 * (@subratamal)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/shortcode-894/#post-15821891)
 * [@mynetflixtain](https://wordpress.org/support/users/mynetflixtain/) Could you
   please share a screenshot of that?
 *  Thread Starter [mynetflixtain](https://wordpress.org/support/users/mynetflixtain/)
 * (@mynetflixtain)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/shortcode-894/#post-15821995)
 * Here is a link on the screenshot request🙏🏽, I couldn’t upload it directly
    
   [https://www.screencast.com/t/nON4ZJGx8X6](https://www.screencast.com/t/nON4ZJGx8X6)
 * Second, I noticed that when I used the shortcode [ mini_ wallet] it displays 
   the balance but when it’s being clicked upon it redirects. Is it possible for
   it not be a link that redirects, only the balance,
    Thanks.
 *  Plugin Author [Subrata Mal](https://wordpress.org/support/users/subratamal/)
 * (@subratamal)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/shortcode-894/#post-15822255)
 * [@mynetflixtain](https://wordpress.org/support/users/mynetflixtain/) For this,
   you have to override the wallet dashboard template in the theme folder.
 *  Thread Starter [mynetflixtain](https://wordpress.org/support/users/mynetflixtain/)
 * (@mynetflixtain)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/shortcode-894/#post-15822269)
 * Okay, please how do I do the overrides,
 * Second, I noticed that when I used the shortcode [ mini_ wallet] it displays 
   the balance but when it’s being clicked upon it redirects. Is it possible for
   it not be a link that redirects, only the balance,
    Thanks.
 *  Plugin Author [Subrata Mal](https://wordpress.org/support/users/subratamal/)
 * (@subratamal)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/shortcode-894/#post-15822445)
 * [@mynetflixtain](https://wordpress.org/support/users/mynetflixtain/) Just cope`
   wc-endpoint-wallet.php` template file from `woo-wallet/templates` folder and 
   put it into `yourtheme/woo-wallet/` folder. After that do the necessary changes.
   If you are not familiar with coding then please contact with theme developer.
 *  Thread Starter [mynetflixtain](https://wordpress.org/support/users/mynetflixtain/)
 * (@mynetflixtain)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/shortcode-894/#post-15894824)
 * when I used the shortcode [ mini_ wallet] it displays the balance but when it’s
   being clicked upon it redirects. Is it possible for it not be a link that redirects,
   only the balance,
    Thanks.
 *  Plugin Author [Subrata Mal](https://wordpress.org/support/users/subratamal/)
 * (@subratamal)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/shortcode-894/#post-15901733)
 * [@mynetflixtain](https://wordpress.org/support/users/mynetflixtain/) You can 
   use the attached javascript code to disable click
 *     ```
       jQuery(function ($) {
       		$('.woo-wallet-menu-contents').on('click', function(e){
       			e.preventDefault();
       		});
       	});
       ```
   
 *  Thread Starter [mynetflixtain](https://wordpress.org/support/users/mynetflixtain/)
 * (@mynetflixtain)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/shortcode-894/#post-15904833)
 * How do I use it, where should I paste it.
 *  Plugin Author [Subrata Mal](https://wordpress.org/support/users/subratamal/)
 * (@subratamal)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/shortcode-894/#post-15908569)
 * [@mynetflixtain](https://wordpress.org/support/users/mynetflixtain/) Please contact
   your theme developer.
 *  Thread Starter [mynetflixtain](https://wordpress.org/support/users/mynetflixtain/)
 * (@mynetflixtain)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/shortcode-894/#post-15909595)
 * I am referring to your plugin not a customization. I meant that the balance if
   clicked on redirects. I only want to show the balance on my website , even when
   it is clicked on , it should not redirects the users.

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

The topic ‘Shortcode’ is closed to new replies.

 * ![](https://ps.w.org/woo-wallet/assets/icon-256x256.png?rev=3360666)
 * [Wallet for WooCommerce](https://wordpress.org/plugins/woo-wallet/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woo-wallet/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woo-wallet/)
 * [Active Topics](https://wordpress.org/support/plugin/woo-wallet/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woo-wallet/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woo-wallet/reviews/)

 * 14 replies
 * 2 participants
 * Last reply from: [mynetflixtain](https://wordpress.org/support/users/mynetflixtain/)
 * Last activity: [3 years, 10 months ago](https://wordpress.org/support/topic/shortcode-894/#post-15909595)
 * Status: resolved