-
Varun Dubey replied to the topic GravityForm, entries, groups and else in the forum Creating & Extending 6 years, 5 months ago
@jschodde it will need custom codes to be added after form submission hook of gravity form.
-
Varun Dubey replied to the topic Blank Notifications in the forum How-to & Troubleshooting 6 years, 5 months ago
@bossmanuk try to debug with default WordPress theme (2017) with BuddyPress plugin only it might be possible some theme code is creating an issue.
-
Varun Dubey replied to the topic 500 error in the forum How-to & Troubleshooting 6 years, 5 months ago
@stevenseagal follow the steps mentioned here and check error logs
https://codex.wordpress.org/Debugging_in_WordPress
based on error log we can suggest, how to fix it. -
Varun Dubey replied to the topic Activity Load More Not Working in the forum How-to & Troubleshooting 6 years, 5 months ago
@aronprins if that’s issue with default theme as well You can submit at https://buddypress.trac.wordpress.org/report
-
Varun Dubey replied to the topic Buddypress activity plus pludin issues in the forum How-to & Troubleshooting 6 years, 5 months ago
Keep eye on https://wordpress.org/support/topic/buddypress-activity-plus-plugin-issues/ thread. That’s all you have to do
-
Varun Dubey replied to the topic Fatal error: Call to undefined function bp_nouveau_before_loop() in the forum Installing BuddyPress 6 years, 5 months ago
@sjregan then it must be theme specific error, We had also got similar reports for Kleo users. You can consult with their support.
As per my understanding up to now, a theme can not have inbuilt support for both sets of BuddyPress template files, they have to make their choice and define inside theme code for which template set they have added…[Read more] -
Varun Dubey replied to the topic Error after update in the forum How-to & Troubleshooting 6 years, 5 months ago
@otalatita at which url you are getting above error.
You can also confirm from Kleo support if they have updated their theme for nouveau support. -
Varun Dubey replied to the topic Buddypress in the forum How-to & Troubleshooting 6 years, 5 months ago
@frankcaban Try BP Profile Search plugin
-
Varun Dubey replied to the topic Buddypress activity plus pludin issues in the forum How-to & Troubleshooting 6 years, 5 months ago
@shahriar83 You have already created a thread with BP activity plus support, Explain to them how to replicate the issue.
You can replicate the issue with Template Pack BuddyPress Nouveau after BP 3.0 install using WordPress Default theme “Twenty Seventeen” at singe group activity page.
-
Varun Dubey replied to the topic Buddypress activity plus pludin issues in the forum How-to & Troubleshooting 6 years, 5 months ago
@jonaskjodt that’s very old thread and different topic. There are some structural changes inside the template files and actions are also updated.
-
Varun Dubey replied to the topic Change User Role on form submission in the forum How-to & Troubleshooting 6 years, 5 months ago
@bassibabes1 check once with CF7 support
-
Varun Dubey replied to the topic Editing the registration page in the forum Creating & Extending 6 years, 5 months ago
@snorklebum if you want to use your existing newsletter plugin, it will need some custom code to create integration as an optional choice for users.
-
Varun Dubey replied to the topic Buddypress activity plus pludin issues in the forum How-to & Troubleshooting 6 years, 5 months ago
I am able to replicate the issue, You can report here once
https://wordpress.org/support/topic/problem-with-new-buddypress-template/ -
Varun Dubey replied to the topic Edit or Display "Profile Fields Group" on homepage or elsewhere in the forum Third Party Plugins 6 years, 5 months ago
@onions2578 BP does not have any inbuilt feature to create survey forms with a user-defined set of questions.
-
Varun Dubey replied to the topic @ mention suggestion not working in the forum Installing BuddyPress 6 years, 5 months ago
@bpistone for forums try
-
Varun Dubey replied to the topic Required Profile Field _ Terms Of Service in the forum How-to & Troubleshooting 6 years, 5 months ago
@dannydlb You can try these patches https://buddypress.trac.wordpress.org/ticket/7845
-
Varun Dubey replied to the topic Showing + Filtering Groups in the forum How-to & Troubleshooting 6 years, 5 months ago
even if that work with zero, the search result will also not visible
-
Varun Dubey replied to the topic Showing + Filtering Groups in the forum How-to & Troubleshooting 6 years, 5 months ago
@mikelast
To change the number of groups display at group directory page, you can use the following snippetadd_filter( ‘bp_after_has_groups_parse_args’, ‘wbcom_alter_groups_parse_args’ );
function wbcom_alter_groups_parse_args( $loop ) {
if ( bp_is_groups_directory() ) {
$loop[‘per_page’] = 2;
}
return $loop;
} -
Varun Dubey replied to the topic Editing the registration page in the forum Creating & Extending 6 years, 5 months ago
you can check https://wordpress.org/plugins/mailchimp-for-wp/
-
Varun Dubey replied to the topic version 3.0 problems in the forum How-to & Troubleshooting 6 years, 5 months ago
@geertbaven code might be written inside the template file of the theme
theme-name/buddypress/groups/single/home.phpYou will need to remove bp_is_group_forum() code; you are not using forums that’s why it’s creating an issue.
Inside the latest version above code is removed, in core discussion developers had talked about it to put it back. - Load More
@vapvarun
Active 3 weeks, 4 days ago