Thread Starter
helbnt
(@helbnt)
Thanks for the reply!
So the answer is yes, this is still the case. As an Admin, I will see all menu options, regardless if I have the “restrict access” set to Logged Out Users or not.
Thread Starter
helbnt
(@helbnt)
I actually figured this out. Figured I’d post here in case someone runs across the same problem.
Turns out the issue was within my .htaccess file. Originally it looked like this:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
RewriteEngine on
RewriteCond %{QUERY_STRING} ^[^=]*$
RewriteCond %{QUERY_STRING} %2d|\- [NC]
RewriteRule .? - [F,L]
Now, I don’t know a lot about .htaccess files, but I figured Anything after #END WordPress I might not need. So I commented out those last four lines, and yeehaw, the visual editor showed back up.
Hope this helps someone!!