Comments are no longer displayed in Wordpress

reiner6
16 Posts
reiner6 posted this 24 August 2020

Hello,

On our site, no comments have been displayed in the frontend for 1-2 weeks.
Before that it worked without any problems.
Now only something like this is displayed.

10 answers to day trip Taubertal n. Rothenburg o / T

But the comments are missing.
Nothing was changed in the settings.
Can an update be responsible?

https://www.chopper-motorrad.de/?event=tagesausfahrt-taubertal-n-rothenburg-o-t-u-besuch-biergarten-baumhaus-in-rennhofen

Hello, On our site, no comments have been displayed in the frontend for 1-2 weeks. Before that it worked without any problems. Now only something like this is displayed. **10 answers to day trip Taubertal n. Rothenburg o / T** But the comments are missing. Nothing was changed in the settings. Can an update be responsible? https://www.chopper-motorrad.de/?event=tagesausfahrt-taubertal-n-rothenburg-o-t-u-besuch-biergarten-baumhaus-in-rennhofen
Vote to pay developers attention to this features or issue.
24 Comments
Order By: Standard | Newest
Support Team
Support Team posted this 24 August 2020

Hello,

We are sorry for the issue. Our developers are working at fixing it and we will let you know when the fix is ready.

Sincerely,
Nettie

Hello, We are sorry for the issue. Our developers are working at fixing it and we will let you know when the fix is ready. Sincerely, Nettie
braserox
1 Posts
braserox posted this 26 August 2020

Hello,

Same issue for me, any update concerning this issue?

Regards
Kevin

Hello, Same issue for me, any update concerning this issue? Regards Kevin
Support Team
Support Team posted this 26 August 2020

Hello Kevin,

Sorry, no update yet, we will keep you posted ASAP.

Sincerely,
Nettie

Hello Kevin, Sorry, no update yet, we will keep you posted ASAP. Sincerely, Nettie
wouter.rommel
2 Posts
wouter.rommel posted this 27 August 2020

Hello,
Same problem here... hope this gets fixed asap...
thanks,

Kind regards,

Wouter

Hello, Same problem here... hope this gets fixed asap... thanks, Kind regards, Wouter
info2021
4 Posts
info2021 posted this 28 August 2020

Hello Themler,

Same problem here... Any updates?

Kind regards,

Jos

Hello Themler, Same problem here... Any updates? Kind regards, Jos
Eric-P
38 Posts
Eric-P posted this 30 August 2020

Good morning all,

I have the same problem, it seems that this is not fixed, the comments exist in Wordpress but can no longer be displayed.

Good morning all, I have the same problem, it seems that this is not fixed, the comments exist in Wordpress but can no longer be displayed.
Support Team
Support Team posted this 31 August 2020

Hello,

Please, update your theme version to Themler v511 (Beta).

Gina
Themler Support

Hello, Please, update your theme version to Themler v511 (Beta). Gina Themler Support
reiner6
16 Posts
reiner6 posted this 31 August 2020

Is there a hack I can build directly into the existing source code?
I can't do everything all over again.
Which file has to be adjusted?

Is there a hack I can build directly into the existing source code? I can't do everything all over again. Which file has to be adjusted?
smith8395john
1 Posts
smith8395john posted this 31 August 2020

Same issue

Same issue
Support Team
Support Team posted this 31 August 2020

Unfortunately, there is no easy workaround for this issue. Several files were updated, thus, it is advised to update the theme in Themler.
It is inevitable process to update themes whenever new CMS version is out with some changes in basic code functions. WordPress 5.5 have changes its usage of scripts.

Gina
Themler Support

Unfortunately, there is no easy workaround for this issue. Several files were updated, thus, it is advised to update the theme in Themler. It is inevitable process to update themes whenever new CMS version is out with some changes in basic code functions. WordPress 5.5 have changes its usage of scripts. Gina Themler Support
reiner6
16 Posts
reiner6 posted this 31 August 2020

This is not good.
Unfortunately, the file can no longer be loaded in Themler.
There comes this error in the appendix.

Import failed
Unfortunately only WordPress Themler themes are supported

