Tagged: enfold, layout element, testimonials
Is there an easy way to move a layout element (Testimonials) from one page to another? I placed a testimonial element on a test page to see how it would work and now I want to move it to a visible page. Is it possible?
Hey MtnStreamGroup!
Please switch your theme to debug mode. Edit function.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;
Below, add this code:
//set builder mode to debug
add_action('avia_builder_mode', "builder_set_debug");
function builder_set_debug()
{
return "debug";
}
You will be able to see the actual shortcode below the builder. Copy the actual shortcode then transfer it to another page.
Regards,
Ismael
Thanks Ismael.