Forum Replies Created
-
AuthorPosts
-
Lorentz
MemberLorentz
MemberI thought that was exactly what came with it. Am I using the wrong terminology or something?
https://my.studiopress.com/documentation/content-optimization/studiopress-content-optimizer/content-optimization-overview/
December 5, 2017 at 5:00 am in reply to: Authority Pro – Content wrappers with Woocommerce Sensei #214273Lorentz
MemberAfter much swearing and googling I found this bad boy: https://wordpress.org/plugins/genesis-connect-for-woothemes-sensei/
Problem solved.
If I ever meet mr. Herr who made this plugin I will buy him a damn good cup of coffee. I'll buy him two.
December 4, 2017 at 7:01 am in reply to: Authority Pro – Content wrappers with Woocommerce Sensei #214239Lorentz
MemberI've tried to add this
global $woothemes_sensei;
remove_action( 'sensei_before_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper' ), 10 );
remove_action( 'sensei_after_main_content', array( $woothemes_sensei->frontend, 'sensei_output_content_wrapper_end' ), 10 );add_action('sensei_before_main_content', 'my_theme_wrapper_start', 10);
add_action('sensei_after_main_content', 'my_theme_wrapper_end', 10);function my_theme_wrapper_start() {
echo '<div id="container"><div id="content" role="main">';
}function my_theme_wrapper_end() {
echo '</div><!-- #content -->
</div><!-- #container -->';
get_sidebar();
}to the functions.php but it's based on the guide to resolve this issue with Sensei and the TwentyTen theme, so I'm probably using some wrong div ids perhaps but I don't know where to find them.
December 4, 2017 at 6:18 am in reply to: Authority Pro – Content wrappers with Woocommerce Sensei #214237Lorentz
MemberI'm not certain that it's the wrappers, but in the sensei documentation, they show the exact example and suggest that I should specify my own wrappers in the functions.php file if the above mentioned code didn't work.
Lorentz
Member -
AuthorPosts