saraneve
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Shapebox] Mobile MenuThank you very much!
I will try to optimize the theme to make it as personal as possible.
Forum: Themes and Templates
In reply to: [Shapebox] you may like textJust add this code in the functions.php file:
function tg_exclude_pages_from_search_results( $query ) { if ( $query->is_main_query() && $query->is_search() && ! is_admin() ) { $query->set( 'post_type', array( 'post' ) ); } } add_action( 'pre_get_posts', 'tg_exclude_pages_from_search_results' );Regards.
- This reply was modified 3 years, 9 months ago by saraneve.
Forum: Themes and Templates
In reply to: [Shapebox] you may like textHi,
check in the
inc/related-posts.phpfile at sixth line.Regards.
Forum: Themes and Templates
In reply to: [Shapebox] Classic Editor widthIs a way to contribute!
Forum: Themes and Templates
In reply to: [Shapebox] Classic Editor widthI found the solution myself 😎.
Just create an editor-style.css file with the code:
body { max-width: 740px; }and add a string to the functions.php file:
add_editor_style( array( 'editor-style.css' ) );I share the solution for all interested people.
Forum: Themes and Templates
In reply to: [Shapebox] Classic Editor widthThe image that I attached before (the editor with the theme’s width) refers to one of my blogs with a theme that imposes the width to the editor.
Some themes (like Chaplin, Twenty Twenty, Twenty Sixteen and more, for example) do it.
For this reason I asked, because I know it is possible to do it.
Thanks the same for your availability.