at the very bottom of the activity/index.php file, replace
`
`
with
`
Well if it doesnt pull two url’s on a standard wordpress site and then it pulls two with a buddypress site I have to think it’s a buddypress question no?
This plugin is currently working with my latest version Wp/BP site:
https://wordpress.org/extend/plugins/blog-topics/
Note, however, that I did have to custom code a way to display the sites per their topics (I added that to the default BP blogs directory):
What version of BuddyPress are you using?
But Profile Search does not work with WordPress 3.2.1?
Looks like you have not completed Step 3 of the BP Compatibility process – https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/#tplfiles
In your case, you have to use the first method – i.e. changing 16 BP template files – to fix alignments and spacing – per your questions #1 and #2 above.
Download the 6 BP folders transferred to your Memo theme folder in server down to your computer hard drive. Starting from activity/index.php, open this file and make the following changes:
At the very top of the file, replace:
`
with [UPDATED replaced hentry-content with entry-content]
`
at the very bottom of the activity/index.php file, replace
`
`
with
`
`
Save file and continue with replace the same with the remaining 15 files.
For registration.php, replace the bottom area
`
jQuery(document).ready( function() {
if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
jQuery(‘div#blog-details’).toggle();
jQuery( ‘input#signup_with_blog’ ).click( function() {
jQuery(‘div#blog-details’).fadeOut().toggle();
});
});
`
with [Updated this whole block]
`
jQuery(document).ready( function() {
if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
jQuery(‘div#blog-details’).toggle();
jQuery( ‘input#signup_with_blog’ ).click( function() {
jQuery(‘div#blog-details’).fadeOut().toggle();
});
});
`
Save and upload folders to theme folder
or this one
https://wordpress.org/extend/plugins/wp-resume/
BP Media has a nice upload function accesable from the users profile, if you dig through their plugin files im sure youd find a similar function. Or are you looking for some sort of shortcode for users?
Theres also https://wordpress.org/extend/plugins/buddypress-activity-plus/screenshots/ which might be sort of what your looking for…
I just installed wordpress 3.1 and then I installed buddypress, and the Fishbook theme, nothing else, when I try to post a comment I get the same page not found error, with both the default theme, and the fishbook theme.
I’m a bit confused about this whole thing. BuddyPress is supposed to block SWT posts out of the box: https://buddypress.trac.wordpress.org/browser/trunk/bp-blogs/bp-blogs-functions.php#L163 If it’s not working, then there’s a bug in BP.
Scratch that. Found the solution here https://buddypress.trac.wordpress.org/ticket/3595
Use Paul his BP Labs plugin to make it more intuitive for the user.. it shows a nice popup as soon as someone types the @ character: https://wordpress.org/extend/plugins/bp-labs/
And some preview images: http://bp-tricks.com/featured/add-mentions-auto-complete-to-your-buddypress-site-with-the-bp-labs-plugin/
https://wordpress.org/extend/plugins/unconfirmed/ – use this to view and activate unactivated accounts.
I have not encountered that activation issue before. To troubleshoot, I would:
– Deactivate all plugins including BuddyPress and change to Twenty Eleven theme. Check registration on regular WordPress install. If activation doesn’t work, resolve this first in WP forums and with webhost. If registration/activation works proceed to next step.
– Activate BuddyPress plugin only and change to bp-default theme. Check registration/activation here. If it doesn;t work, file ticket at https://buddypress.trac.wordpress.org/newticket (log in with same username and password). It activation works, proceed to activate your theme and other plugins then test again.
I can try this, but how would I do an e-mail confirmation check if it wasn’t through a BuddyPress registration form? How do I do this in regular WordPress (having deactivated BuddyPress)? Thanks.
I suggest that you need to isolate the mail problem. Deactivate BuddyPress and BP plugins. Make sure that your email confirmation is working in regular WordPress before activating BuddyPress. This could be something where you would need to contact your webhost’s tech support to resolve the issue.
That sounds like a WordPress Multisite (sub-domain setup) with Buddypress running as front-end. The Buddypress main domain would be where you host your General content, then host the more specific content on the subdomain blogs. @Bowromir over at http://bp-tricks.com/ has always been a proponent of the subdomain blog having a similar look to the main blog, and as such has created a Multisite WordPress default theme: http://bp-tricks.com/featured/new-theme-bp-default-member-blog-multisite-communties/
You could then use a functionality like http://wpebooks.com/replicator/ to create the basic layout of one specific site you need (with the look and feel you want), then replicate that site multiple times, adding the specifics for each city.
@johnjamesjacoby Hi John, I am reading your comments and appreciate your knowledge and skills. I am about to also try to find your plugin. (I am not a programmer so most of the instructions went over my head – I do the design/art direction part).
I have a project I took on as a probono to develop an mu site for a National Park Service Collaborative http://www.intooutside.org. I created a wordpress site with Buddy Press, and we are finishing the content integration and signing up users. There are a lot of ways I could use your savvy and help…as I am limited in my coding skills. The project is to inspire kids to get outside into the wilderness and to create a forum for them to share their stories.
Are you available to talk about the site I am making and struggling with? If so, how may I contact you? You may send me an email via creative-entity(com)/contact.html
MANY THANKS!
~
Amy
PS @mikepratt @apeatling If any of you other guys have a desire to help, I would REALLY appreciate. This is a non-profit project and I am in need ….I can offer some design trade, music, dance..
Not sure this plugin still works but you can find a WP plugin for this functionality
If your website email doesn’t work at all you may need an extra plugin. The codex suggests one here: https://codex.buddypress.org/troubleshooting/frequently-asked-questions/
I use https://wordpress.org/extend/plugins/wp-mail-smtp/ which has a useful debugging feature….
Hi, see here
http://bp-tricks.com/featured/give-every-buddypress-component-dedicated-sidebar/
and you can use the functions is_XXXXX__page() to test for page
https://buddypress.trac.wordpress.org/browser/branches/1.5/bp-core/bp-core-template.php
bp_is_user_friends_activity()
bp_is_user_groups_activity()
….
… hope this help u:
Several ways, but check out this plugin: https://wordpress.org/extend/plugins/unconfirmed/
To disable activations (I would strongly recommend against this – it’d let spammers access your site much more easily), put this code somewhere, maybe in bp-custom.php:
`add_action( ‘bp_core_signup_send_activation_key’, ‘__return_false’ );`
Check how it’s done properly in bp- default https://buddypress.trac.wordpress.org/browser/tags/1.5.1/bp-themes/bp-default/header.php#L6 and in twentyten theme https://core.trac.wordpress.org/browser/tags/3.2.1/wp-content/themes/twentyten/header.php#L21
BP Album+/Media – https://wordpress.org/extend/plugins/bp-album/ (free. not sure about audio/video)
BP Gallery – http://buddydev.com/plugins/bp-gallery/ (premium)
I have gone back to try setting up forums, having previously (after not being able to get them to work) unticked the forum checkbox on the setup routine.
This time, having ticked it, I have manually set up a page called “Forums” and gone to:
http://example.com/wp-admin/admin.php?page=bb-forums-setup
and chosen to install group forums.
This takes me to:
http://example.com/wp-admin/network/admin.php?page=bb-forums-setup&step=new
which says:
“You do not have sufficient permissions to access this page.”
If I try to set up sitewide forums, I get a miniature of the admin page for installing new plugins.
The only part of the setup which is non-standard is David Dean’s Networks for WordPress plugin.
You are welcome to have access to the VPS to look if this is of any interest.
Many thanks – hope some of this makes sense.
I was going to make a hack for the plugin and then I realized something simple: Really simple… buddypress signup is the same as wordpress signup. Here;s the solution http://www.janvierdesigns.com/tutorials/janrain-engage-make-a-buddypress-plugin