Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 5,076 through 5,100 (of 22,687 total)
  • Author
    Search Results
  • #248628
    Pascal Casier
    Participant

    @henrywright,
    Are you sure this is a bbPress thing ? In the profile of a standard WordPress/bbPress install, I don’t seem to have a ‘Forum’ button in my profile.
    Pascal.

    #248625
    Henry Wright
    Moderator

    do you mean remove something into de plugin code?

    No.

    remove_action() is a function that lets you remove an action hook. Try reading up on WordPress actions; they’re a way to modify behaviour without editing core files.

    #248584
    Henry Wright
    Moderator

    Try finding the BuddyPress redirect and check if it’s removable. remove_action() might be handy in this situation, depending on how the redirect is coded.

    Ref: https://codex.wordpress.org/Function_Reference/remove_action

    #248570
    Henry Wright
    Moderator

    The idea here would be to hook in to an action that fires after the join group event. Check out add_action() which should help you do that. You’d use bp_core_redirect() inside your custom function.

    Hoping this helps?

    Ref https://codex.wordpress.org/Function_Reference/add_action

    shanebp
    Moderator

    You can open a ticket here using the same user / pw as this site.

    #248516
    Henry Wright
    Moderator

    Nice work @djpaul, looking forward to bp_send_email() being available. Ref: 6592#29

    #248476

    In reply to: Private Pages Glitch?

    burger0815
    Participant

    I wrote:

    ….somehow I had the impression that private had also worked for authors before the update….but thats another thing”

    and

    In my application sofar all members are editors (and currently planned to be editors),

    The last sentence is wrong, I actually intended sofar all members to be authors (Autor in german) not editors (Redakteur in german).

    I wrote the first sentence because before Shane’s comment I am pretty sure that I had tested wether the private pages are visible for authors and not only for editors or admins and thus I am pretty sure that they were so before. It is just that after Shane’s comment I wanted to check back. Unfortunately before I could check back there was an
    automatic wordpress update, which now unfortunately screwed up the intended application.

    #248466
    Ben Hansen
    Participant

    there’s no need actually the user list is the same (wordpress’) and buddypress does not have any forum functionality other than compatibility with what bbpress provides.

    #248464
    shanebp
    Moderator

    It works up to 2.4 and maybe higher, but throws a slew of Notices.


    @kalaiyarasi
    – the emails are generated in various files depending on which email it is.
    You can filter most parts of the emails – on a per kind basis.
    For example the friend request emails are generated in
    \buddypress\bp-friends\bp-friends-notifications.php
    See function friends_notification_new_request for the filter hooks.

    And yes, the current approach is difficult to work with.
    A better approach is being built, hopefully for the BP 2.5 release:
    https://buddypress.trac.wordpress.org/ticket/6592

    #248448
    danbp
    Participant

    Hi,

    as long as these members haven’t loggedin for the first time, their name is held in xx_signup table and are mentionned as “pending” on members admin page.

    As you use subdomain, i suppose you are on a network install, in which case, your members admin can be found at your_site/wp-admin/network/users.php (wp-admin/users.php on a single install).

    If not, ensure that BP is installed at the same level as your WordPress. This is mandatory.
    BuddyPress does not work on installations where you give WordPress its own directory.

    Anything is explained here:

    Getting Started

    #248437
    danbp
    Participant

    Hi,

    create a wordpress.org account if you want a custom picture for your profile.
    https://wordpress.org/support/register.php

    danbp
    Participant

    Hi,

    try this snippet (add it to bp-custom.php or child theme’s functions.php):

    function garfrey_widget_title( $title ) {
    if ( $title == "Members") {
    $title = __('Members Translation') ; // foreign char. here
    }
    return $title;
    }
    add_filter ( 'widget_title' , 'garfrey_widget_title', 21 );

    Reference:
    https://codex.wordpress.org/Plugin_API/Filter_Reference/widget_title

    #248421
    Henry Wright
    Moderator

    Welcome Pack allows you to customise templates for emails. Give that plugin a try

    Ref: https://en-gb.wordpress.org/plugins/welcome-pack/

    #248414
    Hugo Ashmore
    Participant

    It’s by design:
    https://buddypress.trac.wordpress.org/browser/trunk/src/bp-templates/bp-legacy/buddypress/members/single/messages.php

    Closing php tags shouldn’t be necessary, WP instructs not to close out files in this way. If you’re having issues they must lie with the custom templates?

    #248399

    In reply to: Private Pages Glitch?

    shanebp
    Moderator

    With the WordPress 4.4/BuddyPress 2.4.3/bbPress 2.5.8, if you set any of the BuddyPress pages set to private you get the following error “The following active BuddyPress Components do not have associated WordPress Pages: Activity Streams. Repair”

    True – If you set Visibility to Private!
    Not true if you set the ‘Public or Private’ checkbox provided by the BP Simple Private.

    I want people to be able to register as Subscribers but Subscribers should not see any of the BuddyPress/bbPress stuff, only the Contributors and above should be part of the BuddyPress/bbPress community.

    So you want to limit access to BP content based on a user’s role.
    That is a different issue from the original poster’s issue.
    You should create a new topic.
    The BP Simple Private plugin discussed above is not applicable to your issue.

    #248397

    In reply to: Private Pages Glitch?

    fscbmwcca
    Participant

    With the WordPress 4.4/BuddyPress 2.4.3/bbPress 2.5.8, if you set any of the BuddyPress pages set to private you get the following error “The following active BuddyPress Components do not have associated WordPress Pages: Activity Streams. Repair”

    I tried the https://wordpress.org/plugins/buddypress-members-only/ and that didn’t seem to do what I wanted. I want people to be able to register as Subscribers but Subscribers should not see any of the BuddyPress/bbPress stuff, only the Contributors and above should be part of the BuddyPress/bbPress community. So I need to be able to exclude Subscribers from BuddyPress/bbPress. I have looked and there is some code out there that seems pretty old so I don’t know if it would work and I am not so great with php so I am a little hesitant. I am also new to BuddyPress so I’m not sure of all the ins and outs.

    I tested the plugin and it’s working, in the settings there are two areas [edited – please do not copy & paste such data ]
    I hope I am being clear.

    #248396

    In reply to: Private Pages Glitch?

    shanebp
    Moderator

    …is a bit irritating, finally that feature exists already in a standard BP wordpress version.

    If you’re referring to the Visibility checkbox feature – Private means only viewable by admins and editors.
    https://en.support.wordpress.com/post-visibility/

    #248394

    In reply to: Private Pages Glitch?

    burger0815
    Participant

    @fscbmwcca

    thanks for the comment. If I understand correctly then the option:
    allows an admin to select which Post types and BuddyPress Components are private
    seems to indicate that things like the activity component or the member community component
    could be set private.
    Did you test the plugin?

    The sentence:
    provides a Private checkbox in the upper right corner of every page, post, and custom post type selected in Settings

    is a bit irritating, finally that feature exists already in a standard BP wordpress version.
    That is at least in my BP wordpress version you can already mark
    pages as private (i.e. non accessible to non-logged-in members),
    i.e. there is already a checkbox. And if there wouldn’t be the bug then
    setting the member page and activity to private would have set “the component” to
    private, if I understood correctly.
    Is the plugin checkbox another checkbox?

    There is a plugin which, by its description, seems to set everything private:
    https://wordpress.org/plugins/buddypress-members-only/
    and which lets you specify which subadresses should be open.
    But in my case this is not so helpful because
    I want the blog to be public and the blog is not behind a /blog/ adress
    but behind the year /2015/… etc.
    so I would need to set each year adress open, which seems OK but not really
    straightforward.

    shanebp
    Moderator

    By ‘private’, you mean only visible to logged-in users?

    If so, this may solve your issue:

    http://www.philopress.com/products/bp-simple-private/

    or

    https://wordpress.org/plugins/bp-simple-private/

    #248349
    shanebp
    Moderator

    You are using a theme or a another plugin to create the ‘wall’, correct?
    Have you asked the author of that theme or plugin?

    You can use a plugin like https://wordpress.org/plugins/theme-my-login/ to change the login page.

    #248337
    kostasbarkas30
    Participant

    Hello guys,

    One question about bp checkins. this is a fantastic plugin but bpci_activity_address not showing greek characters. any idea how to make the code to use utf-8 so as to play the greek characters?

    thanks

    i am using buddypress 2.3.5 and wordpress 4.3.1

    #248326

    In reply to: Private Pages Glitch?

    fscbmwcca
    Participant

    I installed BP Simple Private it seems to let you mark pages as private and if not logged in it redirects the page. I am only testing now and seems to be working. What I ultimately want to do is exclude “Subscribers” from BuddyPress and bbPress. Haven’t found how to do that yet.

    #248325
    ying-sun
    Participant

    sorry. right now the page with the list of all the members uses a wordpress page called ‘Members’. a page showing an individual member’s information draws on the same wordpress page.

    is it possible to have one wordpress pag (say, ‘Member Directory’) and a different one (‘Member Profile’) that dynamically shows an individual member’s information?

    does that make sense?

    #248322

    In reply to: About bp-custom

    Joshua Blevins
    Participant

    Okay, I did those changes (shown below). I still see no additional role added to the WordPress extended profile. I should be able to see it there. Correct?

    <?php
    
    /*
    *
    */
    function custom_member_types(){
    	bp_register_member_type('role', array('labels' => array('name' => 'role', 'singular_name' => 'role')));
    }
    
    add_action('bp_init', 'custom_member_types');
    
    ?>
    #248318
    danbp
    Participant

    Hi,

    consider https://wordpress.org/plugins/buddypress-like/

    Notification likes will be implemented in next update (dixit author)

Viewing 25 results - 5,076 through 5,100 (of 22,687 total)
Skip to toolbar