kozmicblues
Forum Replies Created
-
We resolved this by duplicating the pattern in each language and then selecting the translated categories which the visibility block needed re entered for each language.
- This reply was modified 4 months ago by kozmicblues.
Here is how the redirection plugin does it or used to in an earlier version. i think they updated it since.
add_management_page( __( "Redirection", 'redirection' ), __( "Redirection", 'redirection' ), apply_filters( 'redirection_role', 'administrator' ), basename( __FILE__ ), array( &$this, "admin_screen" ) );
Then in functions.php you can add the editor access:
/** * Redirection Plugin Editor access */ add_filter( 'redirection_role', 'redirection_to_editor' ); function redirection_to_editor() { return 'edit_pages'; }
Forum: Plugins
In reply to: [Translate Wordpress with GTranslate] Add width and height to svg flagsWhat I am asking for is for you to add height=”24px” width=”33px” or whatever the dimensions are to the?floating language selector flag image.
img src=”https://cdn.gtranslate.net/flags/svg/en-us.svg” height=”24px” width=”33px” alt=”en”
Run a site with your floating language selector in a site speed test and you will see it complaining about it: https://pagespeed.web.dev
The same is happening on all of our sites with php 8 and latest query monitor (3.11.0):
?Fatal error: Uncaught Error: posix_getgrgid(): Argument #1 ($group_id) must be of type int, null given..
Forum: Plugins
In reply to: [The Icon Block] Hover colorsI’m glad it’s on your radar. Thanks for your excellent plugin.
It’s the retina plugin causing the issue for us as well. I just uninstalled it and it fixes the problem. We will be moving away from using it in the future.
Forum: Plugins
In reply to: [Page Builder by SiteOrigin] Version 2.4.8 Conflict with The Events CalendarThis is happening on our site too. Reverting to 2.4.6 fixed the problem with the event calendar.