Forum Replies Created
Viewing 3 posts - 1 through 3 (of 3 total)
-
AuthorPosts
-
capiedgeMember
Many thanks Victor!
I found an even easier way to accomplish it:
//Remove selectively the site-inner wrap add_filter('genesis_structural_wrap-site-inner', '__return_null');
Regards.
May 31, 2018 at 4:51 am in reply to: Looking for advice in integrate a reliable css framework to improve Genesis #220417capiedgeMemberHi Sridhar! A pleasure to talk with you!
A preference? Perhaps Bulma and TailwindCSS are the trendiest options right now, don't you think?
But in any case, how to prevent the interaction with native Genesis (or WP) classes? I think that the best option is to selectively use only some utilities and not the entire framework (that for sure will cause problems with standard classes declared in Genesis), and maybe taking this in consideration, some frameworks are better than others...
And, one more doubt, what do you do when you need this kind of utilities? Have you any recommendation?
October 7, 2013 at 3:31 am in reply to: is_archive() conditional not working from functions.php #65623capiedgeMemberBy the way, here is the solution:
add_action ('genesis_meta','reordenar_meta_en_archivos'); function reordenar_meta_en_archivos() { if ( is_front_page() || is_archive() ) { # comprueba si es front page o es archivo remove_action( 'genesis_entry_content', 'genesis_do_post_image', 8 ); add_action( 'genesis_entry_header', 'genesis_do_post_image', 8 ); remove_action( 'genesis_entry_header', 'genesis_post_info', 12 ); add_action( 'genesis_entry_header', 'genesis_post_info', 9 ); remove_action( 'genesis_entry_footer', 'genesis_post_meta' ); add_action( 'genesis_entry_header', 'genesis_post_meta', 9 ); } }
-
AuthorPosts
Viewing 3 posts - 1 through 3 (of 3 total)