Search Results for 'wordpress'
-
AuthorSearch Results
-
May 8, 2014 at 4:43 pm #182668
Giacomo
ParticipantHey Ben
Auto embeds are a WordPress feature: https://codex.buddypress.org/getting-started/embeds/
You can disable them site-wide with a filter: http://wpengineer.com/2487/disable-oembed-wordpress/
Good luck!
GiacomoMay 7, 2014 at 10:17 pm #182625In reply to: Limit members search to full name only
julianprice
ParticipantMaybe checkout this plugin:
https://wordpress.org/plugins/bp-profile-search/installation/
May 7, 2014 at 9:56 pm #182624In reply to: How to Optimize and Maximize BuddyPress Performance
BackpackersUnion
ParticipantThis is all great info. One additional sugestion is using the plugin “Use Google Libraries”
https://wordpress.org/plugins/use-google-libraries/
I’m still in the developmental stages of my site, so I have no other speed optimization plugins active, but this one by itself sped up page load times by double.
Another (That I think may be a feature in some of the cacheing plugging mentioned here…) is “Scripts To Footer”.
https://wordpress.org/plugins/scripts-to-footerphp/
I’ve had a little trouble with this one because some of my scripts need to be loaded inline with the page, but it speed up visual page load time significantly. But make sure you check your site for functionality after (Google Map Plugins, ‘Fancy Box’ animation, etc.).
May 7, 2014 at 2:14 pm #182600In reply to: BuddyPress theme – Looking for ideas
Aron Prins
Participant@bphelp
But this has nothing to do with the bp-default theme? This is a theme that is based on twitter bootstrap customized to match with a buddypress site. It also works with WordPress that has no BP enabled…I feel that there are just a few really good themes for BuddyPress out there like BuddyBoss and recently InspireBook by rtCamp. Im looking to contribute to that list 😉
Cheers,
AronMay 7, 2014 at 2:10 pm #182599In reply to: BuddyPress theme – Looking for ideas
bp-help
Participant@aronprins
The bp-default theme that ships with BP is being retired so in the future there will not be a theme that ships with BP in favor of theme compatibility. If I was in your position I would just focus on making a really good WordPress theme with standard template structures and it should work with BuddyPress. The bonus is if the theme is good and works with just WP then you’ve not pigeon holed your profit to just BP users.May 7, 2014 at 1:52 pm #182597In reply to: BuddyPress theme – Looking for ideas
bp-help
Participant@aronprins
There is no point in creating a BuddyPress theme any more since 1.7 see:
any theme that has standard WordPress template structure is compatible so basically all you have to do is create a standard WordPress theme.
Cheers!May 7, 2014 at 9:29 am #182591In reply to: Feature request: New user moderation
SK
ParticipantDoesn’t 2.0 have the functionality you need?
https://buddypress.trac.wordpress.org/ticket/5374May 6, 2014 at 11:39 pm #182580In reply to: [Resolved] Code for members?
Henry Wright
ModeratorAlso, check out WP_User_Query
https://codex.wordpress.org/Class_Reference/WP_User_Query
You can do what you need to easily using the search parameters. For example:
$args = array( 'search' => $string, 'search_columns' => array( 'ID' ), ); $user_query = new WP_User_Query( $args );Where
$stringis the user submitted search string i.e. the user IDMay 6, 2014 at 11:26 pm #182579In reply to: [Resolved] Code for members?
julianprice
Participant[DISCLAIMER: I have no/little experience in design & development in wordpress, so I am learning but thought I comment in effort to be helpful]
I am unsure of the code to search/query results of users but based on he analogy you presented in imputing a # number to show suggested match. I would think is easily possible by echoing out member/user Data id #.
That would be my thought, suggest maybe looking /googling for user meta and how to use them.
May 6, 2014 at 8:28 pm #182574In reply to: Bug with link posts in activity page
r-a-y
KeymasterI believe this was recently fixed here:
https://buddypress.trac.wordpress.org/changeset/8351/nirgalo – Apply that change and see if that fixes things.
May 6, 2014 at 8:23 pm #182573In reply to: Bug with link posts in activity page
Henry Wright
ModeratorRight! I see what you mean. You could try letting the guys know over at BuddyPress Trac by raising a new ticket:
http://buddypress.trac.wordpress.org
They’ll be able to take a look
May 6, 2014 at 7:29 pm #182568In reply to: Bug with link posts in activity page
nirgalo
ParticipantI am using this theme. I doubt it comes from the theme though, this is the not the theme which is formatting the link I guess.
May 6, 2014 at 5:46 pm #182558In reply to: [Resolved] Mobile Billing
Henry Wright
ModeratorHi @tonymalony
Yes you can tweak the default sign up to do that. Also, consider using something like this to redirect logged-out users away from content you want accessible to logged-in members only.
function custom_redirect() { if ( ! is_user_logged_in() ) { // redirect wp_redirect( home_url() ); exit; } } add_action( 'template_redirect', 'custom_redirect' );Ref:
https://codex.wordpress.org/Function_Reference/home_url
https://codex.wordpress.org/Function_Reference/is_user_logged_in
https://codex.wordpress.org/Function_Reference/wp_redirect
https://codex.wordpress.org/Plugin_API/Action_Reference/template_redirectMay 6, 2014 at 2:45 pm #182553In reply to: WP profile fields not editable in BP profile
elaborate
ParticipantI think I need to clarify that it’s the not being able to configure the WordPress profile in BuddyPress that I think is the issue. Displaying the fields is another side of it that I might agree should be left to a plugin developer.
…it will require keeping up with WP if they decide to switch which fields are included on that page.
I agree that this is an issue, but realistically, the WordPress profile hasn’t been updated in several years, apart from very recently when they actually removed fields in an effort to simplify it, so I doubt they intend to add anything to it either.
The fields at wp-admin/profile.php are very odd, and not appropriate for most BuddyPress installations…
As I mentioned above, those fields (AIM, Jabber and Yahoo/gTalk) were recently removed.
As noted in the ticket, First Name and Last Name are the two possible exceptions I see here.
That just leaves display name selection, nickname and website; email and password are configurable in BuddyPress and you already display username and bio on the profile when Extended Profiles are disabled. Why not allow the user to edit them too and add the remaining three fields? This would effectively move the profile to the front-end and nobody would need to configure their profile in two places again, which I think is the underlying issue here.
…it causes problems when other plugins add their own (hardcoded) fields, which BP won’t know about
I’m getting into deep water, but wouldn’t adding a hook before and/or after the fields be sufficient to deal with that?
May 6, 2014 at 2:28 pm #182551In reply to: Multi stage registration?
Henry Wright
ModeratorHi @plinth
It isn’t possible by default. You could set up a new page and direct member’s to it on successful registration. That page would have a form on it which lets the member add profile info. Then when that page’s form has been processed successfully the member is taken to the third page and so on.
template_redirectis the hook you’d need to use andwp_redirect()will enable the page ‘hopping’.https://codex.wordpress.org/Function_Reference/wp_redirect
https://codex.wordpress.org/Plugin_API/Action_Reference/template_redirectNote: You’d need to be comfortable with PHP to do it.
May 6, 2014 at 1:08 pm #182548In reply to: [Resolved] Onprofessional look
Glszn
ParticipantThank you very much. it is a wordpress multisite. Social networking, dating and community themes, plugins etc combined. Still in the middle of building the sites, but here is the Link
May 6, 2014 at 12:11 pm #182543In reply to: WP profile fields not editable in BP profile
Boone Gorges
Keymaster> I can’t find any arguments for not including the WordPress profile in BuddyPress.
The arguments are:
– The fields at wp-admin/profile.php are hardcoded in WP. There’s no way we can ask WP which fields it provides in a programmatic way; we’d have to hardcode them as well. This is inelegant; it causes problems when other plugins add their own (hardcoded) fields, which BP won’t know about; and it will require keeping up with WP if they decide to switch which fields are included on that page.
– The fields at wp-admin/profile.php are very odd, and not appropriate for most BuddyPress installations (or most websites that were built after 2004 – who uses AIM, and who among them would want to store that information in their WP profile?)As noted in the ticket, First Name and Last Name are the two possible exceptions I see here.
May 6, 2014 at 11:51 am #182541In reply to: WP profile fields not editable in BP profile
elaborate
ParticipantThank you for creating #5619, I’m gonna be glued to that ticket.
#3335 already has comments on it regarding why WP’s profile is not included with BuddyPress.
Sorry if I’m missing something, but all I can find are comments about a two-way sync where the issue is moving BuddyPress feature support upstream to the WordPress profile; I can’t find any arguments for not including the WordPress profile in BuddyPress.
About #4357, most bbPress profile pages already redirect to BuddyPress when it’s installed. Do you know if it’s bbPress or BuddyPress that’s doing the current overrides?
May 6, 2014 at 8:09 am #182533In reply to: Extra pic at the bottom of a profile
Giacomo
ParticipantIt’s probably because of the theme you’re using
If I were you I would try to activate another theme for example twentytwelve https://wordpress.org/themes/twentytwelve
With that you won’t have this kind of issues and you’ll still be able to customise the look and feel to make it looks very similar to what you have now
May 6, 2014 at 12:26 am #182526In reply to: Members uploading videos to website
ABerry100
ParticipantHopefully you’ve got this sorted… but if not try this plugin…
http://www.wpexplorer.com/buddypress-wordpress-plugins/ the plugin is rt media 🙂
Cheers
AlexMay 5, 2014 at 11:57 pm #182522In reply to: WP profile fields not editable in BP profile
r-a-y
Keymaster#4357 – I agree that something needs to be done. bbPress already adds a “Forums” section on a BP profile, so perhaps bbPress can simply redirect
/forums/users/USERNAME/to BP’s/members/USERNAME/forums. I would say this is more a bbPress issue than a BuddyPress one. Please add a ticket to bbPress Trac about this. (Use the same credentials you use on buddypress.org to create a new ticket.)#3335 already has comments on it regarding why WP’s profile is not included with BuddyPress. I do find it odd that bbPress allows users to edit WordPress’ user profile though… I’ve created a new ticket with some further thoughts – #5619
May 5, 2014 at 9:02 pm #182513In reply to: [Resolved] Need activation key???
Diego de Oliveira
ParticipantHi, folks,
I’ve seen that this thing of activation e-mail is quite a headache for some people using BP. I’m currently having some trouble too. Most of the time, when a user creates an account on the site I’m working on, the e-mail with the activation link is sent ok. But for some users, the link on the e-mail comes without the key (something like
http://www.site.com/activate/?key=), what results in the page asking a activation key. The problem is that I can’t reproduce the issue, but I received even a print screen from an user showing that the problem indeed exist.I’ve installed Unconfirmed plugin to check if there is users that are not confirmed, and there are a couple of users. I can see the activation key for every unconfirmed user. What can be causing this issue?
I’m currently using Buddypress 1.8.1, bbPress 2.4.1, and for the themed login, I’m using Theme My Login 6.3.9. I’m using too WordPress Social Login 2.1.3 for give users a social login option. To style the e-mails, I’m using WP Better Emails 0.2.6.5.
Thanks for any help!
May 5, 2014 at 8:36 pm #182512Giacomo
ParticipantIf you are using WordpPress multisite by default anyone signing up to example1.com will be able to log-in to example3.com –
But by default he will only be able to see his own profile. You will then have to manually change his role to at least subscriber for him to participate/see BuddyPress on example3.comIf you don’t have a developer you can try this plugin to automatically assign a subscriber role on example3.com to each new user registered elsewhere
https://wordpress.org/plugins/multisite-user-managementGood luck!
May 4, 2014 at 5:36 pm #182475In reply to: Feature request: New user moderation
sharmavishal
ParticipantMay 4, 2014 at 4:24 pm #182469In reply to: Text in fields linked – by design?
SK
ParticipantI would prefer a field-by-field switch a la https://buddypress.trac.wordpress.org/ticket/787 as opposed to a blanked on/off.
-
AuthorSearch Results