Hello,
I put the shortcode for the ButtonRow into my LayerSlider. At first I got the error message that it was disabled in my Admin Performance Settings, so I went there and selected to always load all builder elements. After doing that, the buttons are showing up at all and neither is the error message. On this page, the buttons should be just below the text in the top section on the right.
Thanks for your help!
Hey Taryn,
Thank you for the inquiry.
You may need to use the following filter in the functions.php file to enable shortcodes that were added outside the Advance Layout Builder (ALB).
function avf_custom_exec_sc_only_mod( $exec_sc_only, $obj_sc, $atts, $content, $shortcodename, $fake ) {
return true;
}
add_filter( 'avf_alb_exec_sc_only', 'avf_custom_exec_sc_only_mod', 10, 6 );
Let us know if that helps.
Best regards,
Ismael