Search Results for 'wordpress'
-
AuthorSearch Results
-
January 14, 2015 at 3:54 pm #232273
@mercime
Participant@serendipitycss3 thank you for reporting the issue. In the meantime, please go to this page https://wordpress.org/plugins/search.php?q=buddypress
January 14, 2015 at 2:41 am #231926In reply to: [Resolved] BP 2.2 beta 1 login avatar
r-a-y
KeymasterThanks for testing, @chubbycrow.
Going to ping @mercime for input here as she recently made changes to the avatars in widgets.
mercime – Okay to revert line 1558 from changeset 9341?
https://buddypress.trac.wordpress.org/changeset/9341Or was there a reason for the 40px declaration?
January 14, 2015 at 12:04 am #231917In reply to: xProfile Required Fields Bug
r-a-y
KeymasterHi @caldwellysr,
Thanks for testing the 2.2-beta.
There was a bug concerning xProfile fields, which should be addressed in:
https://buddypress.trac.wordpress.org/changeset/9345If you feel comfortable removing the lines referenced in
bp-core/bp-core-template.php, please do so and retest.Thanks again for testing!
January 13, 2015 at 11:29 pm #231915In reply to: Display filtered overview of members
Henry Wright
ModeratorRegarding the
$wpdbobject, take a look here for more info:https://codex.wordpress.org/Class_Reference/wpdb#Using_the_.24wpdb_Object
January 13, 2015 at 9:14 pm #231913In reply to: Display filtered overview of members
barodscheff
ParticipantThank you for your answers.
I’ve tried the example from the wordpress codex:
$user_count = $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->users" );It works even when I do not use
global $wpdb;.
First question: Why does it work without global $wpdb?Second question: Why do I have to use
$wpdb->bp_xprofile_datainstead of$wpdb->ar_bp_xprofile_data? Does the prefix do not belong to the name? When I try the query in phpmyadmin I also have to use the prefix.Unfortunately my own queries still not work. I simplified my query now:
global $wpdb; $male = $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->bp_xprofile_data"); echo $male;January 12, 2015 at 9:14 am #231781In reply to: [Resolved] WP_DEBUG Notice for bp_setup_current_user
Henry Wright
Moderatorcurrent_user_can()useswp_get_current_user(). Looking at the function reference for that function, I noticed “Use the init or any subsequent action to call this function”. Take a look at the Action Reference article for the list of actions run during a typical page request. The action you use will depend on what exactly you’re doing but it looks as though the earliest available when usingcurrent_user_can()isinitHope this helps 🙂
Ref:
https://codex.wordpress.org/Function_Reference/wp_get_current_user
January 11, 2015 at 10:17 pm #231764In reply to: Dear developers: Testing data and tools, please!
@mercime
Participant@charlesmabe Testing data
BP – I use this plugin https://wordpress.org/plugins/bp-default-data/
bbPress – download the Sample Data https://bbpress.trac.wordpress.org/ticket/2516 and use WP importer
January 11, 2015 at 2:33 am #231736In reply to: Sidebar Pushed to Bottom
Greg Hyatt
ParticipantI using a theme called Dynamix from Themva and the plugin is BuddyPress Wall here is link to the plugin BuddyPress Wall
I am using most recent version of BuddyPress on WP 4.1
January 11, 2015 at 2:11 am #231735djsteveb
Participant@juliantrueflynn
Might also look into – https://wordpress.org/plugins/unconfirmed/I have used that to resend activations, the plugin description says it can “deleting their pending registrations,” – but not sure if that means is removes them from the database or whatever.. I have not tried using it in that manner. This plugin might also limit the amount of users you can mess with to 20 or 40 at a time – so it may be too tedious to do what you need anyhow. Haven’t played with it a while, and not sure if it’s been updated to add new functions since I used.
Others finding this thread may benefit from that plugin, or not – just a thought.
January 11, 2015 at 12:34 am #231732Henry Wright
ModeratorYeah, see here for details of the
wp_signupstable.You may also be interested in these links:
BuddyPress database description
WordPress database description
https://codex.wordpress.org/images/9/97/WP3.8-ERD.pngJanuary 11, 2015 at 12:10 am #231731juliantrueflynn
ParticipantNevermind, found out from researching more on WordPress databases that for these pending accounts you should go into “wp_signups” database (they’re stored in 2 places). Then with phpmyadmin I am searching that table and deleting anyone using spammy emails.
January 10, 2015 at 10:25 pm #231727In reply to: Members & Media Issues
djsteveb
ParticipantThe theme details for that theme say:
rtMedia Ready – Add albums, photo, audio/video encoding, privacy, sharing, front-end uploads & more.I would bet that for the media tab functions of that to work, you would need to install the rtmedia plugin
( https://wordpress.org/plugins/buddypress-media/ )Of course I don’t win every bet – and don’t bet often – just a thought you might try..
January 10, 2015 at 9:55 am #231719In reply to: Adding Columns to Activity List Table in Admin
danbp
Participanthi @snarkypuppet,
for inspiration a concrete example:
https://github.com/Ipstenu/register-ip-multisite/blob/master/register-ip.phpSearch WP reference for more details:
January 10, 2015 at 1:22 am #231712In reply to: Sidebar Pushed to Bottom
valuser
ParticipantCould be server related.
I had the same issue with one theme on one server (same theme worked perfectly on local installs and on other servers) though comments and activity posting were disabled. javacripts were not loading on one particular server for this particular theme.
The solution, provided by the theme developer, that worked for me (for that problem, which may not be yours, so may not be your solution) was to put the function below in functions.php
add_action( 'wp_enqueue_scripts', 'load_buddypress_js' ); function load_buddypress_js () { if (bp_is_group() || is_page( 'activity' )) { wp_enqueue_script('buddypress_query',plugins_url() . '/buddypress/bp-core/js/jquery-query.min.js',array("jquery")); wp_enqueue_script('buddypress_members',plugins_url() . '/buddypress/bp-core/js/widget-members.min.js',array("jquery")); wp_enqueue_script('buddypress_cookie',plugins_url() . '/buddypress/bp-core/js/jquery-cookie.min.js',array("jquery")); wp_enqueue_script('buddypress_scroll',plugins_url() . '/buddypress/bp-core/deprecated/js/jquery-scroll-to.min.js',array("jquery")); wp_enqueue_script('buddypress_js',get_template_directory_uri() . '/buddypress/js/buddypress.min.js',array("jquery")); wp_enqueue_script( 'heartbeat_js', get_template_directory_uri() . '/wp-includes/js/heartbeat.min.js', array(), '4.1', true ); } }The last item, heartbeat.min.js, is a core wp file from the /wp-includes/js/ folder which this server, specialising in WordPress, was apparently, unilaterally and undeclared, refusing to load!!!!
January 9, 2015 at 7:05 pm #231690In reply to: List of posts in a category – filtered by author
Henry Wright
ModeratorHi @wuvu2
This is more related to WordPress than it is to BuddyPress. Try asking your question over at https://wordpress.org/ where you may get more joy
January 9, 2015 at 5:03 pm #231687In reply to: Custom profile cover image
disha76
Participanthttp://demo.rtcamp.com/rtmedia/members/admin/
They have some themes which provide this. You can also make a request here https://buddypress.trac.wordpress.org/ to incorporate this as all social nets and social scripts are having this feature these days.January 9, 2015 at 12:15 pm #231683In reply to: Custom profile cover image
Henry Wright
ModeratorHi @nunolopes99
I’m not aware of anything like this available but Custom Header Extended is a plugin which allows users to set a header image on a per-post basis. You could use that as a starting point for ideas on how to achieve what you’re looking to do.
January 9, 2015 at 1:56 am #231665tatakatte
Participant@Here’s everything that I have in my functions.php
<?php /** * @package WordPress * @subpackage * @author * @since 1.0 */ /** * Child Theme Functions * Add custom code below */ function my_login_redirect() { if ( is_user_logged_in() && bp_is_register_page() ) bp_core_redirect( home_url() . '/stream/' ); } add_action( 'template_redirect', 'my_login_redirect' );As for @bphelp’s, the slug is really /stream/. I checked it after reading your reply, but it really is /stream/. Also shouldn’t it return a 404-error if it’s a non-existent page? Please correct me if my understanding is wrong.
January 9, 2015 at 1:42 am #231663In reply to: 404 Page for Activity, Groups, Members
Henry Wright
ModeratorWhat info is needed
It’s hard to say with something like this as it could be something as simple as flushing your permalinks (this just involves visiting your permalinks page under Settings) or it could be a problem with your .htaccess file or an issue with how you’ve installed WordPress.
or would you recommend a fresh installation?
It depends on how easy it is to set up afresh. If you don’t have anything to lose then go ahead. Else, if you have lots of website users, and a database full of content then it might be worth looking for a solution instead.
January 8, 2015 at 11:29 pm #231647In reply to: 404 Page for Activity, Groups, Members
aces
Participant@timothylegg
Just a thought – have you got pretty permalinks set up?In WordPress settings > permalinks ( /wp-admin/options-permalink.php )
January 8, 2015 at 9:05 pm #231640In reply to: 404 Page for Activity, Groups, Members
Henry Wright
ModeratorHi @timothylegg
But when I follow the path of Settings -> BuddyPress and then click the Pages tab, I get a page where I associate a WordPress page with each BuddyPress component directory. When I click on ‘View’ for either of the ‘Members’, ‘Activity’, or ‘Groups’, I get a 404 page.
Check if the members, activity and groups pages are actually created by going to your admin area and then clicking on Pages
January 8, 2015 at 6:39 pm #231636In reply to: How to force login screen before accessing site?
Paul Bursnall
Participant@jruffellsmith I’d recommend this – https://wordpress.org/plugins/jonradio-private-site/
January 8, 2015 at 3:15 pm #231621In reply to: How to "Like" ?
disha76
ParticipantOkay I found this https://buddypress.trac.wordpress.org/ticket/5610
This is really a critically ill-experience for the end-users BUT the milestones are being delayed from 2 to 2.1, then to 2.2 and then to 2.3Looks like BP has to be abandoned if this is not provided immediately in the form of a “hack” or plugin. I am unable to execute the patch provided there.
January 8, 2015 at 3:06 pm #231619In reply to: Registration Page not working
disha76
ParticipantGo to wp-admin/network/admin.php?page=bp-page-settings
Find:
Registration
Associate WordPress Pages with the following BuddyPress Registration pages.Now create a New Page and save it with the name – register
and then choose it from the drop-down and save settings.January 8, 2015 at 8:34 am #231608Dainismichel
Participantit would be wonderful, if the WPMUDEV team were to come out with its long awaited theme.
currently, i own “Terso Theme” and WPLMS.
you can buy premium wordpress themes that just plain break BuddyPress, so it is necessary to try things out.
i also run a BuddyPress site with the 2012 theme. i don’t know why, but the activity stream is actually nicely styled and works properly, whereas other themes simply turned the activity stream into an ugly mess.
one criteria for the theme is that certain key functionality has to work in a way that makes sense to users.
-
AuthorSearch Results