gopros
Forum Replies Created
-
Forum: Plugins
In reply to: [Meta Box] datetime field missing when use add_filterFound it. It’s because the $value is array (clone field), so I have to foreach $value and update every value of it.
Forum: Fixing WordPress
In reply to: Can’t edit main theme php files after upgrading to 4.9Guys may be you made an option in WP Settings to disable this feature?
You see many peoples have the same problem.
- This reply was modified 8 years, 6 months ago by gopros.
Forum: Fixing WordPress
In reply to: Can’t edit main theme php files after upgrading to 4.9Hi! I have an error “Unable to perform a loopback request to your site…” 401.
The plugin Health Check trying to GET /wp-admin/ dir and get 401 error because I have blocked all external queries to this dir instead admin-ajax.php file. It’s for security reasons.So how I can fix it? Why loopback requires dir /wp-admin/ ? That is not good.
Forum: Fixing WordPress
In reply to: Can’t edit main theme php files after upgrading to 4.9I have never edited the core files. But i think it’s time to do it.
Just replaced
“if ( $is_active && ‘php‘ === $extension ) {”
for
“if ( $is_active && ‘123‘ === $extension ) {”But I still hope someone fix this issue, because I edit/save theme files about 1000 times by day.