Need to put slider carousel i bought
-
-
Hello,
Thank you for providing a screenshot.The homepage, which displays the Featured Content section and recent blog posts, is generated automatically by WordPress.
At the moment, it’s not possible to edit this page. Thus, it is not possible add the shotcode to the page to replace the Featured Content section with slider.
Currently, you can only add your sliders to the content area of your regular page/post using the Shortcode block.
I apologize for the inconvenience.
Kind regards,
Taras -
Hello,
We’ve submitted a new version of the theme which now allows to remove the Featured Content section using a code snippet.
For custom code snippets, you can use this plugin which allows to add a custom code snippets to a WordPress site without modifying the theme files.
Here is a code snippets to remove the Featured Content section:
function themesharbor_aquene_remove_featured_content() { remove_action( 'aquene_before_main', 'aquene_jetpack_display_featured_content' ); } add_action( 'init', 'themesharbor_aquene_remove_featured_content');
By the way, if your slider plugin provides you a shorcode, then you can use this code snippet to display your slider above the recent posts:
function themesharbor_add_custom_slider_shortcode() { echo do_shortcode( '[rev_slider][/rev_slider]' ); } add_action( 'aquene_before_main', 'themesharbor_add_custom_slider_shortcode' );
Replace [rev_slider][/rev_slider] with your own shortcode.
Kind regards,
Taras
- The topic ‘Need to put slider carousel i bought’ is closed to new replies.