Cant remove white space on my wordpress [closed]
If you can hide the “blog” section of home page, yo can add this css code: .section-content.section-alter{ display: none; }
If you can hide the “blog” section of home page, yo can add this css code: .section-content.section-alter{ display: none; }
Using Custom Fields: You can use custom fields for each page, if you need something more specific (maybe a product where you need an specific image for each page), taking the og values for example: 1.- Go to the edit page and check the custom fields checkbox so it can be seen below the editor … Read more
The good news is that the only time a Child Theme is required, is if you are making (or plan to make) changes to the actual files that drive the theme. If all of your changes to the theme have been restricted to the WordPress Customizer or some other Options Panel within the WordPress admin, … Read more
I want my shortcodes and JS libraries to remain in place no matter if the theme updates, wordpress updates, or I change themes completely. Normally the suitable place for such in WP would be a plugin or as variation of must use plugin. More elaborate site might also use some other (generic PHP) methods, such … Read more
@NerdOfLinux from the error what I can see that you are using undefined function get_exID()… WordPress has a function get_the_ID(). Change the function name get_exID() into get_the_ID().
Untested, but this should do the trick: function wpse293862_remove_themes_panel() { global $wp_customize; $wp_customize->remove_panel( ‘themes’ ); } add_action( ‘customize_register’, ‘wpse293862_remove_themes_panel’, 11 );
In the event a child theme is being used, this function will return the child’s theme directory URI. Use get_template_directory_uri() to avoid being overridden by a child theme. use : get_stylesheet_directory_uri() Example code Here <?php function my_theme_enqueue_styles() { $parent_style=”parent-style”; // This is ‘twentyfifteen-style’ for the Twenty Fifteen theme. wp_enqueue_style( $parent_style, get_template_directory_uri() . ‘/style.css’ ); wp_enqueue_style( … Read more
I can’t comment yet, so I’ll have to put this as an answer 🙂 What do you see when you go to Settings / Reading, in the section that says “Your homepage displays”? If it is set to “Your latest posts”, the home page will be aggregating your post content and won’t be using a … Read more
Is it possible to update the only theme? if yes how should we check the compatibility with current WordPress version we have. Yes, you can manually download a particular version of the theme from .org site. There isn’t a UI for it, but if I take the current twentynineteen download link: https://downloads.wordpress.org/theme/twentynineteen.1.3.zip I can change … Read more
Without further info I usually check permalink settings when I see 404s where I would expect it should work. Go to WordPress Admin > Settings > Permalinks, just loading the admin page should refresh the settings. Recheck the links that were giving you issues.