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....
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 ]
Ok I got the rating shortcode and its working but I just want to show only total votes, no stars and average.
And also tell me please that, what If i dont want to show schema of rating.
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 {
display: none;
}
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"
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 {
display: none;
}
Actually i dont want to use css, is it possible without css.
I'm sorry, but not. You should use the CSS code for this purpose.
Ok, is there code to show the number of comments and I make itemprop = false but still showing in structure data.
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.
Any help with this schema issue ?
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.
Actually I am already using a rating schema so I dont want to use that one which you are using..
No help with that?
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.
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.
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"]
As you said and I already did this http://prnt.sc/nalp76 but still showing me...
Hi xaibi,
The screenshot clarifies nothing. It would be better if you send us the whole code.