-
Prashant Singh replied to the topic After installing buddypress, google captcha is no longer displayed in the forum Installing BuddyPress 6 years, 1 month ago
This is really strange because these are the hooks and ways to register and enqueue script. One last thing I can tell you is that just override entry.php and put script tag just after `bp_nouveau_activity_hook( ‘after’, ‘entry’ );
`This is not the right way but we can do it to test.
Thanks
-
Prashant Singh replied to the topic Facebook Video in BuddyPress in the forum Creating & Extending 6 years, 1 month ago
Ok. great 🙂
-
Prashant Singh replied to the topic After installing buddypress, google captcha is no longer displayed in the forum Installing BuddyPress 6 years, 1 month ago
Have you tried ‘wp_enqueue_scripts’ in place of ‘wp_footer’?
Also, check if there is any error in browser console.
Thanks
-
Prashant Singh replied to the topic Facebook Video in BuddyPress in the forum Creating & Extending 6 years, 1 month ago
Hi,
BuddyPress already supports embed feature https://codex.buddypress.org/getting-started/embeds/ but if it is not working for facebook please check these plugins https://wordpress.org/plugins/iframely/
Thanks
-
Prashant Singh replied to the topic After installing buddypress, google captcha is no longer displayed in the forum Installing BuddyPress 6 years, 1 month ago
And also are you sure that these variables are having values ‘$api_url, $deps’?
-
Prashant Singh replied to the topic After installing buddypress, google captcha is no longer displayed in the forum Installing BuddyPress 6 years, 1 month ago
Hi,
Please confirm if you are writing the function like this:
add_action( 'wp_footer', 'gglcptch_add_scripts' );
function gglcptch_add_scripts(){
wp_register_script( 'gglcptch_api', $api_url, $deps, $gglcptch_plugin_info['Version'], true );
wp_enqueue_script('gglcptch_api');
}Thanks
-
Prashant Singh replied to the topic Selecting which other subdomains can view/access a group in the forum Miscellaneous 6 years, 1 month ago
Hi,
You can make group private and then members belonging to that group can access only and others have to request to request to join that group and then you can easily deny that if they are from different company.
Please check:
Thanks
-
Prashant Singh replied to the topic Member Header Buttons Do Not Show in the forum How-to & Troubleshooting 6 years, 1 month ago
Welcome 🙂 Glad to know that you got it 🙂
-
Prashant Singh replied to the topic Member Header Buttons Do Not Show in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
The actions are there and it will be visible on other member profile’s https://prnt.sc/l2aky1. I think you are viewing your own that’s why you are not getting that. Also you are checking in wrong file, it is coming from cover-image-folder.php and this is the code
bp_nouveau_member_header_buttons(
[Read more]
array(
'container' =>… -
Prashant Singh replied to the topic can't make groupes in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Please send a screenshot of the page ‘your_site_url/wp-admin/admin.php?page=bp-settings’ and let us know what are the options checked there.
Also please try once by disabling plugins except BuddyPress one by one to see if the issue remains or not.
Thanks
-
Prashant Singh replied to the topic After installing buddypress, google captcha is no longer displayed in the forum Installing BuddyPress 6 years, 1 month ago
Hi,
Can you please confirm which JS you are missing or if can explain which plugin or code you are using to implement captcha there?
I think you are not able to get captcha working there now, right?
Thanks
-
Prashant Singh replied to the topic group creation on registration in the forum Creating & Extending 6 years, 1 month ago
Hi,
Please check these plugins: https://wordpress.org/plugins/buddypress-registration-groups-1/
Hopefully, this will help you.
Thanks
-
Prashant Singh replied to the topic How to add profile field (Drop Down Menu) for all users list in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Listing all the users there in the dropdown is not possible without any customization.
Thanks
-
Prashant Singh replied to the topic Member Header Buttons Do Not Show in the forum How-to & Troubleshooting 6 years, 1 month ago
add_action( 'bp_member_header_actions' ,'ps_test_action');
function ps_test_action(){
echo 'Test';
}Please paste this code in your child theme’s functions.php file and check if it is printing ‘Test’ there or not. Also please check if you have enabled friendship and other options in BuddyPress settings.
Thanks
-
Prashant Singh replied to the topic After installing buddypress, google captcha is no longer displayed in the forum Installing BuddyPress 6 years, 1 month ago
bp_nouveau_activity_hook( 'before', 'entry_comments' ); bp_nouveau_activity_hook( 'after', 'entry_comments' );
you can use any of them and they are in the file entry.php under activity folder. Also thisbp_activity_before_save
is still there and it do not depends on any template so you can go with this.Thanks
-
Prashant Singh replied to the topic Hide profile fields from editing for specific users in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Please try this plugin https://wordpress.org/plugins/buddypress-admin-only-profile-fields/
The UI is changed now so you will find the option in visibility drop-down.
Thanks
-
Prashant Singh replied to the topic Identicon lost in the forum How-to & Troubleshooting 6 years, 1 month ago
Glad to know that it helped you 🙂
-
Prashant Singh replied to the topic Identicon lost in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
I have tried to generate the same scenario with the default theme(2016) and Legacy Template. Please see: https://screencast-o-matic.com/watch/cF6eryYlWO
It works fine for me. Can you please check the same with default theme as well as try disabling other plugins except BuddyPress to check if any of them created the issue.
Thanks
-
Prashant Singh replied to the topic Not showing accept friend request option in the forum Installing BuddyPress 6 years, 1 month ago
Hi,
I am facing missing members on members page.
Members gets listed on members page as soon as they login to the site. BuddyPress always shows active members in the directory. Please confirm once if they have ever logged-in or not.
I have another issue when I tried to add friend from another user profile then I have seen new user friendship…
-
Prashant Singh replied to the topic Password Field CSS Override in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
With the following CSS, you can remove the border :
.bf_field_group.elem-user_pass fieldset {
border: none;
}and for the element style like email element you have to check there which class is doing that. Because in default theme both the fields look very similar so certainly there must be some theme styling that is getting applied on…[Read more]
- Load More
@prashantvatsh
Active 3 months, 3 weeks ago