Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 14,626 through 14,650 (of 69,016 total)
  • Author
    Search Results
  • #231113
    Security
    Participant

    Hi@mmaccou the issue is related to trigger(content) used in js only as far as i remember may be this thread comes handy for you,btw which version of buddypress and wordpress you are using i hope its latest one.
    Thanks

    #231110
    Henry Wright
    Moderator

    The activity directory template is /buddypress/activity/index-directory.php so you will need to make sure you have that created in your theme. The Template Hierarchy article will explain everything in more detail so be sure to check that out. Then you could use the code I provided in the thread you mentioned to insert adverts in the stream.

    Hope that helps?

    emidio007
    Participant

    I am sending the code, if someone is looking for such solution.

    I added a line to the Filter. I wanted to modify directly the text “Only Me”.

    $levels['adminsonly']['label'] = _x( 'only visible for me', 'Visibility level setting', 'buddypress' );

    function bpfr_remove_visibility_level( $levels ) {
    	global $bp;
    
    		if ( isset( $levels['loggedin'] ) ) {
    			unset( $levels['loggedin'] );
    		}
    
    		if ( isset( $levels['public'] ) ) {
    			unset( $levels['public'] );
    		}
    $levels['adminsonly']['label'] =  _x( 'only visible for me', 'Visibility level setting', 'buddypress' );
    	return $levels;
    }
    add_filter( 'bp_xprofile_get_visibility_levels', 'bpfr_remove_visibility_level' );
    #231103
    danbp
    Participant

    If you want help, you must give details: about what you did and how, theme name,…

    That said, the Toolbar belongs to WordPress.

    Some ideas here:

    Remove WordPress Admin Bar CSS

    Quick Tip: Override WordPress Toolbar Styles

    BuddyPress use only a few and very minimalistic CSS. See at the end of /bp-templates/bp-legacy/css/buddypress.css for some styles applying to smartphones.

    danbp
    Participant

    Is it possible to override the function as usual ?

    No, not as usual. setup_globals function is part of a class, you have to extend the class.

    See better in bp-xprofile-function.php to get some filters.

    If the goal is to define user types, you can try this plugin or at least study his code to find a way to achieve your customization.

    Or much more simple, define the visibility level and disallow changes.

    #231090

    In reply to: Men Woman Couple

    danbp
    Participant

    @mariovisie,

    Another approach maybe.
    See if this topic can help you.

    Female members are served a directory of males and male members are served a directory of females.

    Adding an if statement for couples wouldn’t be to difficult. 😉

    If not, use gravity forms who, i believe, allows such conditionnal forms.

    #231087
    johnmontfx
    Participant

    Thanks Dan — while they are separate plugins I’m sure you’ll agree that they are very much joined at the hip (as bbPress even includes BuddyPress functions). What was really nice was the ability to bring in extended Vbulletin profile information over to to BuddyPress extended profiles at the same time as importing to bbPress. Took some custom coding, but the code in both plugins made it fairly clear about how to accomplish it. Makes it easy to use in both plugins.

    As far as what I’m trying to do with BuddyPress, it’s basically the issue in the first post. I’ve traced the code a bit more and my main issue right now is simply figuring out if I could get access to the xprofile_get_field_data function. wp-load.php doesn’t seem to call the bp-xprofile-loader.php, so $bp->profile->table_name_fields is empty.

    In the meantime, I’ve just issued some mysql db calls to grab the info…but I’d love to use the built in functions if I could.

    #231082
    Vibral
    Participant

    Yes, I spent quite a lot of time in the past coding in php/mysql, but never did anything in wordpress before. So I’m fine with digging around php code, and know what to look for if I can just get to the file which has the menu setup. I have done a little bit of editing; you can see on my site now if you log in, you get a few more things happening than usual for the login widget.

    I reposted this question here .

    Thanks again for the help on the main question!

    #231080
    danbp
    Participant

    This is not a BP issue but a user setting error.

    Go to Dashboard > Pages > Members – quick edit > deactivate Allow comments.
    Do the same thing for all other activated components page.

    Check your WP & BuddyPress comments settings.

    Check also your theme docmentation as it could be that he use a custom setting for comments.
    If you don’t know or find, activate one of wp’s twenty theme and see if the issue is still there.

    #231076
    Vibral
    Participant

    Yes, I was just playing around – I don’t intend using it – I was actually looking for the theme that’s currently used on the buddypress.org site – this theme with the red bar on top – would you happen to know where I can find it? I like it since the buddybar isn’t right up top, so it’s more noticable.

    I’ve also been looking for a way to extract the menu that you get from the buddy bar so as to use it as a sidebar widget. I have used the “(Buddy Press) Log in”, but when you log in, it doesn’t show the other options that you get with buddy bar, i.e. activity, profile, …, settings with the nice submenus.

    I did try trawling the php code but I haven’t found it as yet. Is there an easy way to extend the Buddy Press login widget so that once you log in you get these other options as well?

    Apologies if this is now going into another subject area – should I repost the new question as a new topic?

    As to the original question, I think you solved it way back when you asked me to empty the pages trash and to rename the slugs. I still don’t know why my FF doesn’t work. I suspect that it is just not accpeting my log in, and that’s why I don’t get the bar. Also would explain why the login and register options don’t change. Perhaps the reason it doesn’t accept logins because I do all my wp admin through firefox? Anyway I’m prepared to live with it since it seems only the firefox on my local machine doesn’t get the bar.

    Many thanks for all your help

    #231070
    danbp
    Participant

    You’re question is more server oriented and a bit over the scope of this support. Anyway….

    You can put different tables in different db on the same server, but how are you going to make WordPress aware of where each table is ?

    In standart usage, multisite with BuddyPress is working with one WP, one DB and one BP plugin and as many sites you want (preferably as sub-domains).

    To manage multiple db’s, try perhaps HyperDB.

    Can’t help you more. Sorry. 😉

    #231069
    danbp
    Participant

    You’re welcome !
    bbPress and BuddyPress are TWO separate plugin, and you’re here on the BuddyPress support. 😉

    If you have questions related to bbP, please visit their support for better chance to get the right answer.

    As it is a bit unclear what you’re doing with buddypress for the moment, see here about vbulletin import into bbPress.

    #231060
    johnmontfx
    Participant

    Grr…the subject should have been:

    “Access to BuddyPress functions in external code via wp-load?”

    #231059
    Vibral
    Participant

    There’s some progress now; I tested in IE and the bar looks great!

    However, it won’t show in Firefox or my (windows) phone. Do you know why this is?
    I suspected it was an out of date flash player, but I updated and still can’t see it.
    The strange thing is that I can see the bar in wp-admin (in firefox), but not from the main site.

    Also, in firefox, on the pages that I can access, i.e. the groups etc, when I open those pages, I don’t get the same look as I get when I open in IE. In firefox, these pages don’t let me add new groups etc.
    Also, when I log in with firefox, the login/register links are still there after login, whereas in IE after I login, the option becomes ‘logout’

    Clearly, with certain browsers, most of the buddypress functions are just blocked.

    Did you test my sit eon IE or on Firefox?

    #231054
    danbp
    Participant

    hxxp://vibral.co.za/wp-login.php?action=register. This is correct and not an issue.

    On the Toolbar (now that it is correctly showing), from left to right

    WP logo icon with some related wp site and stuff in sub-menu

    BuddyPress Admin menu (or network admin), and if multisite, access to the different other dashboards. As super-admin you will see all probably.

    Note when network is activated, you have by default 2 dashbords anyway. The mainsite or network dashboard and WP’s dashboard.

    Edit menu – depending your role on the site you access from here to new post, comments and so on.

    And on the right, the howdy menu aka usermenu. Where sit a login/logout menu and all the access links to your buddypress profile, messages, groups, etc

    So far, so good. But what do you want to achieve now ?

    #231050
    Vibral
    Participant

    Apologies, I was trying out a few things so I had re-checked the toolbar for logged out user.
    I’ve unchecked it now.
    I can see the login/logout button on the left sidebar; please have a look and see if the site is as it should be.

    If this is how it’s supposed to be, I would still much rather have the kind of toolbar that I get in wp-admin, or on this buddypress.org site. Is that possible?

    Thanks in advance

    #231047
    Vibral
    Participant

    Thanks for replying @danbp

    I’ve acted on all your notes, but there are still some issues. First in terms of what I did:
    1. I did go ahead and upgrade the theme, but I also switched the theme to twenty-fourteen as I saw a buddypress video where this theme was in use and gave good results in terms of buddy press.
    2. I’ve removed the definition as per your ticket link
    3. I’ve refreshed my pages removing duplicates
    4. I’ve deactivated the ‘Show the Toolbar for logged out users’

    The issues I still have:
    1. The buddybar that I want is in my wp-admin, but not on my site. In fact there is an even better buddybar right here on this page (look up) which has the link to buddypress.org and “My Sites” which is needed for me since I’m running multisites. How can I get this bar on my site?
    2. Having followed your instructions, there’s no toolbar at all, which is not what I want; I do want users who aren’t logged in to be able to do so without my added links in the site itself to a log/reg page

    Please advise; thanks in advance

    #231044
    valuser
    Participant

    Try bp multi network https://wordpress.org/plugins/bp-multi-network/ AND Networks + from http://wpebooks.com/networks/

    Networks+ is a “premium” (small) plugin written by one of the authors of bp-multi-network and numerous (about 30) other plugins in the WordPress repository and it is fully supported.

    Using buddypress and bbpress together with those two plugins you will be able to have separate communities with separate activity streams, forums, groups and blogs all in one wordpress installation and in one database. Membership is shared.

    There may be other combinations of plugins that may work. The combination above does work.

    #231037
    surenpillai
    Participant

    Thank you. I went through the second round! installed even the one mentioned above

    confronted “do not have associated wordpress pages” problem
    searched for help and came up with https://buddypress.org/support/topic/do-not-have-associated-wordpress-pages/

    It all sounds very complicated to me. Is there somewhere a clear HOWTO to install this.
    I have deactivated and deleted the plugin.(all sorts of spams including viagra!! were present on the pages)

    cleartalk blocked 80 spams! Thankfully I installed the spam blocker on time

    #231036
    danbp
    Participant

    Tempera theme was recently updated and normally you haven’t to use the old buddybar.
    So the define is of no utility… (see ticket)

    BP use now the WordPress Toolbar.

    It looks also that you have 2 activity pages, 2 members page and 2 groups page. There should be only one. See if you have deleted pages, and clear the trash.
    Also set up the pretty permalinks (anything but default), or at least re-save that setting page.

    Finally, make a test with one of wp’s default theme, bring anything to work, before activating Tempera.

    I use another theme of the same author, and if like i suspect, there is the same theme customization tool in Tempera, you must be carefull with that theme settings.

    In BP settings, you have an option to show/hide the toolbar to logged out user. Deactivate it.

    And read the theme doc attentively ! 😉

    #231033

    In reply to: Force a avatar

    bp-help
    Participant
    #231026
    UgoDimma
    Participant

    @henrywright

    Yes i have it, https://buddypress.org/support/topic/add-ad-code-into-activity-stream/ you gave an instruction there, but please help me on where exactly i should put the code you mentioned and how best i can use it. Am not good in coding, but i can copy and paste code in the right place with right instruction.

    thanks for the reply.

    #231022

    In reply to: Spam Issues

    Security
    Participant

    Hi @atomonfire have a look at this thread which is quite related to your issue https://buddypress.org/support/topic/spambot-users/#post-230739
    apart from that try plugins such as wanguard,bp security question.
    I hope this helps
    Thanks

    #231017
    danbp
    Participant
    #231010
    Security
    Participant

    And if that doesnt works try activating site tracking component from dashboard>>settings>>buddypress>>components tab and then check for logs from new Activity tab in your dashboard this will help you see all the activity of your site users from dashboard like who wrot new blog post etc
    Note:I think the blog posts written after following the steps given in 1st post above will only appear in activity of your site and old blog posts will not appear
    Thanks

Viewing 25 results - 14,626 through 14,650 (of 69,016 total)
Skip to toolbar