VibeThemes
Forum Replies Created
-
Forum: Plugins
In reply to: [Groups] WPLMS Theme: Content accsess to Quizes@alenastryhina : This almost confirms that the groups plugin is filtering the_content filter which only applies on the question content. The fix here would be to remove the groups function on the_content filter on the quiz results.
Temporary Fix : Try adding this code in your child theme functions.php file, it will remove all the interactions on the_content filter which is rendering the question content:
add_action('template_redirect',function(){ //BuddyPress function to check if user is accessing here profile : if(function_exists('bp_is_my_profile') && bp_is_my_profile()){ //remove the "groups" function restricting the user's access. remove_all_filters('the_content'); } });
Note : You might also need to force clear the quiz cached results, so try taking a new quiz after applying the above fix and checking its results.
————
@kento : Here’s what I suggest as a final fix:
add_action('template_redirect',function(){ //BuddyPress function to check if user is accessing here profile : if(function_exists('bp_is_my_profile') && bp_is_my_profile()){ //remove the "groups" function restricting the user's access. remove_filter('the_content','GROUPS CLASS/FUNCTION RESTRICTING THE ACCESS',PRIORITY); } });
Forum: Plugins
In reply to: [BP Social Connect] Date of birthInteresting request, we will check this in future.
Forum: Plugins
In reply to: [BP Social Connect] Get facebook avatarYes it is possible.
Forum: Plugins
In reply to: [BP Social Connect] Some Errors1. IF Google returns a nick name then it will map otherwise defaults to email id.
2. Check the folder permissions of WP-content/uploads/avatar should be 755
3. Fix coming up in 1.5
4. Fix coming up in version 1.5Forum: Plugins
In reply to: [BP Social Connect] A few questionsMap the returned fields from different social profiles Facebook/Google with the BuddyPress profile fields which would be automatically updated with the returned values from the user’s social profile.
Forum: Plugins
In reply to: [BP Social Connect] Twitter connect?Yes, Twitter + Linked in is on our list.
Forum: Plugins
In reply to: [BP Social Connect] Not mapping UsernameI am adding this as a feature request for our next update.
Track request : https://trello.com/c/A2l2XxXuPull request submitted : https://github.com/strangerstudios/paid-memberships-pro/issues/381
Forum: Plugins
In reply to: [DW Question & Answer] Two small requestsIf you have a github repo let me know if you accept pull requests.
This is a very good plugin that just fits my requirements, would be evaluating soon.
Forum: Fixing WordPress
In reply to: Multiple Image galleries category wise.you can try vSlider 4.0 at vibethemes.com. We have recently developed this plugin and will be uploading soon in the WordPress Repo