Hi,
Please contact to your theme author and tell him/her your theme generates “<p></p>” tags for shortcodes. it should be fixed.
Regards,
Averta Support
The theme author spent some time analyzing the problem and suggested this is the real problem:
The slider shortcode callback has a <p> tag. The plugin script is not getting appended to the page content properly.
By default WordPress adds up <p> tag in its content and the plugin must take care of the same.
To get more on this, you can refer : https://codex.ww.wp.xz.cn/Function_Reference/wpautop
Can’t get mine to appear either and it seems many have spent a long time getting it to do just that.And… it was interfering with something else showing on that page and possibly something else I have been troubleshooting for weeks…
Hi,
Our Plugin doesn’t generate any additional tags. This problem belongs to your theme.
Please Put these codes into your theme “function.php”:
remove_filter( 'the_content', 'wpautop' );
add_filter( 'the_content', 'wpautop' , 99);
add_filter( 'the_content', 'shortcode_unautop',100 );
You can share these codes with your theme author to use them in their themes.
Regards,
Averta Support