Viewing 4 replies - 1 through 4 (of 4 total)
  • It requires custom code, here is an example:
    Replace your-custom-field with your own custom field

    /* WPTelegram Modify default inline button */
    add_filter(
    	'wptelegram_p2tg_default_inline_button',
    	function ( $button, $post ) {
    
    		// set the URL from custom field
    		$button['url'] = get_post_meta( $post->ID, 'your-custom-field', true );
    
    		$button['text'] = 'Buy Now';
    
    		return $button;
    
    	},
    	10,
    	2
    );
    /* WPTelegram Modify default inline button */
    Thread Starter rjrawat124

    (@rjrawat124)

    where to add this code ?

    You can add it to functions.php of your active/child theme

    Thread Starter rjrawat124

    (@rjrawat124)

    Thanks It works 🙂

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

The topic ‘inline button url’ is closed to new replies.