Mike Ritter
Forum Replies Created
-
Following up. The site is hosted on Godaddy. Problem was resolved when I disabled CDN. My apologies. Thank you.
Forum: Plugins
In reply to: [Create Block Theme] impossible to create child themeShould this be marked resolved?
Forum: Fixing WordPress
In reply to: Spaces between bullets don’t saveYou have shared a link to your wp-admin, which is not accessible to unauthorized users.
Also, you state “spaces between bullets”, which could mean between the bullet and the list item or between items in a bulleted list.
Learning CSS and HTML can be tedious. Please research your issue some more and post a followup.
For your experiments I recommend https://tastewp.com/
Note: Here’s a Pen with a CSS solution to spacing between LIs https://codepen.io/Mikeritteronline/pen/dymBjXd
Hi Jenny.
You should have these fields filled out.
If you do not want these to show up in your theme, you should adjust this setting in your theme.
If you share which theme you are using, perhaps someone can point you to where this setting is ( try the “Customize” screen in your “Admin Dashboard” to start ).
Another option is to find the class name or ID of the block where your site title is displayed, then, in the “Customize” screen look for “Additional CSS”. There, you can hide the block like this:
.block-class{ display: none; }https://www.computerhope.com/issues/ch000746.htm
https://developer.mozilla.org/en-US/docs/Web/CSS/display
https://www.wpbeginner.com/plugins/how-to-easily-add-custom-css-to-your-wordpress-site/
https://themeisle.com/blog/wordpress-customizer-how-to/
- This reply was modified 4 years, 6 months ago by Mike Ritter.
- This reply was modified 4 years, 6 months ago by Mike Ritter.
Forum: Developing with WordPress
In reply to: Using wp_nav_menu function to set classes**How to Avoid**
Thanks @catacaustic for starting me on the path to resolving this.
The solution is the parameter
fallback_cb.In your array, set this option to ‘false’ or ‘0’.
<?php wp_nav_menu(['location'=>'header-menu','fallback_cb'=>'0']) ?>See https://developer.ww.wp.xz.cn/reference/functions/wp_nav_menu/
Forum: Developing with WordPress
In reply to: Using wp_nav_menu function to set classes@catacaustic thanks for the tip.
This should be addressed though, because, as a developer adding to the theme incrementally I have added the code in a template and it should be honored.
I should be able to add the menu through my template or functions so it is does not require end user to create.
Can you or an admin please post a response with the WordPress way to do this?
- This reply was modified 4 years, 6 months ago by Mike Ritter.
Very good summary. I’ve found my experience to be similar.
append: I end up with irrational characters
Forum: Hacks
In reply to: My custom metabox will not display😫 hate those unforced errors!!!
thank you!
Forum: Themes and Templates
In reply to: Is _s improperly using query_posts()—————————
PLEASE DISREGARD THIS POST
—————————Forum: Fixing WordPress
In reply to: Older Posts Not ShowingForum: Plugins
In reply to: [WooCommerce] Woocommerce Products Widget Add CategoryDigging deeper, we need a way to hook into ‘show’ and add ‘category’ with a drop-down list of existing categories from which to select.
Agreeing with Virtus here.
More plugins should actually emulate this one.
Thanks. Closing this issue.