Martin Robbins
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to create a static page Template?First I would suggest create a child theme
Then create a custom page template https://codex.wordpress.org/Page_Templates#Custom_Page_Template
Forum: Fixing WordPress
In reply to: Display Full Post not Title in CategoriesTo identify line numbers use a real programmer’s text editor like notepad++ (not notepad) on windows or text wrangler on mac … and use it in conjunction with ftp client like filezilla
So when the front page was broke, did you get the TWO full posts on the category page?
Forum: Fixing WordPress
In reply to: Display Full Post not Title in CategoriesThat was a good try!
I looked at your theme.
Find the code lines 27-35 from file content-single.php
Copy it twice into file content.php
- between lines 13-14
- bteween lines 10-11
Forum: Themes and Templates
In reply to: How to create a static page Template?Am I reading your post correctly? Most all themes, including TwentyFourteen for sure, already include at least on page template that will allow you to do what you want.
Forum: Fixing WordPress
In reply to: Display Full Post not Title in CategoriesThis is a very quick, minimal answer. Hopefully it will get you further toward a complete solution.
For the full post issue, you could try looking in archive.php or category.php
- Look for
the_title(); - somewhere after that, insert
the_content();
For the two columns versus one, it likely will require CSS modifications, and that is easily possible to corrupt any programmed responsive behavior.
You can always ask the theme author(s) http://www.theme-junkie.com/
Forum: Fixing WordPress
In reply to: .navigation-main ul >Without having inspected your site, I would suggest something like this:
.navigation-main ul > .current_page_item a, .navigation-main ul > .current-menu-item a, .navigation-main ul > .current-post-ancestor a, .navigation-main ul > .current-menu-ancestor a, .navigation-main ul > .current-menu-parent a, .navigation-main ul > .current-post-parent a { color: #ffffff; }Forum: Fixing WordPress
In reply to: Change "nickname" of sites in MultisiteI think you’re looking for http://codex.wordpress.org/Network_Admin_Sites_Screen
Or perhaps http://codex.wordpress.org/Network_Admin_Sites_Screen#Edit_Site
Forum: Fixing WordPress
In reply to: Malfunction in Yoast's WordPress SEO… Yoast’s ‘WordPress SEO’ …
In that case, ask here:
Forum: Fixing WordPress
In reply to: Can I have more than one 'posts' venue?The theme author(s) are likely most qualified to take care of what you want:
Forum: Fixing WordPress
In reply to: Get the number of participants in commentshttp://codex.wordpress.org/comments_number will handle the first part.
For the second part, in theory:
- get the comments themselves http://codex.wordpress.org/Function_Reference/get_comments
- from that, get just the authors
- discard the duplicate authors
- count the remaining authors
Forum: Fixing WordPress
In reply to: Close sitForum: Fixing WordPress
In reply to: Create line break using iPad: How?Are you using WordPress IOS app? It should be easily possible if instead you use chrome or safari, and then the text editor, not the visual editor.
Forum: Fixing WordPress
In reply to: Blank white screen no access to wp adminHave you tried replacing the deleted file?
If you remember the filename and WordPress version, you should be able to get a new one via https://wordpress.org/download/release-archive/ … and then upload via ftp or host file manager.
Forum: Localhost Installs
In reply to: Newly created plugin not showing up in the list of pluginsHave you included a valid header within the .php file ? … as per https://codex.wordpress.org/Writing_a_Plugin#File_Headers
Forum: Fixing WordPress
In reply to: New Install: Permalinks Break Posts/Pages – Tried The Easy FixesIt appears you will have to check it via the host control panel or possibly by contacting the host providor.
Have you ever made the pretty permalinks work on that host with any other WordPress instance?