Search Results for 'wordpress'
-
AuthorSearch Results
-
September 2, 2009 at 3:20 am #51903
In reply to: HELP I CAN'T POST! – README
John James Jacoby
KeymasterThat’s a good question. Can you login with your old account on any other *press website? bbpress.org, wordpress.org, etc?
September 1, 2009 at 10:40 am #51871In reply to: BuddyBar for bbPress
Sven Lehnert
ParticipantThere is a bug in the deep integration script
if ( !defined( ‘ABSPATH’ ) & !defined( ‘XMLRPC_REQUEST’ )) {
define( ‘WP_USE_THEMES’, false );
include_once( ‘/your/absolute/path/to/wordpress/wp-blog-header.php’ );
header( “HTTP/1.1 200 OK†);
header( “Status: 200 All rosy†);
It looks like everything is working fine, but a user from the german buddypress forum ( mt ) find out, that wordpress overwrites the buddypress header and so there comes header 200 back and often it is a 302 or even a 404.
this is the new script from mt.
if ( !defined( ‘ABSPATH’ ) & !defined( ‘XMLRPC_REQUEST’ )) {
define( ‘WP_USE_THEMES’, false );
include_once( ‘/your/absolute/path/to/wordpress/wp-config.php’ );
$wp->init();
$wp->register_globals();
I post it hire because I think it must be interesting for everyone. In fact it is really important for seo and the german forum is far away from hire…
September 1, 2009 at 5:23 am #51866In reply to: Why is BuddyPress stripping my object or embed tags?
Jomark
ParticipantYou just use this very light plugin, http://www.matteoionescu.com/wordpress/embed-html/ or https://wordpress.org/extend/plugins/custom-fields-shortcode/ . I have used the latter.
It makes use of the custom field in embedding videos.
August 31, 2009 at 10:09 pm #51845In reply to: Plugin to show components to registered Users only
pxlgirl
ParticipantHi,
I get this error msg after setting up bp-custom.php and editing the register.php:
Warning: Cannot modify header information – headers already sent by (output started at /blah/wordpress-mu/wp-content/mu-plugins/bp-custom.php:1) in /blah/wordpress-mu/wp-content/plugins/buddypress/bp-xprofile/bp-xprofile-signup.php on line 5
What went wrong here?
pxlgirl.
August 31, 2009 at 8:50 pm #51839In reply to: How to make a safe community?
takuya
ParticipantProfile visibility is discussed many times, and there’re even profile plugin and bp-custom hacks to keep privacy. Do search the topics.
User registrations… this is not really a buddypress thing. WordPress is lacking user management function, and I understand your frustration. However using plugins you can force users to answer certain question, otherwise user is not registered.
August 31, 2009 at 8:41 pm #51836In reply to: BP-custom in the wrong place
owencutajar
ParticipantThe “modifying the WordPress bar” tutorial says
“Any custom code that we create can be placed in a file called bp-custom.php. It gets loaded with all the rest of bp automatically by bp during each page load. If you don’t have one already then create one in /plugins/buddypress.”
August 31, 2009 at 4:47 pm #51820In reply to: bp-events for bp 1.1 needs testing!
Alex Cragg
ParticipantOK, done that. I’m now getting an error after the first creation screen, and this error in my logs
WordPress database error Unknown column ‘avatar_thumb’ in ‘field list’ for query INSERT INTO wp_bp_events ( , referer: http://domain.com/members/admin/events/create/
It appears as though the plugin isn’t creating that field in bp-events.php, I can’t find any reference to it anyway, and then in bp_events_classes.php, avatar_thumb and avatar_full have commands to have information inserted into them in the save() function.
I added the necessary lines to add those fields in the sql create and everything works…
August 31, 2009 at 3:06 pm #51812In reply to: Help with Restoring my website database
Jeff Sayre
ParticipantRead through this WPMU Codex article on changing your site URL. It should provide the assistance you need.
August 31, 2009 at 9:06 am #51802In reply to: Replace WP profile edit with BP profile edit
John James Jacoby
KeymasterYou could make a custom login page with BP trunk like…
define('BP_LOGIN_SLUG', 'login');
function bp_show_login_page() {
global $bp, $current_blog;
if ( $bp->current_component == BP_LOGIN_SLUG && $bp->current_action == '' ) {
bp_core_load_template( 'registration/login', true );
}
}
add_action( 'wp', 'bp_show_login_page', 2 );Then put a template file named “login.php” in your frameworks registration folder and steal some code from the buddypress login form to help with getting started…
There’s a few examples online on how to redirect the WordPress login page with .htaccess. Could give that a shot too?
August 30, 2009 at 6:04 pm #51776In reply to: Replace WP profile edit with BP profile edit
peterverkooijen
ParticipantThis is going nowhere. I’ll just hack core file; replace wp-login.php and wp-admin/profile.php with copies on login.php and account/profile.php (?) and then search/replace all links.
I f***ing hate WordPress registration/member management!
August 30, 2009 at 1:27 pm #51769In reply to: New Groupblog Plugin
Mariusooms
Participant– is it possible with BP to disable the “Wire” ?
Yes…this can be disabled per group at the group creators discretion.
– is it possible to use P2-theme in your “Group-blog” ?
I don’t know, I have not use the P2 theme yet, but I imagine it should be no problem.
– are there any language-related wording in your plugin (at the user-interface) which need to be translated when I would like to run your plugin for a german-language-website ?
Yes, a language file is included which you may translate using the wordpress guidelines.
August 30, 2009 at 1:06 am #51747In reply to: New Groupblog Plugin
abcde666
Participant– can I have a Group-Blog instead of the BBPress-Forum ?
– I would like to disable User-Blogs for each single user, but instead have a Group-Blog using P2-theme. Does this work with your plugin ?
– Is your plugin compatible with BP-version 1.1 ?
– what is the difference from your Group-Blog-plugin compared with the one from Burt ?
https://wordpress.org/extend/plugins/bp-community-blogs/
Many thanks,
August 29, 2009 at 5:34 pm #51735In reply to: Function not registered and cannot be accessed
Jeff Sayre
ParticipantAre you using the BuddyPress Skeleton Component as the framework with which to code your plugin? If not, you should download it and see how the example code that adds an admin page to WPMU’s backend is written.
The example code is in bp-example-admin.php.
August 29, 2009 at 3:31 pm #51728In reply to: Help with Upgrading my Site
Kunal17
ParticipantIs there a series of tests that we can perform to make sure that the WPMU+Buddypress upgrades have completed without any damages? WordPress says all upgrades went off well but I am still concerned about finding problems later.
August 29, 2009 at 1:11 pm #51722In reply to: New Groupblog Plugin
Mariusooms
ParticipantThe new feature to select an existing blog is now available. We also fixed some other bugs.
There is only one (known) bug left, which we will squash on Monday. Namely member roles are not set upon creation, but they are set when saving the 2nd time around form the admin as explained in the readme.
August 29, 2009 at 10:12 am #51719oriste
ParticipantYou might want to try the Maintenance Mode plugin at https://wordpress.org/extend/plugins/maintenance-mode/
August 29, 2009 at 4:45 am #51714In reply to: P2 Theme As The Wire/Wall?
John James Jacoby
KeymasterWhen it’s ready, it’ll be available through the BuddyPress/WordPress theme repo, so everyone can have at it.
August 29, 2009 at 4:10 am #51712John James Jacoby
KeymasterYou could modify the home.php file and rip out all the extra code. Home.php will always act as the front page of your website, regardless of your WordPress settings.
August 28, 2009 at 11:12 pm #51706In reply to: BuddyBar for bbPress
Lriggle
Participant@ John James Jacoby
Thanks for the info! I’ve verified that all my Keys and Salts are the identical, and double checked that the deep integration code given here (https://wordpress.org/extend/plugins/buddybar-in-bbpress/installation/) has the correct path.
I’m not sure where else to check for cookie issues.
I’ll look into the redirection plugins for my other issue.
Thanks!
August 28, 2009 at 11:46 am #51687In reply to: Can't access my member profile
pxlgirl
ParticipantAll right, I got it. bp must be always in the parent directory:
mydomain.org/wordpress-mu/
Pheeew.
August 28, 2009 at 10:45 am #51682In reply to: Can't access my member profile
pxlgirl
ParticipantQuick update:
After activating the theme on the first blog, it still shows the same error msg.
my structure looks like this:
/wordpress-mu/firstblog/
/wordpress-mu/secondblog/
…
/wordpress-mu/community -> where bp should run
August 28, 2009 at 6:23 am #51671r-a-y
KeymasterAdd your register_sidebar() functions code from your existing WordPress theme’s functions.php file to your BP Member theme’s functions.php file.
Then your WordPress sidebar should show up.
August 28, 2009 at 6:03 am #51669hitekhomeless
Member^
August 28, 2009 at 1:54 am #51658In reply to: P2 Theme As The Wire/Wall?
Korhan Ekinci
ParticipantI am using it here at: http://duvar.fenerbook.com
I had to get rid of the “blog authors” link from the adminbar, because of too many authors and also page loading was slow.
I have the wordpress video plugin (enabled site wide) which works well with p2 theme and member blogs as well!
http://www.daburna.de/blog/2006/12/13/wordpress-video-plugin
Hope it helps.
August 27, 2009 at 9:29 pm #51654In reply to: New Page Selected
Paul Wong-Gibbs
KeymasterThis is not a BP question, but a WP theme question! A quick Google of that function took me to https://codex.wordpress.org/Template_Tags/wp_list_pages.
Five minutes reading revealed:
All list items (li) generated by wp_list_pages() are marked with the class page_item. When wp_list_pages() is called while displaying a Page, the list item for that Page is given the additional class current_page_item.
So, apply a style to .current_page_item.
-
AuthorSearch Results