@cottonbarry: For this you will need to create a child theme. You can use Generate Child Theme plugin if you don’t know how to create a child theme. Install and Activate the plugin then Go to => Dashboard => Generate Child Theme tab => Select parent theme as Helena Pro and fill the other fields then press Generate. This will create and activate the child theme.
Now, Go to => Child Theme Folder => functions.php and add the following Code.
function remove_my_action(){
remove_action( 'helena_after_header', 'helena_featured_slider', 20 );
remove_action( 'helena_before_content', 'helena_logo_slider', 70 );
}
add_action( 'wp_head', 'remove_my_action' );
function add_my_action () {
add_action( 'helena_after_header', 'helena_logo_slider', 20 );
add_action( 'helena_after_content', 'helena_featured_slider', 20 );
}
add_action( 'wp_head', 'add_my_action' );
Let me know if this does the trick.
Kind Regards,
Skandha