bourgesloic
Forum Replies Created
-
Forum: Plugins
In reply to: [Post Rating and Review] Rating bar not showing review countWould it be possible for you to give me the url of your website? I will have a look. Thanks.
Forum: Plugins
In reply to: [Post Rating and Review] Rating bar not showing review countI just have seen on your screencap that the review does not include a rating. The chart bar is based on the number of ratings: therefore, if you do not have a rating linked to the review text, the chart won’t show it.
Forum: Plugins
In reply to: [Post Rating and Review] Rating bar not showing review countHello again,
about the first issue that you mentioned, could you tell me if comments are setup with a admin approbation on your website? If yes, the review chart is updated after approbation.
If no, is this always the case (i.e. the chart is not updated after a review)?Forum: Plugins
In reply to: [Post Rating and Review] Rating bar not showing review countHello,
Post authors can reply through WordPress Admin (in the comment menu).
Is it an issue for you? If yes, I could look if I can add a reply button or link in front office.
Let me know.Forum: Plugins
In reply to: [Post Rating and Review] Send email to author of reviewed post?Hello Justano,
Release 1.1.0 includes email notification functionalities.
I hope it will be fine for you.Forum: Plugins
In reply to: [Post Rating and Review] Non-clickable 0 note barsHello,
In release 1.1.0, I added a “no-rating” class in the chart widget when there is no rating.
Let me know if it’s ok for you.
Lo?cForum: Plugins
In reply to: [Post Rating and Review] Send email to author of reviewed post?Hello Justano,
Thanks a lot. I appreciate.
Concerning your request, It’s a good idea. You could already do it through the plugin’s hooks depending on your coding skills.
Otherwise, I will consider integrating this functionality in a further release (within 2-3 weeks).
Let me know.P.S. do not hesitate to leave a review, it would be great!
Forum: Plugins
In reply to: [Members - Membership & User Role Editor Plugin] Warning in template.php fileThanks a lot. In my case, it was a plugin (ac_shortcodes) which did generate this warning.
Forum: Plugins
In reply to: [LearnPress - WordPress LMS Plugin] Question used in several quizzThanks for your answer but I found a solution through filter to allow that. Find below what I have made in functions.phpp.
It seems it’s working.remove_filter( ‘learn_press_modal_search_items_exclude’, array(‘LP_Admin_Ajax’, ‘_modal_search_items_exclude’), 10 );
add_filter(‘learn_press_modal_search_items_exclude’,’lbo_enleve_exclude’, 15 , 4);
function lbo_enleve_exclude($exclude, $type, $context, $context_id) {
if ($type == ‘lp_question’) {
return $exclude;
} else {
return LP_Admin_Ajax::_modal_search_items_exclude( $exclude, $type, $context, $context_id );
}
}