mkoenen
Forum Replies Created
-
We are having a problem getting the background color to display in bbpress. We are using Gutenberg and Kadence. Where are the settings?
I had the same issue – in all browsers with one of my sites. However the donation form did show to non-logged in users on another of my sites. I compared settings and found that when I switched the display to “radios”, the form displayed to all users. Miraculously, when I then switched back to “buttons” the form continued to display to all users, including users who were not logged in.
Forum: Plugins
In reply to: [BuddyPress Groups Extras] Illegal string offset 'position'Thank you for the info and for working on the fix.
Forum: Plugins
In reply to: [BuddyPress Groupblog] Double HeaderWe are having the same issue using Boss. We ended up changing the settings so that clicking on “Blog” takes the user right into the subsite. This works much better for us, but it would be good to have the issue addressed and a solution posted as I am sure there are many admins who run into the problem.
Forum: Fixing WordPress
In reply to: Twenty Fifteen – Suppress page title on Home pageIt sounds to me like the code in your functions.php might not be enclosed with php tags.
There should be
<?php
before your code and?>
at the end.Forum: Themes and Templates
In reply to: "Proudly powered by WordPress" lacks periodIf you want to be strictly grammatical, “Proudly powered by WordPress” is not a complete sentence. Phrases like this don’t usually end with a period.
Forum: Fixing WordPress
In reply to: Ceased to be a prominent music on the pageCould you give us some more information? What plugins are you using? Why are they not installed? What did you do between yesterday and today?
A link to your website would help too.
Forum: Fixing WordPress
In reply to: 404 Error When Form Is SubmittedHave you thought about using a ready-made jquery datepicker?
Forum: Fixing WordPress
In reply to: How to remove bold header text on pages?Could you post a link to your site so I can take a look at your page?
Forum: Fixing WordPress
In reply to: Twenty Fifteen – Suppress page title on Home pageAssuming that your child theme is in the themes folder, you would write
@import url( ../twentyfifteen/style.css );
Forum: Fixing WordPress
In reply to: How to Remove the second menu ?Sorry, I finally see that you are trying to remove the breadcrumbs and that for some reason
display:none;
does not remove it. I think you might have to remove it from the php templates that create the pages.Forum: Fixing WordPress
In reply to: Twenty Fifteen – Suppress page title on Home pageYes, indeed, that would be a better solution.
Forum: Fixing WordPress
In reply to: How to Remove the second menu ?If you want the menu to show on the home page only try to add this to your style sheet:
`.page #menu {
display: none;
}
.home #menu {
display: block;
}’Forum: Fixing WordPress
In reply to: search/find as you type filter which creates drop down list for postThere are several WordPress plugins that do live search. Take a look here.
Forum: Everything else WordPress
In reply to: Insert MenuDifferent themes will put menus in different places. Do you currently have a menu but it is in the wrong place or do you need information about how to create a menu?