mokidad
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: random postsSorry.
I have both – interesting that it doesn’t work on self-hosteds. Thanks for the reply.Forum: Themes and Templates
In reply to: Styling Submenu Elements Depending on the Parent: TwentyTenOn my Twenty Ten, things were already put in with a sub-menu class, so without adding the Screen Options, I was able to add the following to my style.css file:
#access ul ul.sub-menu { background-image: url('some-backing-image.png'); }
Forum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO by Yoast] sitemaps and redirectsForum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO by Yoast] sitemaps and redirectsDetails I forgot:
My site: Mokido Cavaliers
and by “get a 404” I mean that I get a 404 error when I try to view the /sitemap_index.xmlForum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO by Yoast] Static Blog Title not working!I’m having the same problem. It uses the title of the static blog page.
It does not use the generated SEO title or the forced SEO title if I fill in the title field.Forum: Fixing WordPress
In reply to: content div not expandingOk, it looks as though placing a position: absolute inside a position: relative does not count for the height of the container.
/solved.
Forum: Fixing WordPress
In reply to: content div not expandingDo I have to make my divs float inside the wordpress content?
Forum: Fixing WordPress
In reply to: 500 Internal Server errorSteps to fix this:
Uninstalled plugins.
Reinstalled WordPress
Changed Permalinks
Changed Reading settings from static
Reworked .htaccessSomething in these steps worked.
Forum: Fixing WordPress
In reply to: 500 Internal Server errorBut the folder where wp is installed /dogs gives a 404 and the static page that used to show all posts /dogs/blog is a 500 internal.
Here is my .htaccess
Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^mokido.net [NC] RewriteRule ^(.*)$ https://mokidocavaliers.com/$1 [R=301,L] RewriteCond %{HTTP_HOST} ^www.mokido.net [NC] RewriteRule ^(.*)$ https://mokidocavaliers.com/$1 [R=301,L] RewriteCond %{HTTP_HOST} ^www.mokidocavaliers.com [NC] RewriteRule ^(.*)$ https://mokidocavaliers.com/$1 [R=301,L] Redirect 301 /Blog/ https://mokidocavaliers.com/dogs/blog Redirect 301 /blog/ https://mokidocavaliers.com/dogs/blog Redirect 301 /2011/ https://mokidocavaliers.com/dogs/2011/ Redirect 301 /faq/ https://mokidocavaliers.com/dogs/faq/ Redirect 301 /wp-content/ https://mokidocavaliers.com/dogs/wp-content/ # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /dogs/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /dogs/index.php [L] </IfModule> # END WordPress
Forum: Fixing WordPress
In reply to: Preview and search brokenThank you ever so much!
Forum: Fixing WordPress
In reply to: Preview and search brokenWell, can I install wordpress in a subdirectory and act like it’s in root with my static site?
Forum: Fixing WordPress
In reply to: Preview and search brokenWordPress is installed in the root
I’m using settings/reading to have the home page be static (unused) and the posts page is set to blog. That’s why the blog appears to be in a subdirectory
(thanks for replying. I’m so stumped!)