Hi
Can you share your site URL.
Thanks
put this code in custom css:
#product_slide {display:none;}
Theme Author
webriti
(@priyanshumittal)
create child theme and copy paste the front-page.php in it which has following code snippet
<?php
$is_front_page = get_option('spa_theme_options');
if ( 'posts' == get_option( 'show_on_front') && $is_front_page['front_page'] != 'yes' ) {
get_template_part('index');
}
else {
get_header();
get_template_part('index', 'slider') ;
get_template_part('index', 'services');
get_template_part('index','product');
get_footer();
}
?>
All you need to do is comment the line //get_template_part('index','product');
Hope I made my point clear.
Thanks