kuckovic
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Synced patterns lock up editorHi @bws-online
I looked a bit around, because I’ve never seen this error before.
Looks like it’s a Chromium-based browser error (https://wordpress.com/forums/topic/result_code_hung-crashing-while-working-at-the-backend/)Have you tried another browser?
/A
- This reply was modified 3 months, 1 week ago by kuckovic.
Forum: Fixing WordPress
In reply to: Media Library / Image CorruptionLet’s hope you’ll never need it ??
Forum: Fixing WordPress
In reply to: Media Library / Image CorruptionWhat about Media Recovery? (https://www.ads-software.com/plugins/wp-media-recovery/)
Again – just shooting out some ideas./A
Forum: Fixing WordPress
In reply to: DP Evolve – Discontinued Theme?Hi @janecls
Well – maybe you can find someone who can help you maintain the theme then.
Sometimes it’s just a minor fix – but sadly it’s not always like that.If you need to find a suitable developer, you could post a job on the WP Job board: https://jobs.wordpress.net/ – I really hope you’ll figure out what’s best to do here ??
I’m cheering for you!
/AForum: Fixing WordPress
In reply to: Media Library / Image CorruptionHi @rkg04
I’ve had this issue before!
We actually fixed it by regenerating thumbnails(!) (https://www.ads-software.com/plugins/regenerate-thumbnails/)
I don’t know if this would’ve fixed your issue – but at least now you have one more solution to try out before resorting to doing a full backup recovery./A
Forum: Fixing WordPress
In reply to: DP Evolve – Discontinued Theme?Hi @janecls
Themes are always a sensitive topic. It’s hard to give some good advice on this matter, because the forum can’t really provide any support on specific themes – we always refer to the theme-developers support forum (either on www.ads-software.com or if they have their own).
This might be a good time for you to invest some time in “updating” your site. If the theme is discontinued, it’s only a matter of time before more stuff starts crashing. It’s not always because of WP core or plugin updated – it might as well be a PHP update. Therefore, the best advice from me would be to look for a well-documented and maintained theme, that fullfills your needs.
There are a lot of different marketplaces out there – and if you’re not willing to pay, you can have a look in the WordPress theme directory – there are a lot of good themes there too. I know it’s not the answer you’re looking for, but truth be told, this is the best advice I can give you.
I hope you’ll figure it out.
/AForum: Everything else WordPress
In reply to: Noindex TagFantastic! Have a great day ??
Forum: Everything else WordPress
In reply to: Noindex TagWhat plugins do you have installed?
Maybe WordPress SEO can help you figure out what the issue is? I know it tells you if your page has indexing-issues.Might be worth a shot.
Forum: Everything else WordPress
In reply to: Noindex TagHi @cregy
Do you, by any chance, have “Discourage search engines from indexing this site” checked under “Settings” > “Reading” (in the controlpanel)?
/A
Forum: Fixing WordPress
In reply to: WordPress Site High CPU Usage (Help)Glad it’s working now! ??
Forum: Fixing WordPress
In reply to: WordPress Site High CPU Usage (Help)Hi @juanwp22
Any news on this matter?
Forum: Fixing WordPress
In reply to: Can’t edit pagesHave you tried deactivating all plugins, and then activating the TwentyTwentyFour theme?
And your WordPress is up to date?Forum: Fixing WordPress
In reply to: How can i add custom display name for user role in comments?Forum: Fixing WordPress
In reply to: Can’t edit pagesHmm – that seems to be a WooCommerce issue – but that’s only a deprecation-warning, and not a fatal error. This error is discussed in this GitHub thread.
Does the issue still perssist if you change the theme to the default TwentyTwentyFour theme??Forum: Fixing WordPress
In reply to: How can i add custom display name for user role in comments?I’ve updated the code here below.
I’ve wrapped the “Admin” word in <span>-tags with a class – you should be able to play around with that.<?php
/** Add User Role to Comments. */
if ( ! class_exists( 'Comment_Author_Role_Label' ) ) :
class Comment_Author_Role_Label {
public function __construct() {
add_filter( 'get_comment_author', array( $this, 'get_comment_author_role' ), 10, 3 );
add_filter( 'get_comment_author_link', array( $this, 'comment_author_role' ) );
}
function get_comment_author_role($author, $comment_id, $comment) {
$authoremail = get_comment_author_email( $comment );
if (email_exists($authoremail)) {
$comment_user = get_user_by( 'email', $authoremail );
$comment_user_role = $comment_user->roles[0];
switch ($comment_user_role) {
case 'administrator':
$this->comment_user_role = ' <span class="comment-admin">Admin</span>';
break;
default:
$this->comment_user_role = ' ' . ucfirst($comment_user_role);
break;
}
} else {
$this->comment_user_role = '';
}
return $author;
}
function comment_author_role($author) {
return $author .= $this->comment_user_role;
}
}
new Comment_Author_Role_Label;
endif;