Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 5,626 through 5,650 (of 32,678 total)
  • Author
    Search Results
  • Slava Abakumov
    Moderator

    AFAIK, installing BuddyPress on a subdomain of WordPress MultiSite won’t give you BP widgets (and other content) on a main site, thus you won’t be able easily (without coding) display BuddyPress content on any site in the network, excerpt the BP-site.
    So BuddyPress content will be available only on site where you activated BuddyPress.

    I hope I’ve answered your question.

    #259606
    Slava Abakumov
    Moderator

    So bp.example.com is the subdomain, that you use for BuddyPress. Does it have separate WordPress installation (not related to example.com)?
    Is WordPress on your example.com MultiSite or ordinary?

    #259602

    In reply to: Activity BuddyPress

    Slava Abakumov
    Moderator

    That’s quite a lot of custom code.
    All that activities are not related to BuddyPress directly. Although you can store them in activity directory when that action was performed using bp_activity_add() function.

    But as everything you described is not a default WordPress and BuddyPress functionality – I strongly advice you to find some developers, that will implement all that.

    #259601
    danbp
    Participant

    Hi @kida18,

    i would suggest to use this premium plugin:

    WordPress Restrict Email Domains


    For < 20$, i think it’s worth ! 🙂

    #259596
    darklord236
    Participant

    I’m currently using wordpress version 4.6.1, and buddypress version 2.6.2. I am using the Gmail SMTP plugin. I have configured it correctly, and I can send test emails already. My problem is, Buddypress still won’t send activation emails. My question is, what is causing this problem, and how do I fix it?

    #259590

    In reply to: Groups on Buddy press

    jillparks
    Participant

    Very helpful. Yes, I use Yammer now, and I can have my post (not a blog post, more like a FB post) email everyone in the group.

    Sounds like https://wordpress.org/plugins/groups-members-mail/ will work. Thank you!

    #259589

    In reply to: Groups on Buddy press

    danbp
    Participant

    Hi,

    if you mean mailing blog posts to members and if you use BuddyPress only for it’s group component, you have better to use WP Groups plugin. You don’t need BP.

    if you mean group notices, you can code something yourself or use this plugin or this one and send the post permalink to the group users.

    Not exactly what you asked for, but i have no better idea.

    For the phone question, i’ve never heard about such an app.

    #259583
    danbp
    Participant

    hi @sherissa_r,
    i asked on Slack where @hnla answered that “clearly something is wrong”. I opened a ticket, just in case of.

    Now we’ve to wait a little moment the time a dev can investigate this.

    mdarcangelo66
    Participant

    Hi, I need to know if there is a code or anything to advise the user after that he submit the registration ( so past the complete registration step ) that an email with a confirmation link has been sent in order to activate the account ect. because at this stage once the registration has complete it is usually redirect to the main page without further notice, as a confirmation email can go into the spam ect. so a text to remind of what to do or to check would be beneficial and so common really…

    Thanks

    Wordpress 4.5.4 | Buddypress 2.6.2

    #259554
    danbp
    Participant

    Hi,

    you’re on the BuddyPress support forum where we can’t help for third party plugins.
    If you have questions related to bbPress (if you use this plugin), you have to ask on their support.

    For BuddyPress for Sensei plugin or WC Sensei, you can check the doc and/or ask on the plugin support too.

    danbp
    Participant

    Hi,

    by reading the first topic, it sounds like you try to use more than one child theme !

    I already have activated my other child theme

    If it is the case, it’s not the way to proceed. 😉

    1) You should have only one child-theme activated.
    2) in this child, you add a folder called buddypress.
    3) if you need to modify some BP templates, you copy the original from wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/ into the child BP folder.

    Example of what you should have:
    wp-content/themes/XYZ theme
    wp-content/themes/XYZ-child/

    Let’s say you want to modify BP’s register page.
    wp-content/themes/XYZ-child/buddypress/members/register.php
    or you want to modify the profile header template
    wp-content/themes/XYZ-child/buddypress/members/single/member-header.php

    And that’s it ! The only thing you have to do is to pick the right file and add it to the child by respecting the original path who starts at: /buddypress/path/to/file.php

    Inside the template file, yo can manipulate html tags and find different action hooks ( do_action( 'something' ); ). Take care to not rename or remove the existing class/ID names whithout knowing what you do.

    In bp-custom.php, you can manipulate BP’s behave by adding custom functions.

    In the child-theme style.css, you manipulate whatever related to your theme layout – for the entire site, including BP or other plugins.

    And as all this is done via the child, anything will remain after any update of BuddyPress, your original theme, WordPress or plugins.

    Reading actively the forum will bring you other answers, tips and tricks.

    #259547
    danbp
    Participant

    Hey, do you mean this ?

    #259545
    ankesh95
    Participant

    The “change profile picture” option not working for my website suddenly (maybe after upgrading wordpress and buddypress to the latest version).
    Whenever an user tries to change his profile picture…..the green msg saying upload successful does pop up but the avatar does not change……and the previously uploaded avatars are not deleted either….I have tried out every possible thing i could from the backend…..but in vain…..

    #259541
    danbp
    Participant

    Ok, i misunderstood the whole… The initial question was:
    what I am trying to link to is
    http://localhost/wordpress/community/profile/<displayed_user>/

    Try this:

    function tab_custom_link_to_page() {
    
    	if ( bp_is_activity_component() || bp_is_page( BP_MEMBERS_SLUG ) ) {
    
    		// link to what you want		
    		$link = bp_get_root_domain() . '/community/profile/'. bp_get_displayed_user_username();
    		echo '<li><a href="'. $link .'">Community</a></li>'; 
    	}  
    }
    add_action( 'bp_member_options_nav', 'tab_custom_link_to_page' );
    #259540
    Slava Abakumov
    Moderator

    The only option is to use CSS (in style.css) in your child theme to modify that. Or some plugins, that give ability to apply styles without modifying files (Siteorigin CSS).

    #buddypress #register-page label { 
        font-size:120%;
    }
    #259536
    wolfpup64
    Participant

    That seems to work for pulling the appropriate user, I input it into the line shane provided

    function communityprofile_screen() {
       bp_core_redirect( site_url( '/community/profile/'.bp_get_loggedin_user_link()() ) );
    }

    but it looks like it gets overwritten by the slug in the aforementioned code that makes the tab appear and leads me to the url:

    http://localhost/wordpress/users/*username*/communityprofile/

    once again, if I try to remove the slug from the line the tab itself disappears. oh man this has been frustrating.

    #259534
    danbp
    Participant

    No, nothing like that. This can only be achieved within site admin. And by default a group mod is a simple subscriber which has no access to group members administration.

    The first option is to promote mods to group admin, and in this case he can from front-end, kick/ban user, promote or remove users and nothing else.

    The other option would be to give them a WP role who let them access to group members admin and evtl. using a plugin to block their access to all other admin parts… (ie. user role editor)

    In addition, you could also get some dev’s opinion to this…
    https://buddypress.trac.wordpress.org/ticket/5543
    https://buddypress.org/support/topic/how-could-a-group-moderator-edit-group-details/

    reusmith990
    Participant

    Please, I just installed a plugin called “BP Profile Cover” and immediately I got this error…I’ve trying to fix it but to no avail.

    Fatal error: Call to a member function get_primary() on a non-object in /home/studentarrive/public_html/wordpress/wp-content/plugins/buddypress/bp-core/bp-core-functions.php on line 2471

    bermudastream
    Participant

    I would like to keep the activity stream short – 7-10 updates only. Where can I set the number of activities to return?

    Thanks
    Mark M.

    Site-Wide Activity

    Buddypress Version 2.6.2
    WordPress 4.6.1

    #259520
    danbp
    Participant

    Hi,
    Shane’s answer is related to the BP way to get a user name inside a redirection. wpF use probably a similar method, but certainly also his own function(s) for that. You have to find out how it does. Unfortunately, this plugin doesn’t provide documentation at the moment.

    Accordingly to wpForum support, there is still a button to wpforum on each profile. If you have difficulties to tweak the default behave, you have to ask for on their support.

    https://wordpress.org/support/topic/buddypress-compatibility-plans/

    #259513
    morning0dew
    Participant

    __________________________
    WordPress 4.6.1
    Vogue 1.2.00 theme
    Buddypress 2.6.2 
    http://www.propertygrids.com
    ___________________________

    I wanna build that web as a website that collect property agents . All people that will visit the website are :

    1. I’m
    2. property agents that have property listings , wanna promote their listings and make some co broking with the other agents
    3. visitors that search property by category and location & search professional property agents that near them

    Some features :
    1. Property agents can register,login,create groups , posting listings , make friendship, etc that almost like facebook . And also can write and read article in my website

    2. All Property agents can register & posting their listings but only paid members that can :
    -view detail contact of the other agents like phone numbers,email,Bbm Pin
    -send & accept message to the other property agents
    -send and read messages to the groups

    3. Listings of property agents must have category : home,land,apartment,etc that can viewed on homepage

    4. Listings of property agents must be viewed on homepage by newest listings

    5. Visitors can search listings by category & by location from homepage

    6. Visitors can view some properties but must be paid member to know property agents contact that have the listing & send message to property agent

    What plugins that must i use ?
    Now im using buddypress and think to integrate it with woocommerce

    Morning0Dew

    #259408
    Toni
    Participant

    I’M deleting the entire installation and reinstalling WordPress.

    #259406
    wolfpup64
    Participant

    Thanks for getting back to me shane, unfortunately that redirects to the wpForo page:

    http://localhost/wordpress/community/

    wolfpup64
    Participant

    Hey Buddies, first off the obligatory I’m totally new to this stuff, php makes sense but I haven’t the faintest grasp of the language or the logic. I got asked to build a community page for a smallish company and I’ll hopefully get a position more fitting my background if I do a decent job.

    Running:
    Current version of WordPress/BuddyPress
    The BuddyBoss Boss. Theme
    gVectors wpForo

    Basically what I’m trying to do is create a link in the BuddyPress Profile page tabs that directs to the wpForo forum profile, to better integrate the 2 profiles. I managed to create the tab by bogarting some code from some other support page, however the link is dictated by a slug and if I remove the slug the whole tab disappears. The code is located in a mu-plugin and this is what it looks like:

    function add_communityprofile_tab() {
    	global $bp;
    	
    	bp_core_new_nav_item( array(
    		'name'                  => 'Community',
    		'slug'                  => 'communityprofile',
    		'parent_url'            => $bp->displayed_user->domain,
    		'parent_slug'           => $bp->profile->slug,
    		'screen_function'       => 'communityprofile_screen',			
    		'position'              => 200,
    		'default_subnav_slug'   => 'communityprofile'
    	) );
    
    }
    add_action( 'bp_setup_nav', 'add_communityprofile_tab', 100 );

    The url of the profile pages is

    http://localhost/wordpress/users/*username*/profile/

    The tab naturally links to

    http://localhost/wordpress/users/admin/communityprofile/

    what I am trying to link to is

    http://localhost/wordpress/community/profile/<displayed_user>/

    at least I’m pretty sure displayed_user would get the job done.

    I looked into exploding and parsing the URL but that seemed more trouble than it was worth. I’ve spent quite a bit of time stubbornly trying to figure this out hahaha. But I think this is something that anyone with a decent knowledge of what they are doing could solve quickly, I’d really appreciate it if someone could give me a hand.

    #259394
    metalhead
    Participant

    Thanks, and I went through the process, and then I re-installed Buddypress, but I’m still having the same problem. It’s when I click the button to save the new user info, and instead of proceeding to the next step (“Check your email for verification,” it’s just refreshing the new user registration form. It won’t let a new user get passed that screen.

    I read about someone else having the same problem, in this forum, but he never did describe how he overcame the problem. I’ve tried deactivating all buddypress related plugins, but no luck.

    I think the best thing for me to do is going to be to re-install WordPress from scratch, but do you have any other recommendations before I do that?

    Thanks.

Viewing 25 results - 5,626 through 5,650 (of 32,678 total)
Skip to toolbar