Hi, I create a shortcode that shows a custom form maded with html, but when i put the shortcode in Pro/cornerstone as a text, blank html… it shows basically the text that says “[shortcodename]”. How can I create a custom shortcode and display all its content in pro? Thanks.
Example:
public function showCalc()
{
$content = '<div class="wrap"><h1>Hola</h1></div>';
echo $content;
} add_shortcode('calculadora','showCalc');
And the result:
Need help, thanks!