-
VentureCore replied to the topic Goodbye Buddypress? in the forum How-to & Troubleshooting 7 years ago
The main issue I’m (still) trying to solve is that when users upload avatars or backgrounds they are saved into directories under the uploads folder. That’s all fine and dandy until LargeFS, an awesome product by wpengine.com, pushes those images up to your AWS S3 bucket (and removes them from the server to allow for better unlimited storage). The…[Read more]
-
VentureCore started the topic Goodbye Buddypress? in the forum How-to & Troubleshooting 7 years ago
I have been using BP for so long now I can barely remember when it all began. I think it all started about eight years ago and although we have had our moments I never thought this day would ever come but alas it seems I can overcome her little quirks no more. But how do you leave your BP Multi Network – when
define( 'BP_ENABLE_MULTIBLOG', true );
…[Read more] -
VentureCore replied to the topic Default profile picture bug in the forum Installing BuddyPress 7 years, 2 months ago
Downgrading to 2.8.2 fixed this for me. WP is 4.8.1
-
VentureCore replied to the topic Default profile picture bug in the forum Installing BuddyPress 7 years, 2 months ago
I’m having this problem on a brand new install. Multisite, single site activated.
-
VentureCore replied to the topic Sort Members Alphabetically by Default in the forum How-to & Troubleshooting 8 years, 10 months ago
You have to add part of the code to the members loop and part of the code goes in your functions.php file. You also have to manually reorder the php to display/default alphabetical first in the dropdown menu
-
VentureCore replied to the topic Sort Members Alphabetically by Default in the forum How-to & Troubleshooting 8 years, 10 months ago
You can see it working here… http://qr2.bz/3days
Link will expire in 3days 🙂 -
VentureCore replied to the topic Sort Members Alphabetically by Default in the forum How-to & Troubleshooting 9 years, 5 months ago
Question:
This works with and without the semicolon after string in ‘before_members_loop’
<?php do_action( 'bp_before_members_loop' ); ?>
or
<?php do_action( 'bp_before_members_loop' ) ?>Do you see either of these causing other problems or preventing other calls?
-
VentureCore replied to the topic Sort Members Alphabetically by Default in the forum How-to & Troubleshooting 9 years, 5 months ago
OK, so here’s the solution…
<?php /* Querystring is set via AJAX in _inc/ajax.php - bp_dtheme_object_filter() */ ?>
<?php do_action( 'bp_before_members_loop' ) ?><?php
if ( bp_ajax_querystring( 'members' ) ==""){
$queryString = "type=alphabetical&action=alphabetical&page=1";}
else {$queryString = bp_ajax_querystring( 'members' );}
?><?php if…[Read more]
-
VentureCore replied to the topic Sort Members Alphabetically by Default in the forum How-to & Troubleshooting 9 years, 5 months ago
Thank you,
I tried that both in members-loop and now in index and neither work. It changes the order the list shows up in the dropdown but does not affect the default sort order.
I had a solution but didn’t record it, it is either not working now or got overwritten through an update.
Any other thoughts? 🙂
-
VentureCore started the topic Sort Members Alphabetically by Default in the forum How-to & Troubleshooting 9 years, 5 months ago
I have read a lot of threads here regarding the default displays for members alphabetically and at one point I had found a solution that worked but it was recently overwritten by an upgrade. (I failed to put it in the child theme) – my bad!
So I went on the search again and found this. (I don’t think it’s what I was using)
if ( bp_has_members(…[Read more]
@manakio2k
Active 4 years, 7 months ago