chaplaindoug
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Twelve] Making a Recent Posts PageDoes anyone know how I would limit the number of posts displayed on the page of posts? Also, is there a way to make the template show the most recent post in its entirety, but just an excerpt from any subsequent posts?
Forum: Themes and Templates
In reply to: [Twenty Twelve] Making a Recent Posts PageI found these two links. Was able to copy and paste the php for the page of posts template and place that template in my child theme folder.
https://www.ads-software.com/support/topic/page-of-posts-twenty-twelve?replies=11
https://www.transformationpowertools.com/wordpress/page-of-posts-template-for-twenty-twelve
Pali:
You are correct. But the sites do not show on the new user’s “My Sites” menu. They have to go to the Admin site, then select “Sites” to see them. Any way to get them on the new user’s “My Sites” dropdown?
Forum: Fixing WordPress
In reply to: WordPress Site on Mobile DevicesThanks for the lightening quick reply Andrew. I will try the “tel:” prefix and see how she works.
Forum: Plugins
In reply to: A Simple and Easy Google Map PluginI found the plugin “Simple Google Maps Shortcode” version 1.0.2 by Pippin Williamson found here:
https://www.ads-software.com/plugins/simple-google-maps-short-code/
Just what I was looking for.
Forum: Themes and Templates
In reply to: Adjusting Space between Nav Menu and First Line of Page BodyI put the following in the child theme folder’s style.css file:
.site-header {padding-bottom: 0rem;}
That fixed the issue for me.
Forum: Networking WordPress
In reply to: Super Admin Not Given Privileges for New Site CreatedResolved per posts above.
Forum: Networking WordPress
In reply to: Super Admin Not Given Privileges for New Site CreatedIt appears that if I give the same administrator email for a new site as the email used for the super admin, then the super admin is automatically added as an admin user.
Forum: Themes and Templates
In reply to: Custom Menu Does Not Display All Menu ItemsThe following CSS added to my child theme’s style.css did the trick:
/* Modify the menu and sub menu to fit all jurisdictions */ /* Reduce the vertical space and font size */ .main-navigation li ul li a {line-height:.8; font-size: x-small;} /* Make the sub menu wider */ ul.sub-menu { width: 800px; !important; } ul.sub-menu li { float: left; margin-right: 0px; !important; }
Forum: Themes and Templates
In reply to: Custom Menu Does Not Display All Menu ItemsForum: Fixing WordPress
In reply to: How to Give a Page a Title without It Showing at Top of PageThere is a plugin named, “Toggle The Title” which accomplishes exactly what I am after. Page titles may be suppressed on a page by page basis. Only works on pages, not posts or comments.
Forum: Fixing WordPress
In reply to: How to Give a Page a Title without It Showing at Top of PageOuch. Sounds difficult. Where do I place the CSS? How do I keep it from affecting all the pages? Thanks.
Forum: Themes and Templates
In reply to: Adding Logo to Left of Site Title and Tagline: Twenty TwelveThank you for the help. Answers above.
Forum: Themes and Templates
In reply to: Adding Logo to Left of Site Title and Tagline: Twenty TwelveThis did the trick when added to the style.css:
img.header-image { /*remove the border on images in posts and pages */ box-shadow: none; }
Forum: Themes and Templates
In reply to: Adding Logo to Left of Site Title and Tagline: Twenty TwelveYes. I have a child theme and a child style.css.