redcastor
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Multilang - Translation and Multilingual Plugin] Fix for WP 5.4Hello,
Please describe your problems.
Thanks
Hello,
Ok but did you ask the question to the client?
I would have liked to know the real answer
If is for seo today is not necessary and it’s not improve your ranking.
Visit this page https://www.at-languagesolutions.com/en/atblogmarketing-digital-en-sitios-multilenguaje/traduccion-url-seo/Regards
AubanHello,
Why would you translate slug?
Regards
AubanForum: Plugins
In reply to: [Easy Plugin Demo Builder] Error 404Not work.
You not add network path to the domain arg but on the path argForum: Plugins
In reply to: [Easy Plugin Demo Builder] Error 404Thanks, but i work on localhost with subfolder so its not a subdomain and the get_network()->path is not set.
Auban
Forum: Plugins
In reply to: [Easy Plugin Demo Builder] Error 404Hello,
The problem is in the plugin file register-actions.php line 84 the path of the network is not include like wordpress wp-admin/network/site-new.php line 237 (get_network()->path)
You must change the like so the line 84:
‘path’ => untrailingslashit(get_network()->path) . $path,or use the hook ‘epd_site_registration_args’ to change $args[‘path’] for the correct path
Regards
Auban
- This reply was modified 4 years, 8 months ago by redcastor.
Forum: Fixing WordPress
In reply to: Ajax Update theme error with slug contain slashYes a slug cannot contain a slash or other special character.
But in this case it is not a slug it is a stylesheet so it is a directory and directory can contains forward slash.Forum: Fixing WordPress
In reply to: Ajax Update theme error with slug contain slashHello,
Yes it’s right for wp_unslash but on the line 4114 the regular expression strip forward slash
$stylesheet = preg_replace( '/[^A-z0-9_\-]/', '', wp_unslash( $_POST['slug'] ) );
The function wp_get_theme called by ajax request on update theme accepted param stylesheet and this function create a instance of class WP_Theme with first param stylesheet but the first param of the class WP_Theme is describe to accepted directory (https://developer.www.ads-software.com/reference/classes/wp_theme/__construct/)
So why is the forward slash removed?
This is confusing.Hello,
Thanks for the plugin it’s very cool. But is it possible to support Elementor page builder.
Regards,
Auban
Forum: Plugins
In reply to: [WP REST Cache] Disable a single item cacheFixed
Forum: Plugins
In reply to: [WP REST Cache] Disable a single item cacheHello,
Yes this fix the problem.
Thanks
Auban
Forum: Plugins
In reply to: [WP REST Cache] Possible to add a filter for cache_key in build_request_uriHello,
Super great.
I did tests and it works well.Many thanks for your time.
Auban
Forum: Plugins
In reply to: [WP REST Cache] build_request_uri not store correct request uriHello,
Great its work fine.
Many thanks for your time.
Auban
Forum: Plugins
In reply to: [Cache Enabler] Prevent caching for logged in usersHello
Add in your htaccess the cache control to private must-revalidate.
Example:
<filesMatch "\\.(html|htm|php)$"> Header set Cache-Control "max-age=86400, private, must-revalidate" </filesMatch>