Hello,
I seem to be running into problems in Safari (Chrome, Opera, IE, & Firefox work fine) with using the “pre” tag to display code in multiple tabs using the tab feature of Enfold. Specifically, when I open the page (shown below) in Safari, and when I click from one tab to another tab, the code, created by the pre code disappears in subsequent tabs. Would anyone know why, or more importantly, is there anything that I can do about it? What is really strange is that the code shows up in the tab that is originally displayed on the screen, but not when you click on other tabs the code is not shown.
Here is a the link:
http://www.helpwithstats.com/r-entering-data
Thanks for any and all help!
STATS4STEM
Hi,
Please switch your Advance Layout Editor to debug mode. Edit functions.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’ll be able to see the actual shortcode below the Advance Layout Editor. Please increase the php memory limit to 128M or higher.
Edit wp-config.php, add this code
define('WP_MEMORY_LIMIT', '128M');
Regards,
Ismael