Hi All,
I originally had this topic under this closed thread (https://theme.co/apex/forum/t/elements-not-rendering-in-pro-builder/65997). At issue is a massive conflict between Member Mouse and Pro Builder. Member Mouse has not been helpful at all and our debugging has gotten us close to fixing the issues, but not in full. I totally understand this is not your issue and I am reaching out because of this one particular site (we only use Pro or tell our clients to only use Pro). At issues are elements not rendering in the builder. I am reaching out to see if there is anything else you think we can do?
What we know is with the plugin in off everything works fine. With that being said we are thinking of doing something like this to shut the plugin off only on pro/cornerstone pages. This seems very obtrusive and if you are willing I would love your feedback and thoughts. Using the builder is imperative for us especially with the new awesome grid tools. Thank you!!!
add_filter( 'option_active_plugins', 'fe_disable_membermouse_plugin' );
function fe_disable_views_plugin($plugins){
if( ( strpos($_SERVER['REQUEST_URI'], '/pro/') || strpos($_SERVER['REQUEST_URI'], 'cornerstone-endpoint') ) !== false ) {
$key = array_search( 'membermouse/index.php' , $plugins );
if ( false !== $key ) unset( $plugins[$key] );
}
return $plugins;
}