I reply to all queries on the forums and via email, once per day, Monday to Friday (not weekends).

If you are new here, please see some information on how to ask for support. Thank you!

Bulding Table / execute shortcode in PHP

dashed-slug.net Forums Exchange extension support Bulding Table / execute shortcode in PHP

Tagged: ,

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #9752
    LeinAd
    Participant

    i got 403.. i want to ask something about execute shortcode after onclick

    Attachments:
    You must be logged in to view attached files.
    #9755
    alexg
    Keymaster

    Hello,

    If you are trying to modify the UIs, please see the 5.0.0 release notes on how to override the templates.

    I did not understand:

    1. Where did you get a 403? This HTTP error is usually associated with not being logged in or lacking the appropriate permissions.

    2. What do you mean by “execute shortcode”? What are you trying to do?

    Please clarify so I can help.

    thank you

    with regards

    #9756
    LeinAd
    Participant

    Where did you get a 403

    i got it here when i write what i want. i want the address line in the picture above as link to a popup where the coin and qr code is shown (static)

    #9757
    LeinAd
    Participant

    maybe yesterday was something wrong in my network so i got the 403 while posting here. i try again.

    i have the table (shown in the screen) and want to add the rows: deposit, withdraw, move funts, transaktions. and i want to show them as pop up with the [wallets_deposit template=”static” symbol=”BTC” qrsize=”250″] (depostit is an example, but when i find a way to solve this i can use for the other popups too).

    sorry cause double posting

    #9763
    alexg
    Keymaster

    @LeinAd I understand now, thank you.

    You would like to add a button to the deposit-list template, that displays deposit QR codes on a popup. What you are describing would require development, especially the part about popups.

    If you are serious about this, start by copying over templates/deposit-list.php into your theme as described here. Then, you’d need to:
    1. add a now column with the button
    2. capture the button click event
    3. create a popup somehow
    4. in that popup, render the qr code

    If you want to study the code that renders qr codes, it’s here: https://github.com/dashed-slug/wallets/blob/5.0.12/assets/scripts/wallets-ko.js#L286-L322

    Essentially you want to render the qrcode_uri of each coin into your popup element. So, very roughly, something like:

    $('.button','.dashed-slug-wallets.deposit-list' ).click(
    	function() {
    
    		var coin = self.selectedCryptoCoin();
    		if ( 'object' == typeof( coins[ coin ] ) ) {
    
    			// choose to render qrcode_uri if specified, or deposit address string otherwise
    			var qrcode_uri = false;
    			if ( 'string' == typeof( coins[ coin ].deposit_address_qrcode_uri ) ) {
    				qrcode_uri = coins[ coin ].deposit_address_qrcode_uri;
    			} else if ( 'string' == typeof( coins[ coin ].deposit_address ) ) {
    				qrcode_uri = coins[ coin ].deposit_address;
    			}
    			
    			// TODO create/display a popup somehow
    
    			var $popup = $('#popup');
    			$popup.qrcode( {
    				width: $popup.width(),
    				height: $popup.height(),
    				text: qrcode_uri
    			} );
    		}
    	}
    );

    I haven’t tested this, but hopefully you get the general idea. If you want to see the API docs for the qr code library, it’s here:

    https://github.com/jeromeetienne/jquery-qrcode/

    Hope this helps.

    with regards

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.