Search Results for 'wordpress'
-
AuthorSearch Results
-
February 19, 2010 at 2:24 pm #64144
In reply to: BuddyPress-Links 0.3 FINAL is here at last
MrMaz
ParticipantNice work, you found two bugs at once. The main one was introduced when I fixed date localization issue and the query wasn’t being passed to prepare. The other one has been there since version 0.1 and nobody ever picked it up, but its minor.
Here is the update file in case anyone wants to do a hot fix, but this bug is not a big deal if you are just testing. I’m sure a 0.3.1 will come out by next week.
https://plugins.trac.wordpress.org/export/207969/buddypress-links/trunk/bp-links-classes.php
February 19, 2010 at 1:09 pm #64133In reply to: oEmbed for BuddyPress plugin – out now!
andhix
Participantis it true, i place the directory no files in wordpress plugin?
and results it’s not working…
February 19, 2010 at 12:33 pm #64120In reply to: BuddyPress-Links 0.3 FINAL is here at last
Windhamdavid
Participant[19-Feb-2010 07:15:53] WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ’12:15:53 – date_created ) / 60 ) / vote_total ) WHERE popularity <= 16777214 AND’ at line 1 for query UPDATE wp_bp_links SET popularity = FLOOR( FLOOR( ( 2010-02-19 12:15:53 – date_created ) / 60 ) / vote_total ) WHERE popularity <= 16777214 AND vote_total >= 1 made by do_action_ref_array, call_user_func_array, bp_links_recalculate_popularity_for_all, BP_Links_Link->popularity_recalculate_all
February 19, 2010 at 11:24 am #64112In reply to: Missing Content Within Website
Andy Peatling
KeymasterInstall the backwards compatibility plugin, also, read the upgrade instructions.
https://wordpress.org/extend/plugins/buddypress-backwards-compatibility/
https://codex.buddypress.org/getting-started/upgrading-from-10x/
February 19, 2010 at 8:40 am #64088In reply to: Convert a WordPress Theme to a BuddyPress Theme
armandmorin
ParticipantQuestion… I’ve got my theme working that did it. Thanks.
My theme DOES NOT show the nav bar like in the default BuddyPress theme. I tried copying the code from the header section of the BuddyPress theme, but I got a function error after.
Any ideas of how to add the BuddyPress Nav to the theme?
February 19, 2010 at 7:15 am #64083In reply to: How to return to BuddyPress 1.1.3
Paul Wong-Gibbs
KeymasterThis is gonna be really tricky especially if you didn’t backup your DB. Have you tried running 1.2 with the Backwards Compatibility Plugin?
February 19, 2010 at 1:51 am #64066In reply to: Group Blog
peterverkooijen
ParticipantThere may be some clues here how to make P2 work outside the regular blog index.php.
February 18, 2010 at 10:07 pm #64043In reply to: Welcome Pack enabled but doesn't seem to work
Paul Wong-Gibbs
KeymasterArthur Freitas had said he had made a GlotPress project for this, but I’m not sure of the URL (and it seems a lot of wordpress.com websites are down at the time of writing).
February 18, 2010 at 9:01 pm #64031In reply to: buddypress + p2 theme
peterverkooijen
ParticipantNow trying Posthaste again. Removing that line removed the post form from all the loops, but putting this line in the template files does nothing:
<?php if(function_exists(posthasteForm)) { posthasteForm(); } ?>I tried in several files, including regular blog index.php files. Also tried this:
<? posthasteForm(); ?>Still nothing… And if I leave the add_action(‘loop_start’… and just use the form, nothing gets posted, not even on the main/default blog.
I think I’m closer to a solution with P2, if somebody can help me figure out how to use the P2 post-form from a page that is not the regular index.php of the blog.
Is there an example of that in Buddypress version 1.2?
February 18, 2010 at 6:48 pm #64015In reply to: Use Forums without Groups?
Ashish Kumar (Ashfame)
ParticipantFebruary 18, 2010 at 6:38 pm #64010D Cartwright
ParticipantHi Paul,
The full code is in this (small) plugin here:
https://wordpress.org/extend/plugins/buddypress-group-activity-stream-subscription/
The url is created with the following code:
class Group_Activity_Subscription extends BP_Group_Extension {
function group_activity_subscription() {
global $bp;
$this->name = 'Notifications';
$this->slug = 'notifications';
// Only enable the notifications nav item if the user is a member of the group
if ( groups_is_user_member( $bp->loggedin_user->id , $bp->groups->current_group->id ) ) {
$this->enable_nav_item = true;
} else {
$this->enable_nav_item = false;
}
$this->nav_item_position = 91;
$this->enable_create_step = false;
$this->enable_edit_item = false;
add_action ( 'wp_print_styles' , array( &$this , 'add_settings_stylesheet' ) );
}February 18, 2010 at 4:14 pm #63976In reply to: buddypress + p2 theme
Scotm
ParticipantAndy’s post on t how to make your WordPress theme work with BuddyPress can be found under Developers > Docs > How-to Guides. The extension pack can be downloaded from there. Follow the directions and you will have P2 working, but you’ll likely need to make some style adjustments in bp/bp.css for example as a minimum.
I think you need to upgrade to BP 1.2 before you do anything. There is an element of P2 features in the new BuddyPress (post-form) and the Default theme but P2 is in no way integrated with BP 1.2.
Thx
February 18, 2010 at 2:43 pm #63958In reply to: Use Forums without Groups?
Tobias Bäthge
ParticipantHi,
thanks for the answers so far!
Setting up a separate bbBress is not really what I want, because it somehow would be overhead and a lot of additional for maintaining and everything.
Restricting Group creation sounds good. However this would require that all users are automatically created as members for the default group which will be used for getting the Forums. Additionally that would require some work on the theme, so that the users don’t get to see any Group related stuff.
I guess all this would be possible and I’ll look into it, but it’s not really what I had hoped…
Just because I don’t want to use Groups, BuddyPress is still well suited for my project. I currently have most of the other components disabled as well (like Blogs, Friends, Activity Stream), but nevertheless there are enough features that I can use for a private community. I especially like the easy administration (from within the WordPress Frontend basically), because I don’t want the users to be in the WordPress admin area.
All of this is superior to a plain bbPress installation, because I get all the WordPress features with it “for free”. So basically this enables me to keep the current website for the project but add some community features to it.
Regards,
Tobias
February 18, 2010 at 1:27 pm #63940In reply to: Use Forums without Groups?
Cyndy Otty
ParticipantDiscussed in this thread. You’ll have to install bbPress separately and integrate it with WordPress.
February 18, 2010 at 1:57 am #63873In reply to: Can't upload image to change the group avatar
geoffm33
Participant@bpinspire I had this issue on my WP 2.9 setup and I fixed it like so:
- Go to Settings > Miscellaneous
- Blank out: “Store uploads in this folder”
- Fill out: “Full URL path to files”
Not sure why the default wp-content/uploads doesn’t work, never took the time to report it as a bug to see if it was my server or WordPress or BuddyPress at fault.
February 18, 2010 at 1:15 am #63869In reply to: Buddymatic Theme and BuddyPress
r-a-y
KeymasterThe old theme (BP Classic) is available in the BP Backwards Compatibility plugin:
https://wordpress.org/extend/plugins/buddypress-backwards-compatibility/
The new theme is built with child themes in mind! So yes, you can use a custom child theme on top of bp-default!
More info here:
https://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/
February 17, 2010 at 11:15 pm #63852In reply to: Lots of new features (Direction / Guidance)
February 17, 2010 at 10:39 pm #63840In reply to: Buddymatic Theme and BuddyPress
Avi M
Participantnot according to this – Version: 0.9.6.4
# Last Updated: 2010-02-15
February 17, 2010 at 10:34 pm #63838In reply to: Welcome Pack enabled but doesn't seem to work
Paul Wong-Gibbs
KeymasterI’ve just uploaded 1.61 to the WordPress repository. It fixes the uninstallation error on WordPress (not MU) and now lists up to 1000 users/groups in those selection boxes (once BP fixes a bug, I’ll update to list all user/groups for mega-huge sites).
Any other issues in this thread I’ll fix tomorrow after sleep *snore*
February 17, 2010 at 10:14 pm #63832In reply to: Widgets unmovable
edelwater
ParticipantIm still in the dark i found some other leads here: https://mu.wordpress.org/forums/topic/15282?replies=7
February 17, 2010 at 10:05 pm #63828In reply to: Lots of new features (Direction / Guidance)
Ashish Kumar (Ashfame)
ParticipantShit I wrote a long reply and lost it because I copied something over it in the clipboardAnyways I will get my hands in BuddyPress soon. I do have the knowledge of the basics of the WordPress APIs (bbPress too) but this is my first day with BuddyPress.
1) I will keep the Moderation suite to the last position in job queue.
4) For main menu, I will have to edit the core file. Right?
5) Didn’t realize. Silly me
6) Just wanted to reserve multiple for myself like “Ashfame” other than the default “admin”
7) I am on WPMU. How can I blacklist certain usernames?
Thanks for the help so far!
February 17, 2010 at 9:49 pm #63826In reply to: Group Blog
peterverkooijen
ParticipantIs it possible to put a link in the blog back to the associated group?
To use the group blog as a more Twitter-like microblogging tool, I’m going to try to integrate the P2 theme in the group blog theme.
February 17, 2010 at 6:18 pm #63775In reply to: White Screen! Ugh…
Paul Wong-Gibbs
Keymasterwp_ tables are WordPress/MU’s, and wp_bp_ are BuddyPress’.
February 17, 2010 at 4:45 pm #63762In reply to: moderate avatars
Griffin Boyce
ParticipantI’m looking to do the same things, so maybe I can be some help.
For now, I may be putting the avatar moderation on back-burner and focusing instead on removing gravatar support. The low-tech solution is to delete the user’s avatar from the server.Gravatars don’t make a lot of sense on BuddyPress, since they are stretched and look blurry on the member pages. There’s a plugin that disables the gravatar for WPMU & BP: https://wordpress.org/extend/plugins/disable-user-gravatar/ Haven’t tried it with BP 1.2 yet.
February 17, 2010 at 4:32 pm #63759In reply to: Warning Error Message
David Carson
ParticipantDid you test BuddyPress before with just the default theme and no plugins? Did you have it working with the default (bp-default) theme before you switched to your theme?
Either way, the first thing I would do now is disable all plugins except BuddyPress.
Next, I would switch the theme to back to the default (bp-default) within Appearance > Themes in your dashboard.
Once you disable all plugins (except BuddyPress) and switch to the bp-default theme, you should confirm that the theme is working similarly to testbp.org.
Assuming that everything is working and you are not seeing any error messages, switch the theme back to your custom theme before you re-activate any of the other plugins. Check to see if you are still seeing an error message.
If you are, double-check steps 1,2,3 at https://codex.buddypress.org/how-to-guides/wordpress-to-buddypress-theme/. (1) Make sure you’ve put the theme extension pack in your custom theme. (2) Make sure you’ve added the following line to the top of the functions.php file for your custom theme:
include( TEMPLATEPATH . '/bp/bp-functions.php' );(3) And make sure you’ve added the “Tags” line to your custom theme’s CSS header.
Do you still see the error message? If so, try replacing the code you added to the top of your theme’s functions.php with the code as Andy suggested:
include( STYLESHEETPATH . '/bp/bp-functions.php' );Check for the error message again.
Once you have BuddyPress functioning using your custom theme without any error messages, then you can try activating plugins one-by-one to ensure you can identify any conflicts.
P.S. You mentioned in #10 above that you had modified the core files by adding the functions line of code to the functions.php file. Just to make sure, the core files are in wp-content/plugins/buddypress/. You should not be modifying any files or folders within the core files. All of the customizations you need to make to adapt your custom theme should be within /wp-content/themes/your-theme/ which I believe for you is /wp-content/themes/wp-clear-basic/. So you are adding the theme extension pack within your theme’s folder at /wp-content/themes/wp-clear-basic/. And you are modifying functions.php and style.css within your custom theme’s folder only.
-
AuthorSearch Results