Thread Starter
hastic
(@hastic)
I would like to disable the time indicator completely everywhere.
Thread Starter
hastic
(@hastic)
Use the previous version PageBuilder, instal this plugin https://ww.wp.xz.cn/plugins/wp-rollback/
It works
Thread Starter
hastic
(@hastic)
I did it…
1. Make a child theme
2. In functions.php add this code:
function franz_hook_slider2(){
global $franz_settings;
if ( ! $franz_settings['slider_disable'] && ! franz_has_custom_layout() ) add_action( 'franz_before_content', 'franz_slider' );
}
remove_action( 'template_redirect', 'franz_hook_slider' );
add_action( 'template_redirect', 'franz_hook_slider2' );