oliviameiring
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: error 404 only on home page after upgrading to wordpress 4.5.3I managed to solve the problem, so I’m posting it here in case you or anyone else is still having this issue.
Somehow my “home” page was set as a draft (which can only be visible to you if you’re logged in), so I published the homepage and went to:
* Settings > Reading > Front Page Displays: A Static Page and changed my “Front Page” to “Home”
Hope this helps!
Forum: Fixing WordPress
In reply to: error 404 only on home page after upgrading to wordpress 4.5.3I’m having the exact same problem. My one-page homepage displays when I’m logged in, but throws up a 404 when I’m logged out. The only page that displays as expected is the blog, and I’m guessing because it’s not part of the one-page layout.
I’m running WordPress 4.6.1 and the Xone theme.
Forum: Fixing WordPress
In reply to: import issue: no comments/excerptsI’m having the same problem. The comments are showing up under each post, but above it it says “No Comments”. And on the blog index page all my posts show up as “no comments”. So weird.
Forum: Themes and Templates
In reply to: Override Gallery Link to Image SizeThis plugin worked great for me!
https://www.ads-software.com/extend/plugins/cleaner-gallery/Forum: Fixing WordPress
In reply to: [Gallery: Template] How to change the link?Thanks charlesneville – it worked for me!
Forum: Fixing WordPress
In reply to: Import posts from another blogAw man – that last suggestion would have been perfect if the database wasn’t 11MB. There’s a 4MB limit ??
Forum: Themes and Templates
In reply to: List Sub Pages disappears in Sub PagesHere you go, this also displays the submenu when you’re on a child page:
<ul> <?php if(get_the_title($post->post_parent) != the_title(' ' , ' ',false)) { wp_list_pages("child_of=".$post->post_parent."&sort_column=menu_order&title_li="); } else { wp_list_pages("child_of=".$post->ID."&sort_column=menu_order&title_li="); } ?> </ul>
Forum: Fixing WordPress
In reply to: List sub pages inside a page… hmmm :)this code works perfectly, and unlike a lot of code floating around the support forums, it also displays the submenu when you’re on child page:
<ul> <?php if(get_the_title($post->post_parent) != the_title(' ' , ' ',false)) { wp_list_pages("child_of=".$post->post_parent."&sort_column=menu_order&title_li="); } else { wp_list_pages("child_of=".$post->ID."&sort_column=menu_order&title_li="); } ?> </ul>
Forum: Themes and Templates
In reply to: List Sub Pages disappears in Sub PagesI’m having the same problem – subpage links not displaying at all when Im on a subpage. Perhaps because the code only displays child pages of the current page.
I can fix this problem by hardcoding the Post ID, since I’m using a different template for each section, but there must be a more elegant solution.