Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 12,376 through 12,400 (of 68,932 total)
  • Author
    Search Results
  • #241929
    modx
    Participant

    @djsteveb – Hi thanks for the info! So does this mean this has nothing to do with BuddyPress at all?

    Some posts are being posted with a user ID=0, even though registration is disabled already. Below is from the first 5

    log_id log_type log_function log_priority log_date log_date_gmt log_host log_username log_user log_url log_referrer log_data
    1 brute_force Invalid Login Attempt 5 2015-07-16 10:13:39 2015-07-16 10:13:39 23.250.34.71 rogeliomackie 0 a:0:{}
    2 brute_force Invalid Login Attempt 5 2015-07-16 10:16:56 2015-07-16 10:16:56 172.85.106.118 rogeliomackie 0 a:0:{}
    3 brute_force Invalid Login Attempt 5 2015-07-16 10:19:25 2015-07-16 10:19:25 172.85.103.167 rogeliomackie 0 a:0:{}
    4 brute_force Invalid Login Attempt 5 2015-07-16 10:23:32 2015-07-16 10:23:32 45.59.26.85 rogeliomackie 0 a:0:{}
    5 brute_force Invalid Login Attempt 5 2015-07-16 10:24:18 2015-07-16 10:24:18 50.118.159.10 rogeliomackie 0 a:0:{}

    #241911
    @mercime
    Participant

    Issue posted above has been resolved in BP Trac https://buddypress.trac.wordpress.org/ticket/6554

    #241907
    @mercime
    Participant

    > Mass-deleting Buddypress groups?


    @rockoria
    Safest way is to go to wp-admin/dashboard and click on the “Groups” link in the menu. You’ll get the updated version of what you see in the following image https://mercime.files.wordpress.com/2013/02/groups-dashboard-admin.png

    #241906
    COOLBEANSDUDE
    Participant

    That’s massively outdated and doesn’t work, and I put the anti-spam into place after I noticed this and it works great. But that organizer is for very, very old versions of buddypress.

    #241903
    @mercime
    Participant

    @rglennnall
    > either the Groups associated with each User

    Groups → Memberships

    > to show Users associated with each Group
    Just go to yoursite.com/groups/[nameofgroup]/members and you’ll find the list of members who joined or were invited to the group

    #241895
    vince.fr
    Participant

    Hey Pixelguy,

    you raised an issue I had to tackled and thanks to @graylien it works fine.
    As you also mentioned I had the save button repeated each “tab” and I found a solution that seems working so far but I would love real tech guy to confirm it’s not a mistake 🙂

    at the end of the edit.php file we worked on you can find this :

    	<?php do_action( 'bp_after_profile_field_content' ); ?>
    
    	<div class="submit">
    		<input type="submit" name="profile-group-edit-submit" id="profile-group-edit-submit" value="<?php esc_attr_e( 'Save Changes', 'buddypress' ); ?> " />
    	</div>
    
    	<input type="hidden" name="field_ids" id="field_ids" value="<?php bp_the_profile_field_ids(); ?>" />
    
    	<?php wp_nonce_field( 'bp_xprofile_edit' ); ?>
    
    </form>
    
    <?php endwhile; endif; ?>
    
    <?php do_action( 'bp_after_profile_edit_content' ); ?>

    what I understand is that it says :
    – after the form you call bp_after_profile_field_content
    – then you show the button and the hidden fields
    – then you close the form
    – and you close the loop by endwhile – endif

    and @graylien gave us a trick to make the loop “looping” for every tab and not only just one so what I did was to take the endwhile -endif closing the loop inside the form and before the button so the button will remain in the form but not repeated as the loop is closed now.

    	<?php do_action( 'bp_after_profile_field_content' ); ?>
    
    	<?php endwhile; endif; ?>
    
    	<div class="submit">
    		<input type="submit" name="profile-group-edit-submit" id="profile-group-edit-submit" value="<?php esc_attr_e( 'Save Changes', 'buddypress' ); ?> " />
    	</div>
    
    	<input type="hidden" name="field_ids" id="field_ids" value="<?php bp_the_profile_field_ids(); ?>" />
    
    	<?php wp_nonce_field( 'bp_xprofile_edit' ); ?>
    
    </form>

    I hope that my trick is right and that my explanations are clear as I’m neither a developper nor an native english speaker 🙂

    Please come back to me wether if it works,

    Cheers,
    vincent

    #241883
    djsteveb
    Participant

    @gurselgunacar – depends on what urls and attachments you are trying to protect. If you are talking about WP urls and attachments there are many options – things like “press permit core” – maybe s2member (and many others that are similar)..

    If you are talking about the BP created psuedo urls, like member pages and groups – that is going to be more difficult from what I gather. There was some discussion about this here: https://buddypress.org/support/topic/bp-member-pages-visibility-restriction/#post-241840 recently.

    If you are talking about attachments like with rtmedia uploads – that’s a whole ‘nother ball of wax.

    #241873
    shanebp
    Moderator
    #241862
    djsteveb
    Participant

    Someone recently posted some code that gets into this a bit when it comes to member profiles – https://buddypress.org/support/topic/bp-member-pages-visibility-restriction/#post-241840

    not sure if it works, obviously if it does it would need to be adapted for your activity page instead of members..

    There have been a lot of QnA regarding privacy settings with bp pages / partial components the past so many months – maybe that is something that will make it into a future version.

    There could be other answers to this currently. I am not a bp dev, just another user with limited understanding of how it ticks.

    #241840
    PinkishHue
    Participant

    Hi Joe,

    I don’t think there is a setting you can change for that specifically but you can restrict access to the content on that page and similar pages by adding a conditional in to their templates.

    You need to copy over the relevant template from here:

    …\wp-content\plugins\buddypress\bp-templates\bp-legacy\buddypress\

    and put it in to your theme here:

    …\wp-content\themes\your-theme\buddypress\

    so for example for that particular page, the friends list on a user profile, you would copy this file:

    …\wp-content\plugins\buddypress\bp-templates\bp-legacy\buddypress\members\single\friends.php

    and put it here:

    …\wp-content\themes\your-theme\buddypress\members\single\friends.php

    then open up that file in a text editor and add this code near the top (under the first closing ?>)

    <?php if ( is_user_logged_in() ) : ?>

    Then right at the end of that file, add this code:

    <?php endif; ?>

    That should work but I haven’t tested it as I don’t have access to my main PC right now. That will show the normal header and footer but none of the friends list content.

    Alternatively if you wanted to show an error message like ‘you need to be logged in’ you could use something like this in place of that first snippet of code:

    <?php if ( !is_user_logged_in() ) : ?>
    
    <p>You need to be logged in to view this content</p>
    
    <?php else : ?>

    Hope that helps 🙂

    #241832
    djsteveb
    Participant

    @hammed4real101 – what (list all) plugins are you using?

    are they having trouble when trying to login on your actual login page? (.com/login/
    – or just when they try to login with the sidebar login widget?

    recent mentions of facebook integrations stuff here: https://buddypress.org/support/topic/wrong/

    Rollercoasterider
    Participant

    Yeah, I am getting practice!

    So other than the folder name, the biggest–and probably more valid–difference is that I turned on registration before installing and activating BuddyPress. I had not done this with my original install that I was using when I started this thread–the install was a few months ago.
    It changed more than a just the working front page and that the activate and register pages were automatically created. In Settings–>BuddyPress–>Settings Group Settings are now available; I had not seen these on any install until now.

    And for anyone thinking they can just uninstall or deactivate BuddyPres and turn on registration and reinstall and activate…nope, I tried that early on in my troubleshooting.

    #241809

    In reply to: BLOGS

    @mercime
    Participant

    @fridafric Most of the information on that book is obsolete. If you want blogs, you need to create a network first, and that is a WordPress function which BuddyPress supports. Deactivate BuddyPress and other plugins first the follow instructions at https://codex.wordpress.org/Create_A_Network
    Do make sure that your multisite installation is working as expected before activating BuddyPress.

    Rollercoasterider
    Participant

    Okay, I have not really solved the problem, but I’m trying a new install in a folder called ‘community.’ Maybe this will be less confusing for the system than having a folder called ‘members.’

    So far it is working, though I’m just getting started. Before installing and activating BuddyPress I made sure registration is open and I created a page called ‘welcome’ and added my content. I switched the theme to 2013–because the horizontal nav menu feels less confusing to me since that is what I am used to.

    Before installing and activating BuddyPress the ront page shows the welcome page!
    YAY
    After installing, activating and going through the configuration steps for BuddyPress the front page shows the welcome page!
    YAY!

    So perhaps not a resolution to the other address where wordpress is installed in the folder called ‘members,’ but it works so far at this other location.

    That doesn’t mean the issue is due to the folder being named ‘members.’ I did some steps in a better order this time–liek remembering to turn on registrations before installing BuddyPress. So when I went to view the core pages, both activate and register were already created–previously I had to add them myself.

    My next step is to slowly begin adding and activating the other plugins–testing between each.

    I think naming the folder community might be better anyway. I might move my forum to it if I switch to Simple:Press and then my community will truly be there, whereas originally it was only going to be paying members other than front page type access.

    Rollercoasterider
    Participant

    Yes, I am using the theme 2013. I don’t want to use it forever, but for now I’m testing with it.

    [b]Plugins[/b]
    The only active plugin in the list is BuddyPress. Would a default wp-cache or other plugin show up, or might such a things be hidden?

    #241793
    djsteveb
    Participant

    @wealthy – I don’t think you need buddypress for this. I believe you could easily achieve those goals setting up and wordpress install, turn on multi-site (aka wordpress mu setting) – add in one of the many membership type plugins like s2member.. then add in a commerce plugin like marketpress or woo-commerce, something like that.

    Make it so all sub “blogs” aka “sites” are locked out from visibility unless logged in, your “logged in state” is determined by the s2member or similar plugin…

    might take a look at press permit core for restricting content.. there are others.. but in essence I think there is no need to add buddypress to the mix. Only thing that would do it open up profiles and friends – but then you’d have much more difficulty locking down member profile viewing and groups viewing and stuff like that, which is not so easy to deal with at the moment.

    djsteveb
    Participant

    @rollercoasterider – are you still doing this with a default theme like 2014 or something similar?
    Have you tried it with ALL plugins disabled except buddypress?

    (some hosts do include a wp-cahe type plugin, that is enabled by default, that drove me crazy with a similar issue a couple years ago – lol)

    #241788
    djsteveb
    Participant

    @quinngoldwin – bp profiles already already come with a “friends” tab – which would do essentially what you are describing if the others have a profile in the system and they have accepted as friends. Then everything you are asking is already done with a default install.

    If others are not in the system, I guess they could upload a buddypress docs file with a list or something.

    #241782
    ghar123
    Participant

    Thank you! Is there anything in the buddypress settings that can make all the forums private? For example, if the click on the forums link then they cannot see any of the forums until the login.

    #241777
    shanebp
    Moderator

    Your best bet is probably to look at this from the s2member side.
    There is lots of info available, such as

    s2Member + BuddyPress

    #241776
    jrunfitpro
    Participant

    Thank you dmccan and shanebp. I’ve setup most of this and don’t require a developer. I guess I’m most unfamiliar with BuddyPress thus far.

    I”m trying to make my site more social and develop accountability from peers on site. I’ve already had WP, S2Member and Badge OS (from Credly) set, now I just added BuddyPress.

    My programs are 12 Week Trainers with one week of content dripping every week. As long as BuddyPress recognizes people going through this activity (maybe though the comment field of each lesson?), I should have success.

    Does BP recognizes user’s post and page comments?

    Thanks,

    Justin

    #241761
    dmccan
    Participant

    I have not used it for anything like that, but s2member works with BuddyPress, allows you to restrict content, and supports dripping content:

    Home

    It is possible that it might work out for you. There is a free version that is likely sufficient.

    https://wordpress.org/plugins/s2member/

    It integrates with WP Courseware, if that is what you are using for your courses.

    Good luck. Have fun.

    #241756
    shanebp
    Moderator

    Is there a way to connect my lessons to BuddyPRess?

    Probably, but there are too variables in your questions:
    – what does ‘connect’ my lessons mean?
    – what is a gamification plugin?
    – how are you dripping?

    btw – Those questions are rhetorical.

    Unless somebody here has the same theme / plugin setup as you ( doubtful ), your chances of getting answers are slim to none.

    Unless you are a developer, you’ll probably need to hire one to create the experience you desire.
    And it sounds like a fairly large job.
    You can post job listings here.

    shanebp
    Moderator

    Google: buddypress hide admin from members list

    #241726
    helpy
    Participant

    I still have the problem reported here with the last buddypress version 2.3.2.1.

    If I download the profile photo from my buddypress instance (150x150px) and than re-upload it to buddypress, resize it the the fullsize the following error message will be displayed:

    “There was a problem with cropping the profile photo.”

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