Gemini Labs
Forum Replies Created
-
Forum: Plugins
In reply to: [Site Reviews] Make user name linkableFYI: Site Reviews v7.2.0 will include an Ultimate Members integration that will do this by default in reviews displayed on member profiles if the integration is enabled.
Coming in Site Reviews v7.2.0:
It’s not working for you because Ultimate Member gets the list of users with Ajax and it does not use The Loop in the template files.
I will look into adding an integration for this which can be enabled in the settings.
And how are you adding the
[site_reviews_summary]
shortcode to the profile cards?Site Reviews can only get the User ID from the
profile_id
option if the Ultimate Member um_get_requested_user() function is working.How are you displaying the profile cards, are you using some custom code or is that functionality baked into Ultimate Member plugin?
What does this show in your profile cards?
echo sprintf('User ID: %s', um_get_requested_user());
And, have your reviews been assigned to your users?
Site Reviews uses the Ultimate Member um_get_requested_user() function to get the profile ID.
If that’s not working, you can use the following filter hook to modify it:
add_filter('site-reviews/assigned_users/profile_id', function (int $profileId): int {
// change the profile ID here
return $profileId;
});Forum: Plugins
In reply to: [Site Reviews] Make user name linkableTry this: https://pastebin.com/1mMRr43R
Forum: Plugins
In reply to: [Site Reviews] “No reviews” text if no ratingIt should be released by the end of this week.
If you can’t wait, you can try this: https://www.dropbox.com/scl/fi/wxwki9glplkh3sl0g2f57/site-reviews-v7.2.0-beta1.zip?rlkey=gf0ex3br6w8xm8nea9cmi8nh9&dl=1
To install it:
- Go to the WP Admin > Plugins > Add New Plugin page, click the “Upload Plugin” button, then select the zip file you downloaded.
- It will ask if you want to replace the existing version with the new version, click yes (or the equivalent button).
Have you tried using
profile_id
?Forum: Plugins
In reply to: [Site Reviews] Change the color of the authorTry this CSS:
.glsr-review-author {
color: red;
}Forum: Plugins
In reply to: [Site Reviews] Remove the table of contentsThat’s not coming from Site Reviews.
Try flushing the Hummingbird cache. If that doesn’t fix it, you will need to try the “Basic Troubleshooting Steps” on the Site Reviews > Help & Support page to track down the plugin/theme that is responsible.
Forum: Plugins
In reply to: [Site Reviews] Remove the table of contentsDo you mean the Rating Summary?
Forum: Plugins
In reply to: [Site Reviews] Woocomerce reviews not getting importedWhat have you tried?
Forum: Plugins
In reply to: [Site Reviews] “No reviews” text if no ratingI am waiting on the Procaptcha team to get back to me with some API updates to their captcha integration. After that I can release it.