Search Results for 'wordpress'
-
AuthorSearch Results
-
January 17, 2015 at 1:14 pm #232451
In reply to: BuddyPress Users with Tags as Taxonomy
Henry Wright
ModeratorHi @ch1n3s3b0y
Do you mean create a new custom taxonomy called users and then each time a user registers, you want a new term to be created?
If so then check out these resources:
https://codex.wordpress.org/Taxonomies
You’ll need to use
register_taxonomy()to create your new taxonomy (see here)To insert a new term you can use
wp_insert_term()(see here)When you come to write your function, hook it to the
bp_core_signup_useraction.January 17, 2015 at 12:47 pm #232447Paul Wong-Gibbs
KeymasterI’m not sure, but it sounds like your line of thought is valid. Using a cookie for this seems a bit weird, but hey, that’s how it’s been implemented at the moment. π
If when you finish working through things, you still think you’re onto a bug with the missing cookie idea, please would you submit an explanation of the issue over on our bug tracker at https://buddypress.trac.wordpress.org/newticket ?
January 16, 2015 at 11:38 am #232431In reply to: Determine Profile Template File by Member Type
Henry Wright
ModeratorTo my knowledge, this isn’t built in to the current template hierarchy.
Ref:
You could open a ticket on Trac requesting the enhancement (try searching open tickets first to make sure it isn’t already planned).
January 16, 2015 at 7:25 am #232429BuddyBoss
ParticipantDefault BP does allow to see other usersβ Favorits in the Favorit tab in Profile page β why does Buddyboss kills this? At least site admin should be able to turn it on or off.
I see what you mean. We will consider adding an admin option.
Buddyboss is never meant to load every plugin but if a chosen few are bundled, it will be really good rather than re-inventing wheels at premium plugins, features of which are already available in the WP-BP repo. If users like us see thay they are well integrated into the Buddyboss look and feel there can be more sales of the Buddyboss theme actually.
I appreciate all of the feedback, very much. Our plan is to expand on these plugins and make them more feature rich, launch more premium plugins and themes, and also free plugins for the community over the year.
We launched two free plugins this week which you may be interested in:
Search all BP components in one unified dropdown:
https://wordpress.org/plugins/buddypress-global-search/Edit BP activity from the front-end:
https://wordpress.org/plugins/buddypress-edit-activity/January 15, 2015 at 7:50 pm #232420In reply to: Disable Password Change
danbp
ParticipantThe password field belongs to WordPress, so you could probably try to apply this trick.
January 14, 2015 at 5:58 pm #232299In reply to: Remove Avatar Mouseover Showing Email Address?
r-a-y
KeymasterI think I’ve noticed this in the past as well.
If you feel comfortable posting this to our ticketing system, please do:
https://buddypress.trac.wordpress.org/newticket (use the same credentials as you use here)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.
-
AuthorSearch Results