This is not good. Unfortunately, the file can no longer be loaded in Themler. There comes this error in the appendix. **Import failed Unfortunately only WordPress Themler themes are supported**

Last edited 31 August 2020 by reiner6

Support Team
Support Team posted this 31 August 2020

Hello,

Please try this way:
1. Copy the theme from the website via FTP
2. Zip-compress it
3. Import in Themler desktop
4. Update it to the latest Themler version. You may need to update Beta update notifications in your profile for this.
5. Export the theme under a different name
6. Install the theme in your CMS.

Sincerely,
Nettie

Hello, Please try this way: 1. Copy the theme from the website via FTP 2. Zip-compress it 3. Import in Themler desktop 4. Update it to the latest Themler version. You may need to update Beta update notifications in your profile for this. 5. Export the theme under a different name 6. Install the theme in your CMS. Sincerely, Nettie
Stagger Lee
1818 Posts
Stagger Lee posted this 07 September 2020

Make some post about manual changes. It is not fair for customers without a licence old websites stop to working.

Make some post about manual changes. It is not fair for customers without a licence old websites stop to working.
reiner6
16 Posts
reiner6 posted this 11 September 2020

Make some post about manual changes. It is not fair for customers without a licence old websites stop to working.

I totally agree with you

> Make some post about manual changes. It is not fair for customers without a licence old websites stop to working. I totally agree with you
Support Team
Support Team posted this 11 September 2020

Try adding this code to the end of the "function.php" of your theme :

function wp51082_restore_empty_comment_type_on_frontend( $comment ) {

if ( ! is_admin() && 'comment' === $comment->comment_type ) {

$comment->comment_type = '';

}



return $comment;

}

add_filter( 'get_comment', 'wp51082_restore_empty_comment_type_on_frontend' );

Gina

Try adding this code to the end of the "function.php" of your theme : function wp51082_restore_empty_comment_type_on_frontend( $comment ) { if ( ! is_admin() && 'comment' === $comment->comment_type ) { $comment->comment_type = ''; } return $comment; } add_filter( 'get_comment', 'wp51082_restore_empty_comment_type_on_frontend' ); Gina
Stagger Lee
1818 Posts
Stagger Lee posted this 11 September 2020

Showed comments HTML wrapper and classes but no comments.
Inside my custom functions.php plugin it shows all comments. Something with priority.

ZZZuper, thank you.

Showed comments HTML wrapper and classes but no comments. Inside my custom functions.php plugin it shows all comments. Something with priority. ZZZuper, thank you.
reiner6
16 Posts
reiner6 posted this 11 September 2020

Thanks, that works great!

Thanks, that works great!
jobssfair1
2 Posts
jobssfair1 posted this 19 September 2020

[BOI][1] Oh I had the Same Issue, but after [UP][2]dating theme my Issue resolved

[BOI][1] Oh I had the Same Issue, but after [UP][2]dating theme my Issue resolved

Last edited 19 September 2020 by Support Team

petercoffin80
1 Posts
petercoffin80 posted this 19 September 2020

Which theme are you using? May be it is nulled, that's why it is an error.

Which theme are you using? May be it is nulled, that's why it is an error.
wouter.rommel
2 Posts
wouter.rommel posted this 26 September 2020

Try adding this code to the end of the "function.php" of your theme :

function wp51082_restore_empty_comment_type_on_frontend( $comment ) {

if ( ! is_admin() && 'comment' === $comment->comment_type ) {

$comment->comment_type = '';

}



return $comment;

}

add_filter( 'get_comment', 'wp51082_restore_empty_comment_type_on_frontend' );

Gina

That worked fine. Thanks,
W

> Try adding this code to the end of the "function.php" of your theme : > > function wp51082_restore_empty_comment_type_on_frontend( $comment ) { > > if ( ! is_admin() && 'comment' === $comment->comment_type ) { > > $comment->comment_type = ''; > > } > > > > return $comment; > > } > > add_filter( 'get_comment', 'wp51082_restore_empty_comment_type_on_frontend' ); > > Gina That worked fine. Thanks, W
You must log in or register to leave comments