Search Results for 'wordpress'
-
AuthorSearch Results
-
October 7, 2010 at 12:28 pm #94475
Tao JIN
Participantsorry for not clarify issues.
First,
In Registration Settings, I selected “Both sites and user accounts can be registered.”
And When I sign up a new test account , and select to create a new blog with a given sub domain name.
But, there is no new blog created , the test account only become a member of the main site.please check it from here: http://usenode.com/register/
you can test it.
Thanks.October 7, 2010 at 12:11 pm #94472Hugo Ashmore
ParticipantI’m not sure we’re not talking at cross purposes here.
you say “new user was for main site” ok all fine and good but “mot a new created blog site” ? not sure what that means.
A new user registers they opt to create a new blog, they become a member of the main site i.e the parent WP site which is running BP they also get a blog created at a sub domain address this blog is in effect a standalone blog it should be linked to however from their profile. Iniatially they will be the only person registered to that sub domain blog and the main site has to allow users to register to the sub blogs.
October 7, 2010 at 12:04 pm #94471Tao JIN
Participantstill have problem, the new user was for the main site. not a new created blog site.
October 7, 2010 at 10:12 am #94462Anonymous User 96400
InactiveAlright, you just add a do_action call (like above) to one of the extensions and then attach a function to that action, like so: `add_action( ‘this_is_some_hook’, ‘your_function_name’ )`. You’ll also have to provide hooks in the functions where the data gets saved and hook into those to save the extra groupmeta. The WP codex has lots of info on actions and filters and is a good place to start.
October 7, 2010 at 9:37 am #94461Hugo Ashmore
ParticipantThis isn’t an issue I’ve come across, you shouldn’t have a problem, that you say tings work with BP disabled yet not when BP is enabled is odd, I presume you have created a sub-domain under the WP setup, when activating BP BP should pick that blog up and show it under th members account/profile as a user blog.
October 7, 2010 at 9:01 am #94456Tao JIN
Participantyes, I use the default BP theme. but it can’t create new blog , only create the user
October 7, 2010 at 8:59 am #94455Hugo Ashmore
ParticipantHmm not sure what the problem is then, you are using the default BP theme aren’t you
October 7, 2010 at 8:49 am #94452Tao JIN
Participantyes, all of this seems right.
I use the WP 3.0.1
and add
define( ‘MULTISITE’, true );
define( ‘SUBDOMAIN_INSTALL’, true );
$base = ‘/’;
define( ‘DOMAIN_CURRENT_SITE’, ‘usenode.com’ );
define( ‘PATH_CURRENT_SITE’, ‘/’ );
define( ‘SITE_ID_CURRENT_SITE’, 1 );
define( ‘BLOG_ID_CURRENT_SITE’, 1 );also DNS wild card entry allowed.
Now, I signup , only the user was created, no new blog create, even I input the blog ‘s sub-domain.
But, when I remove the buddypress, use the default theme of WP 3.0.1, it works, I can create the use with new blog.
October 7, 2010 at 8:19 am #94448Hugo Ashmore
ParticipantHave you enabled the registration of both users and blogs in the main site options?
Have you definitely enabled Multi Site capability – is this actually WP 3.0.1 or the now slightly older WPMU you are using?
Have you set DNS wild card entry to allow sub domains to work?
October 7, 2010 at 6:45 am #94443modemlooper
Moderatorurl.com/groups/ group name here /forum/#post-new
October 6, 2010 at 9:32 pm #94403vermont-bee
ParticipantI did that, per suggestion from Andrea_r from the multisite forum on wordpress.org. DIdn’t fix it.
The even stranger part is that when I make a “sub blog” off of a network the links work just fine.
EXAMPLE:
WORKS:
memoirsite.com
memoirsite.com/groups
recollectioncheck.com
recollectioncheck.com/testsiteone
recollectioncheck.com/testsiteone/aboutDOESN”T WORK
recollectioncheck.com/about
autobituary.net/aboutOctober 6, 2010 at 9:24 pm #94401In reply to: RSS with Feedburner
r-a-y
KeymasterInstead of trying to change the URL of the activity feed, you should redirect the feed to the Feedburner URL.
Read this excellent blog entry by Jeff Starr for hints:
http://perishablepress.com/press/2008/03/25/redirect-wordpress-feeds-to-feedburner-via-htaccess-redux/October 6, 2010 at 9:19 pm #94400In reply to: blog sturcture
r-a-y
KeymasterHi @tubruk,
From what you typed, I can’t really confirm what it is you want to do.
Sounds more like a theme issue, you might want to check modemlooper’s BP Columns theme for hints on how to structure the page into 3 columns:
https://wordpress.org/extend/themes/bp-columnsOctober 6, 2010 at 4:41 pm #94375In reply to: BuddyPress Spam
@mercime
ParticipantThere’s also https://wordpress.org/extend/plugins/moderate-new-blogs/ and https://wordpress.org/extend/plugins/limit-blogs-per-user/ which could help
October 6, 2010 at 3:25 pm #94361In reply to: Display email on profilepage
islandcastaway
ParticipantI am also looking for info on passing user_meta to the profile page. Let’s keep in touch.
October 6, 2010 at 1:25 pm #94353In reply to: Translating buddypress
John
Participanthttps://wordpress.org/extend/plugins/fw-quick-langswitch/, it’s working I didn’t renamed the image file correctly. Does anyone use it ? I would like to know if your navigation bar is translated on the others blogs.
For me, the plugin only translate the navigation bar on buddypress.myblogs.com. The other blogs are still having the navigation bar in English.
October 6, 2010 at 3:45 am #94329In reply to: Group Forum As Default Page
Erlend
ParticipantSomeone did indeed post a code snippet that did exactly that, though I can’t find it myself any longer. Ideally though, this would be a plugin functionality that could be enabled per-group as a check list via the WordPress backend. I’d love to engage more users to the full potential of our groups, but fact is some of our groups still exist for the sole purpose of replacing the forum board we emigrated from.
October 5, 2010 at 11:06 pm #94319Roger Coathup
ParticipantIf you deactivate buddypress..can you create and use custom permalinks in your WordPress install? Try something like /%category%/%postname%/
Do they work, can you go to page, post and category pages with custom permalinks turned on?
You need to get this working on your base WordPress before installing BuddyPress
October 5, 2010 at 5:21 pm #94292In reply to: BuddyPress Spam
Anton
ParticipantAdd this to wp-config.php `define( “BP_REGISTER_SLUG”, “your-registration-slug” );` and change ‘your-registration-slug to your own registration slug.
Edit * the wp-config.php file is situated in the root of your wordpress installation
October 4, 2010 at 6:49 am #94172lespaul
MemberAm I suppose to do this after I have updated WordPress to 3.0 or before I update? Or should I do the update and activate BuddyPress then change the keys?
October 3, 2010 at 10:26 pm #94151October 3, 2010 at 8:58 pm #94146In reply to: Editing Group activity stream
rich! @ etiviti
Participantyou can block them all together (but will need to remove the previous ones manually)
https://wordpress.org/extend/plugins/buddypress-block-activity-stream-types/otherwise there is a few hacks in previous threads on how to filter on the activity array and unset items.
October 3, 2010 at 6:04 pm #94140pcwriter
ParticipantOctober 3, 2010 at 5:30 pm #94137In reply to: BuddyPress Spam
Paul Wong-Gibbs
KeymasterThere is not anything new in BP 1.2.6 that will address any spam issues. Spam blogs, however, is a problem with multisite WordPress in general (not specific to BuddyPress). It still sucks, of course.
October 3, 2010 at 10:43 am #94119In reply to: Blog section isn’t working
Paul Wong-Gibbs
KeymasterYou need to disable BuddyPress until your WordPress multisite is setup and works fully — by “fully”, I mean blog creation, multiple user accounts, commenting and permalinks.
-
AuthorSearch Results