Conversation
supportI can not execute shortcode via do_shortcode('[imgtxt type=text]65456[/imgtxt]') Result: http://i.imgur.com/DRGtKq8.png https://wordpress.org/plugins/imagetext/
<td align="left" valign="top">Téléphone fix: </td> <td align="left" valign="top"><?= do_shortcode('[imgtxt type=text]'.the_field( "telephone_fix" ).'[/imgtxt]') ?></td>
The do_shortcode filter ( http://codex.wordpress.org/Function_Reference/do_shortcode ) is not implementated yet, the tags must be used without do_shortcode. For using the functionality in plain PHP files you can use the get-method in the link class
<td align="left" valign="top">Téléphone fix: </td> <td align="left" valign="top"><?= do_shortcode('[imgtxt type=text]'.the_field( "telephone_fix" ).'[/imgtxt]') ?></td>
The do_shortcode filter ( http://codex.wordpress.org/Function_Reference/do_shortcode ) is not implementated yet, the tags must be used without do_shortcode. For using the functionality in plain PHP files you can use the get-method in the link class