prowp7
Forum Replies Created
-
Deactivated all plugins. Deactivated all themes and activated 2024 theme. Purged all cache fully. Still this wordfence redirection url link is working and redirects to homepage.
If I visit the url it takes to homepage only. So parameters has no effect. But google search console listed it under 5XX Error. Need help and guidance to remove it.
Also default theme 2024 has no affect on the page url. same as before.
- This reply was modified 6 months, 1 week ago by prowp7.
Forum: Fixing WordPress
In reply to: WordPress Post Tag Limit RemovalSome more interesting info. So, the tag limit of 200 is set in wordpress block editor only. On installing classic editor, now I can add any number of tags. Looks like Classic editor don’t have any tag limit.
Now, my question is how can i remove tag limit in block editor? Is this a bug in block editor of wordpress? OR Does wordpress had set a limit of 200 tags in block editor?
Forum: Fixing WordPress
In reply to: WordPress Post Tag Limit RemovalTried the publishpress plugin and its not working. WordPress have by default 200 tag limit and adding any more tag, its removing last tag in alphabetical order. Any solution?
Thank you so much for such a quick reply and update! Will be waiting for the release of update. Thanks a lot!!!
- This reply was modified 2 years, 10 months ago by prowp7.
Forum: Developing with WordPress
In reply to: Show only if user-role is subscriber AND site visitorThe correct code is :
$user = wp_get_current_user();
$allowed_roles = array( ‘subscriber’);
if ( array_intersect( $allowed_roles, $user->roles ) || !is_user_logged_in()) {
// Your code here…
}`