kelsjc
Forum Replies Created
-
Forum: Plugins
In reply to: [Translate Wordpress with GTranslate] How to translate “hard coded” textDisregard my question , it was an issue on my custom function that was blocking the translation.
Forum: Plugins
In reply to: [User Menus - Nav Menu Visibility] Any plans to support 6.9 and beyond?Yes I need it as well.
Any update? It’s not working for latest wp version 6.9…
Ok thank you !
Hi.
That isn’t the reason. I remove it and the error persists.
Can you please check again?
Thanks
- This reply was modified 10 months, 3 weeks ago by kelsjc.
Ok I solved it using ChatGPT. It was a specific conflict with my theme.
Forum: Plugins
In reply to: [LiteSpeed Cache] Error Failed to communicate with QUIC.cloud serverIt has been solved. Just to register here, the support helped me and I had to adjust remoteip.conf file with Cloudflare IPs (which I use).
Forum: Plugins
In reply to: [LiteSpeed Cache] Error Failed to communicate with QUIC.cloud serverI’m the server administrator. I use Apache and added and configured the module remoteIP as requested. I tried to enable quic but still get the error.
Here is the log: https://pastebin.ubuntu.com/p/NK8wM7HfNV/Hi @rur165
Yes, thank you so much!!
Forum: Plugins
In reply to: [Admin Menu Editor] Same user role can’t access pluginI just found out the issue. After a deep investigation, found a global css hiding the element for that specific user. Sorry for that, nothing related to your plugin. It craked my head to find that today.
Forum: Plugins
In reply to: [Admin Menu Editor] Same user role can’t access pluginHi @whiteshadow,
I am already the main Admin and I created another WP user with Admin role. The main user I can do anything, but with this second user, I am able to create staff members, but not to insert categories or organize items.
The point is not Bookly because I created a user with same role, so it should be able to do the same thing, right? This is why I guess is something related to Menu Editor.
Forum: Developing with WordPress
In reply to: Log into wordpress accounts within iframe@delanthear check this scenario and let me know if it’s correct
WP1 — (iframed WP2)
On theme/functions.php in WP2
add_action( 'send_headers', 'add_header_xua' ); function add_header_xua() { header( 'Content-Security-Policy: frame-ancestors http://WP2/page' ); } add_action('wp_head', 'iframe_load_setup'); function iframe_load_setup() { // If this is the iframe login page, remove the headers if ( is_page('WP2_PAGE_SLUG') ) { remove_action( 'login_init', 'send_frame_options_header', 10, 0 ); } }Forum: Developing with WordPress
In reply to: Log into wordpress accounts within iframe@delanthear all this code you put on the functions.php in iframed site, right?
The domain is repeated twice on the first part?
IS this URL from the MAIN site or IFRAMED one?I’m getting conection refused anyway :/
Any idea?