Notifications
Clear all

Some issues I am facing..

25 Posts
2 Users
0 Likes
4,158 Views
(@xaibi)
Eminent Member
Joined: 5 years ago
Posts: 20
Topic starter  

Hello,

 You create a great plugin but i am facing some issues and want to customize something..

1 -  Its load the comment form but when we click on the box where we have to write, its not showing the SUBMIT Buttons. We have to wait for whole page loading then it comes.

2 - All comments are not showing  on my site.

3 - (Customize) How I can show just the total numbers of rating. https://prnt.sc/n88di7

 

Please help me with this....


   
Quote
Astghik
(@astgh)
Illustrious Member Admin
Joined: 6 years ago
Posts: 5872
 

Hi @xaibi,

First of all, thank you for your interest in wpDiscuz. 

1 -  Its load the comment form but when we click on the box where we have to write, its not showing the SUBMIT Buttons. We have to wait for whole page loading then it comes.

In any case, you'll need to wait until the whole page will be loaded.I'd suggest you add this CSS code in Dashboard > Comments > Settings > Styling > "Custom CSS code " textarea. This CSS allows you to display a submit button before clicking in a text editor.

#wpcomm .wc-form-footer {
display: block !important;
}

2 - All comments are not showing  on my site.

wpDiscuz has a Comments loading/pagination type option, that allows to changing pagination to one of following types:

  • [Load more] Button
  • [Load rest of all comments] Button
  • Load all comments
  • Lazy load comments on scrolling

The option is located in the Dashboard > Comments > Settings > Comment List admin page. In your case, you need to choose the Load all comments option. 

More info here: https://wpdiscuz.com/docs/wpdiscuz-documentation/settings/comment-list-settings/#pagination

3 - (Customize) How I can show just the total numbers of rating.  https://prnt.sc/n88di7

 you should use the [wpdrating] shortcode. 

Shortcode Attributes:

  • metakey="all" 
  • show-lable  = true/false
  • show-count = true/false
  • show-average = true/false
  • itemprop = true/false

Full shortcode example:

[wpdrating metakey="all"  show-lable  = true  show-count = true show-average = true itemprop = true ]

   
ReplyQuote
(@xaibi)
Eminent Member
Joined: 5 years ago
Posts: 20
Topic starter  

Ok I got the rating shortcode and its working but I just want to show only total votes, no stars and average.


   
ReplyQuote
(@xaibi)
Eminent Member
Joined: 5 years ago
Posts: 20
Topic starter  

And also tell me please that, what If i dont want to show schema of rating.


   
ReplyQuote
Astghik
(@astgh)
Illustrious Member Admin
Joined: 6 years ago
Posts: 5872
 

@xaibi,

Tho show only total votes use this shortcode:

[wpdrating metakey="all" show-lable="true" show-count="true" show-average="average" itemprop="false"]

And the following CSS to hide the stars: 

.wpdiscuz-stars-wrapper-inner {
displaynone;
}

   
ReplyQuote
Astghik
(@astgh)
Illustrious Member Admin
Joined: 6 years ago
Posts: 5872
 

And also tell me please that, what If i dont want to show schema of rating.

In this case, remove the following part form the shortcode I've provided here: 

https://gvectors.com/forum/how-to-and-troubleshooting/some-issues-i-am-facing/#post-14697

itemprop="false"

   
ReplyQuote
(@xaibi)
Eminent Member
Joined: 5 years ago
Posts: 20
Topic starter  
Posted by: Astghik

@xaibi,

Tho show only total votes use this shortcode:

[wpdrating metakey="all" show-lable="true" show-count="true" show-average="average" itemprop="false"]

And the following CSS to hide the stars: 

.wpdiscuz-stars-wrapper-inner {
displaynone;
}

Actually i dont want to use css, is it possible without css.


   
ReplyQuote
Astghik
(@astgh)
Illustrious Member Admin
Joined: 6 years ago
Posts: 5872
 

I'm sorry, but not. You should use the CSS code for this purpose. 


   
ReplyQuote
(@xaibi)
Eminent Member
Joined: 5 years ago
Posts: 20
Topic starter  

Ok, is there code to show the number of comments and I make itemprop = false but still showing in structure data.


   
ReplyQuote
Astghik
(@astgh)
Illustrious Member Admin
Joined: 6 years ago
Posts: 5872
 

@xaibi,

you should use the get_comments_number() function to show the number of comments. 

 I make itemprop = false but still showing in structure data.

I'm sorry, but I don't follow you. Please try to explain in other words. 


   
ReplyQuote
(@xaibi)
Eminent Member
Joined: 5 years ago
Posts: 20
Topic starter  

I make False but its showing me.. https://prnt.sc/n8cm6t


   
ReplyQuote
(@xaibi)
Eminent Member
Joined: 5 years ago
Posts: 20
Topic starter  

Any help with this schema issue ?


   
ReplyQuote
Astghik
(@astgh)
Illustrious Member Admin
Joined: 6 years ago
Posts: 5872
 

@xaibi,

The "AverageRating" just a name. If you hide this name, all content will not be shown. The value of the itemprop property is being used for SEO.  If you set it false it'll not be indexing by Google. 

 


   
ReplyQuote
(@xaibi)
Eminent Member
Joined: 5 years ago
Posts: 20
Topic starter  

Actually I am already using a rating schema so I dont want to use that one which you are using..


   
ReplyQuote
(@xaibi)
Eminent Member
Joined: 5 years ago
Posts: 20
Topic starter  

No help with that?


   
ReplyQuote
Astghik
(@astgh)
Illustrious Member Admin
Joined: 6 years ago
Posts: 5872
 

Hi @xaibi,

Actually I am already using a rating schema so I dont want to use that one which you are using..

As I've already mentioned this can be reached if you set the false value for the itemprop property. 

rating

   
ReplyQuote
(@xaibi)
Eminent Member
Joined: 5 years ago
Posts: 20
Topic starter  

This is a bad impact if I use 2 kind of rating schema in my website. I dont want to use this schema as I already told you that I am using my own schema.


   
ReplyQuote
Astghik
(@astgh)
Illustrious Member Admin
Joined: 6 years ago
Posts: 5872
 

Hi @xaibi,

I understand what you want, and I've already given you an answer. All you need is change the itemprop property's value and set it false. The shortcode is:

[wpdrating metakey="all" show-lable="true" show-count="true" show-average="average" itemprop="false"]

   
ReplyQuote
(@xaibi)
Eminent Member
Joined: 5 years ago
Posts: 20
Topic starter  

As you said and I already did this http://prnt.sc/nalp76 but still showing me...


   
ReplyQuote
Astghik
(@astgh)
Illustrious Member Admin
Joined: 6 years ago
Posts: 5872
 

Hi xaibi,

The screenshot clarifies nothing. It would be better if you send us the whole code.


   
ReplyQuote
Page 1 / 2
Share:
Scroll to top