Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 12,451 through 12,475 (of 68,932 total)
  • Author
    Search Results
  • #241481
    whoaloic
    Participant

    Hello,
    actually I mean to merge content of members/single/settings/general.php and members/single/profile/edit.php.
    My idea is to get custom BP profile fields (username) along with the email and password fields in the general settings tab.
    When I copy plugins/buddypress/bp-templates/bp-legacy/buddypress/members/single/ to mytheme/buddypress/members/single/, those files don’t override plugin core files.

    #241477
    Prabin
    Participant

    Hi @jakobbader.. can you do the followings ?

    1. Most importantly, disable all plugins except BuddyPress.
    2. Also try Switching theme and Check.
    3. Make Sure you haven’t changed core files.

    #241456

    In reply to: Facebook Group

    Henry Wright
    Moderator

    “Your BuddyPress” is a place to show off your wonderful BuddyPress creations. Even though your Facebook group isn’t a BuddyPress creation, it is third-party and seems to be dedicated to BuddyPress so I thought this forum was a fitting place for your post.

    Hope that explains why your topic was moved.

    Hugo Ashmore
    Participant

    >I downloaded buddypress and the template pack too

    Why did you download the template pack, can you tell us what led you to the template pack, that package is quite old and not relevant you shouldn’t need it if you simply allow the BP theme compatibility process to run and copy any files if you need to customize them to your theme as explained in the article linked to above.

    We’d be interested to know what led you to the Template Pack so we can see if we have misleading guides and/or links to it that we can qualify to make things clearer.

    #241451

    In reply to: Facebook Group

    Henry Wright
    Moderator

    [Moved to the “Your BuddyPress” forum]

    Henry Wright
    Moderator

    Take a look at the BuddyPress Template Hierarchy article. That should answer any questions you have.

    #241441
    shanebp
    Moderator

    Please use the code button.

    Store your meta in the bp_activity_meta table when an activity entry is created.
    Then you can use an Activity Meta Query to filter activities.

    Add custom filters to loops and enjoy them within your plugin

    #241432
    danbp
    Participant

    The anser you expect was in your first topic.

    I’ve searched the forum and there are no other topics about this.

    Topic is now closed.

    Next time you want help, give correct details and don’t ask us to see your site without giving his URL.

    #241431
    Anonymous User
    Inactive

    Thank you, danbp.

    I am sure now that BuddyPress is not the right solution for me.

    Nicole

    #241428

    In reply to: Fields Privacy Problem

    danbp
    Participant

    This is a knowed bug, a bit forgotten over the time (2 years back !).
    https://buddypress.trac.wordpress.org/ticket/4821

    @imath will look at this this week-end.

    Follow the ticket to see progress, and eventually give feedback if asked for. Login on Trac uses same credentials as here.

    That said, in your specific example, if a visitor knows the phone number of a registered user and try to search him on your site using that number, guess the relation between both is nearly familiar, so privacy is not a big problem, at least for them. 🙂

    #241427
    danbp
    Participant

    Seems you posted twice !
    https://buddypress.org/support/topic/where-i/

    or do you mean the Dashboard ?

    #241426
    danbp
    Participant

    Would it work if I would not connect the “members” page with BuddyPress in the settings, set the page to private and pull the dynamic content for the members list by a stortcode?

    No, no, no. That page is core, must exist and should be blank. Just a (custom) title.

    Do I need to learn to code to use BuddyPress?
    No, but it’s better if you know some basics.

    To make the member directory for loggedin users only, you have to:
    – create a child-theme (is explained on WP and BP codex)
    – copy/paste index.php from wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/index.php
    to
    /wp-content/themes/your_child/buddypress/members/index.php

    In this copy, right after <div id="buddypress">, in the existing php opening tag just after, you add if(is_user_logged_in() ):

    At the end of the file, you’ll find the closing div tag of #buddypress.
    Just before this closing tag, again an opening php tag, you add endif; before the do_action you’ll see there.

    If you did it correctly, the directory is now only be visible for loggedin users.

    Some basics:

    open php tag <?php
    closing php tag ?>

    open html tag <div>
    closing html tag </div>

    #241425
    Anonymous User
    Inactive

    Hello danbp,

    So far i understand you use bbPress and now you want a members directory, and eventually some additionnal fields on user’s profiles. And most of this should be private or “members only”, right ?
    >> Correct, combined with private bbpress forums on a website with also public content.

    I have set the “members” page I created as private, but it is still displayed when I go on the page as a logged out user. Why is that so?
    Would it work if I would not connect the “members” page with BuddyPress in the settings, set the page to private and pull the dynamic content for the members list by a stortcode?

    I can read into the codex of course, but do I need to learn to code to use BuddyPress?

    Nicole

    #241424
    danbp
    Participant

    Hi @nmschaller,

    bbPress is a separate plugin and BuddyPress doesn’t manage bbPress. For questions about forum settings, you can use the bbPress support.

    When you use BP groups component, you can add a forum to each of them. In this case only, you have to install bbPress. Of course you can also use bbPress as standalone on a BP install, or use bbPress with WordPress, without BP.

    BP doesn’t use “pages” but templates, and the only pages created during installation are in for internal purpose. The “member” page is used to show the member directory, but also profiles or members activities. This dynamic content is displayed on different templates, depending the context, and using WP’s page system to fire all that via a same page slug (aka internal path).

    your-site/members/some/thing/ where /some/thing/ is using his own template part displayed on “members page”.

    So far i understand you use bbPress and now you want a members directory, and eventually some additionnal fields on user’s profiles. And most of this should be private or “members only”, right ?

    The main problem is that you want some custom behave that need some knowledge (you seem to have), but you cannot edit functions.php Unfortunately, this is the place where to add customisation. And what to tell about bp-custom, which is another crucial cusmisation file.

    You want to drive and have no steering wheel ! Annoying… 😉

    The question is Do you need BuddyPress or can you use another solution ? 🙂

    Depends your project, really. Members directory or extended profiles can be done with separate plugins.

    Read here:
    http://chrislema.com/best-wordpress-membership-plugin-2014/

    Or digg into the Codex if you decide to use BuddyPress.

    #241419

    In reply to: Where i

    danbp
    Participant

    Salut,

    the problem is that js is only loaded on the original modification page. To get the new UI, you have to use another filter.

    https://buddypress.trac.wordpress.org/browser/trunk/src/bp-core/bp-core-avatars.php#L1833

    Soufflé par @imath despite the heat (we :sweat: in Paris today)

    function change_profile_picture(){         
            add_action( 'bp_template_content', 'change_profile_picture_screen_content' );
    		xprofile_screen_change_avatar();   
    }
    add_filter('bp_avatar_is_front_edit', 'filter_changeavatar_template');

    You would probably also remove the original Change Avatar tab from Profile subnav ? Use this:

    function bpfr_remove_change_avatar_tab() {
    global $bp;
    	bp_core_remove_subnav_item( 'profile', 'change-avatar' );
    }
    add_action( 'bp_ready', 'bpfr_remove_change_avatar_tab', 15 );

    Have fun !

    pryde1919
    Participant

    Hi yes, it was not buddypress code, what I wanted is to substitute the <i class=”fa fa-user”></i> with buddypress avatar, and I don’t know what code shall I put to make it buddypress avatar. and yes it was generated by a plugin, it show author’s postname.

    Henry Wright
    Moderator

    I doubt <i class=”fa fa-user”></i> is inserted by BuddyPress. Is it generated by a plugin?

    #241405
    danbp
    Participant

    @nnc24 anything related to activities is in bp-activities directory.

    Recommended method, and easiest way, to change BP’s messages is to use the language file.

    Customizing Labels, Messages, and URLs

    @mercime
    Participant

    @vinzen We apologize for the inconvenience to the lady and yourself. We try to follow accessibility guidelines and unfortunately some items fell through the cracks per our recent automated audits on the frontend and backend screens. The manual accessibility audits were to be done after the tickets above were fixed. Please be assured that we’ll let you know how to resolve the issue as soon as possible. Thank you for reporting the issue and for your patience.

    Rachel Vasquez
    Participant

    Ah nevermind! I’ve got it.

    I custom downloaded an updated version of Modernizr and only put CSS3 and a few HTML5 things in the build. No JS or shivs. So something in there IS breaking the group avatars for future FYI in BuddyPress Groups – but for now, this is fixing my issue. Now if you need some JS or a more extensive Modernizr, then yeah, you may come across issues.

    Hope it helps:

    http://modernizr.com/download/#-fontface-backgroundsize-borderimage-borderradius-boxshadow-opacity-rgba-textshadow-cssanimations-cssgradients-csstransitions-audio-video-input-inputtypes-teststyles-testprop-testallprops-prefixes-domprefixes

    #241389
    shanebp
    Moderator

    Did you read the link re author__in?
    It uses ids, not country.

    As we’ve said, it’s a two-step process.

    Look at function my_custom_ids on this codex page for an example of gathering ids from xprofile.

    Then pass the ids to author__in.

    danbp
    Participant

    Sorry for you, but this is a common open-source situation.

    When you want something specific, you have to made it yourself or try to find another solution.
    If you don’t know how to achieve what you want, you can learn or hire somebody to make it for you.

    This is only a support forum for BuddyPress maintained by volonteers, not a school or a ready to use solution platform for special demands. Hope you undestand ! 😉

    #241387
    danbp
    Participant

    Rich and famous lazy solution try perhaps this add-on first:

    http://themekraft.com/store/woocommerce-buddypress-integration-wordpress-plugin/

    #241386
    whoaloic
    Participant

    Hi Dan,
    I was expected the author name in BuddyPress pages (members, forums, activity) links to my Woocommerce Account page 🙂 not the other way.
    But maybe I should consider adding some extra tabs in Buddypress profile page within I will put some Woocommerce informations (orders, billing address)…

    #241380
    danbp
    Participant

    Hi @swissprice,

    the field type of “Website” should be URL.

    The class who build this is defined here:
    buddypress/bp-xprofile/classes/class-bp-xprofile-field-type-url.php
    Function name is display_filter()
    The line to change is the…latest (161).

    Now be warned.
    This function is not filterable ( but i may be wrong)
    Modifying core files is not best practice as you will loose your change at next update.
    Target _blank is kind of deprecated since many years now in favor of user decision. This one just in case you absolutely want to use target argument.

Viewing 25 results - 12,451 through 12,475 (of 68,932 total)
Skip to toolbar