ahirai
Forum Replies Created
-
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Search form no longer shows upThis appears to be a problem with my site’s theme. I was able to get Search working on all pages when I changed the Search style from “site overlay” to “drop down.” I will advise the theme developer.
Forum: Plugins
In reply to: [AMP] URLs in some AMP pages are getting appendedThis was the first time I’ve seen this happen.
Forum: Plugins
In reply to: [AMP] URLs in some AMP pages are getting appendedThe problem seems to have resolved itself when I edited and then saved the problematic page.
Forum: Plugins
In reply to: [AMP] Turn off Persistent Object Cache notificationIf you’re asking me, I think this sounds like a fine compromise. Thanks for consideration to such a minor issue!
Forum: Plugins
In reply to: [AMP] Suppress display of Tags at bottom of pageThat worked. Thank you.
Hi @simonpedge – FYI, the Updates page of my WordPress dashboard says Slide Anything version 2.3.30’s compatibility with WordPress 5.6 is “Unknown”.
It seems to work fine on my staging site but I haven’t updated my production site yet.
Forum: Fixing WordPress
In reply to: Mod Rewrite questionIt works!
Forum: Fixing WordPress
In reply to: Mod Rewrite questionNote: I’ve also tried the following rule:
RewriteRule ^/blog/([0-9]{4})/([0-9]{2})/([a-z-]+)/(\?[=\&a-z0-9/\.:-]+)$ /blog/$1/$2/$3/ [R]
This doesn’t seem to do the trick either. I suspect the problem might have to do with the order in which rules appear in the .htaccess file. Maybe the rule I’m trying to enter is being overridden by something else.
The .htaccess file in my /blog directory contains the following:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
RewriteRule ^/blog/([0-9]{4})/([0-9]{2})/([a-z-]+)/(\?[=\&a-z0-9/\.:-]+)$ /blog/$1/$2/$3/ [R]
</IfModule>
# END WordPressPlease advise…