Search Results for 'wordpress'
-
Search Results
-
WordPress Environment: Version 4.4.2 subdomain-based Multisite network.
Can someone please describe the difference in BuddyPress behavior when network activated vs. activation only on the main domain (blog_id=1) of a Multisite network?
Thank you very much,
DonHi,
I have bbpress with buddypress and when someone post in the forum, its shows in the activity steam. It is very weird when the reply is very long so I would like to set a exceprt o forums reply in buddypress activity.
Similar like this but instead a blogs post, a forum reply: https://buddypress.org/support/topic/bp-wordpress-activity-stream-excerpt-problem/
Thank you π
Hello people,
This is my first ever post and would be happy for a little help if possible? (please bare with me as I’m new to building websites)
I recently changed my site into a multisite and ever since had a problem when users register. I have 3 dashboards – network admin and then one each for the sites.
When users register they no longer receive an automated email to activate their account and admin no longer receives an email to advise a new user has registered. They show in network admin ‘users’ but don’t show in either of the sites. The only way for me to know if there is a new user is for me to check the ‘pending’ in network admin – users.
I’m not 100% sure that this is since the multisite was added but I think it is. How can I get my site back to how members registered before (activation email/admin notification email/)My site is http://www.fit4site.co.uk
Using – wordpress 4.3.3
Boss 1.1.9 themePlease advise if I have missed any info
Thanks in advance
I’m Using wordpress, BuddyPress, BuddyBoss and myCred. In the myCred hook panel, there is an alert: User photo uploading is not enable.
My question is, Where can I enable user photo uploading?
Hey everyone,
First of all, thanks so much for the work and effort you put into BP. It’s amazing what you all do.I recently updated to the latest BP and WP versions (the details you requested are below).
Issues #1 – when someone initially posts into a group, not a reply to a comment, users who have requested All Email option from the BP Group Email Subscription Plugin receive an email using that BP Group Email Subscription plugin’s email template vs. the new BP email templates. If someone replies to the comment, then the new BP email templates work perfectly.
Issue #2 – the email mentioned in #1 is from wordpress@mydomain.org. while the others are sent from mysite@mydomain.com.
Thanks for any advice you can send my way.
1. Which version of WordPress are you running? 4.4.2
2. Did you install WordPress as a directory or subdomain install? subdomain
3. If a directory install, is it in root or in a subdirectory?
4. Did you upgrade from a previous version of WordPress? If so, from which version? From 4.3.3
5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? Yes
6. Which version of BP are you running? 2.5.2
7. Did you upgraded from a previous version of BP? If so, from which version? 2.4.2
8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
Advanced Cron Manager
Automessage
Black Studio TinyMCE Widget
BP Group Hierarchy
BP Profile Search
Broken Link Checker
BuddyBoss Wall
BuddyDrive
BuddyPress
BuddyPress Activity Plus
BuddyPress Global Search
BuddyPress Group Email Subscription 3.6.0
Select BuddyPress Groups Extras
Select BuddyPress Members Import
Select BuddyPress Message Attachment
Select CCL Salesforce Connector
Contact Form
Easy Google Fonts
Events +
Google Analytics by Yoast
Google Doc Embedder
Google Maps
HiFi
iframe
Invite Anyone
Page Builder by SiteOrigin
PHP Code Widget
PHP Snippets
PopUp Pro
Deactivate
Post Tags and Categories for Pages
Deactivate
Private Community For BP Lite
Redirection
Search shortcode
Shortcodes Ultimate
Simple Follow Me Social Buttons Widget
Simple:Press
UberMenu 2 – WordPress Mega Menu Plugin
User Role Editor
Wordfence Security
WordPress HTTPS
WP-FormAssembly
WPMU DEV Dashboard9. Are you using the standard WordPress theme or customized theme? BuddyBoss
10. Have you modified the core files in any way? Nope
11. Do you have any custom functions in bp-custom.php? Yes
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? Not running
13. Please provide a list of any errors in your serverβs log files. None
14. Which company provides your hosting? BlueHost
15. Is your server running Windows, or if Linux; Apache, nginx or something else? Apache
Thanks to many answers on forums here and blog a came by I have been successful adding a new profile tab I named “funding” which integrates woocoomerce ‘my-account’ page into buddypress. Its working fine yes, but it does not echo that tab tittle ‘Funding Details’.
Below is the code am using…
// Add the funding navigation menu item to BuddyPress' Profile navigation array
add_action( 'bp_setup_nav', 'my_woo_info_nav' );
function my_woo_info_nav() {
global $bp;bp_core_new_nav_item(
array(
'name' => __('Funding', 'buddypress'),
'slug' => 'my-funding',
'parent_url' => $profile_link,
'parent_slug' => $bp->profile->slug,
'default_subnav_slug' => 'my-funding', // We add this submenu item below
'screen_function' => 'bp_woo_profile_subscription_screen',
'position' => 11,
'item_css_id' => 'my-funding'
)
);
}// This is the screen_function used by BuddyPress' navigation
function bp_woo_profile_subscription_screen() {
add_action( 'bp_template_title', 'bp_woo_profile_subscription_screen_title' );
add_action( 'bp_template_content', 'bp_woo_profile_subscription_screen_content' );
bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
}// Echo the screen title
function bp_woo_profile_subscription_screen_title() {
global $bp;
echo 'Funding Details';
}// Add the WooCommerce My Account shortcode to the screen
function bp_woo_profile_subscription_screen_content() {
echo do_shortcode( '[woocommerce_my_account]' );
}I have read through many forums and have done many work arounds but cant find what am doing wrong. The tab screen tittle just wont display on the tab.
Site : https://crowdinfund.com/
Buddypress version: 2.5.1
Wordpress version: 4.4.2
WooCommerce version: 2.5.4I will be happy with help to resolve this issue.
Thanks in advance,
Ike.
I’m working on filtering titles for BuddyPress pages (specifically, Groups and Group Forums). I’m having some trouble so maybe someone can ppint me in the right direction
Since 4.1, WordPress has deprecated the
wp_title()function, and instead developers should use thedocument_title_partsfilter. The filter is documented in the Code Reference, and an example using this filter can be seen here.I’ve successfully used this filter on my very basic Twentysixteen child theme, but that method doesn’t seem to adopt to a Group page template I created and the forums that I’ve created and assigned under them. Here was a basic hack I used for testing purposes:
// output a custom title for Groups & Forums function custom_groups_title( $title ){ if ( bp_is_group() ){ $group_name = bp_get_current_group_name(); if ( bp_current_action() == 'forum') { $group_name .= " Chatboard"; } $title['title'] = $group_name . ' | Awesome Website, Inc.'; $title['site'] = ''; $title['tagline'] = ''; } return $title; } add_filter('document_title_parts', 'custom_groups_title', 10);the title is not getting filtered at all, so I guess BuddyPress is bypassing or overriding this filter.
Can anyone point me in the right direction for filtering the title?
Hello, im having problems with the registration and activity pages on my website, im new at this, so i dont know if i’ve made a mistake and where i might have made it…
I installed buddypress through wordpress plug-in search engine, and then went to settings and set up everything as i wanted, edited the profile fields as i needed, and then when i tried to visit the pages i only get the title of the page and the rest is blank, as if it where a normal page.
I’ve been searching different forums about people having the same problem, but i haven’t been able to find a solution, they’ve either been posted a lot of years ago, or they just say solved and do not share how they solved it.
If anyone can help, i will appreciate it a lot!!I have read the codex as many suggested, but it did not help because i did everything as it indicate to do it.
I created the register and activate page and then assigned them under Settings/Buddypress/Pages, how the codex indicates so. (i did not edit in any way the pages, i only created and assigned them.
I made sure that in Settings/General under membership the “anyone can register” is checked.
I’ve checked if the register.php and activate.php files do exist.
I read that it might be a bug, so i tried uninstalling this version (V2.5.2) and installing V2.5.1 and V2.3.5, just in case that would fix it…I truly don’t know what else to do.
Its my first website and i do not know a lot of coding, im learning as i go.
Could it be a bug in the plug-in? if so… how can i fix it?Just in case it helps, my host company is hostgator, WordPress is updated to the lates version, so is buddypress.
I have the following plug-ins installed (i know they are a lot, but since i do not know how to code, i sort of need them…) :
Admin Custom Login
Black Studio TinyMCE Widget
Black Studio Touch Dropdown Menu
BP Registration Options
BuddyPress
BuddyPress Cover Photo
BulletProof Security
Confirm User Registration
Contact Form 7
Duplicate Post
Hide Admin Bar From Non-admins
Lightbox Plus Colorbox
Meta Slider
No Right Click Images Plugin
Page Builder by SiteOrigin
PMPro KISSmetrics
Polylang
Protect My Contents
Quick Page/Post Redirect Plugin
SB Welcome Email Editor
SiteOrigin Widgets Bundle
Spacer
Title Remover
Wordfence Security
WordPress Access Control
WP Bouncer
WP Maintenance ModeThanks in advance for your help!
Hello,
I currently have BuddyPress installed onto my wordpress site but wish to remove it. I have several dozen blog posts from different users posted on the site and am afraid of losing them. How do I remove buddypress without losing my blog posts?Thanks!
I need my WordPress members to show in the member directory when users click the BuddyPress members tab. For my members not to show up in BuddyPress is very confusing to visitors, and my site isn’t integrated with BuddyPress unless all of my WordPress members are represented in the BuddyPress member list.
Is there a way to do this yet? The only thing I’ve found today is code that I’m hesitant to use, because it’s six years old (https://buddypress.org/support/topic/activating-existing-users/page/2/) and a plugin that costs money, but when you click a link to see how much it just refreshes the page :/
I’m hoping developers have created a way for this to happen, and I just haven’t stumbled upon it yet. It really needs to be available for true integration.

