Save file.
Search Results for 'wordpress'
-
AuthorSearch Results
-
February 8, 2012 at 4:44 pm #129472
In reply to: buddypress searchable?
Chineseand
ParticipantI’m with you mrwolfy, I see the search functionality that comes in the header area with bp-default will work – though I would like to be able to modify it – but if you use the wordpress search widget, or the search box that shows up when something isn’t found, I get pushed back to the activity page (home page for me). The same happens on this site if you use the search box at the top – you’ll get thrown back to the home page.
I found a plugin at http://buddydev.com/plugins/buddypress-sitewide-activity-widget/ but it wouldn’t list posts for me. It seems to list everything but. Any advice anyone?
February 8, 2012 at 2:20 pm #129462In reply to: External authentication vs local database
Paul Wong-Gibbs
KeymasterBuddyPress doesn’t do anything with user authentication. Get it working with WordPress, and it’ll work with BuddyPress. For further advice, it’s probably worth searching the WordPress.org forums as I imagine this sort of topic has come up in the past.
February 8, 2012 at 10:54 am #129453In reply to: Sticky Group?
Paul Wong-Gibbs
KeymasterNot easily* possible without changes to core. We’ve an enhancement ticket for sticky groups: https://buddypress.trac.wordpress.org/ticket/2242
February 8, 2012 at 10:50 am #129451In reply to: How to set an activity type with embed?
Paul Wong-Gibbs
Keymaster@r-a-y said his plugin https://wordpress.org/extend/plugins/oembed-for-buddypress/ would eventually offer this as an option.
February 8, 2012 at 8:13 am #129449In reply to: Alignment Issues Game Speed WordPress Theme
PsionicArchon
MemberThanks for your both late, and speedy reply. I figured I’d check back before I went to sleep, I didn’t think anyone would post so late. I was able to locate the appropriate .css files, for future reference (so no one else is confused), they are located in pluginsbp-template-pack right under my nose. I feel like a bit of an idiot now, however I managed to edit several margins that had been set to negative numbers, such as negative nineteen, which my style does not support it would seem.
As for the Avatar cropping, I have had no luck with this. I scanned the page you linked me, changed my theme, and even disabled it entirely just to rule out that possibility all together to no avail. I did notice however, that this error message is now popping up: There was a problem cropping the avatar, please try uploading it again.
When I attempt to crop any avatar’s for both groups and persons joining, the crop window does not appear over the picture. I can still select crop picture, only nothing happens. It grabs the corner of said image, and chooses that.
February 8, 2012 at 6:30 am #129448In reply to: Alignment Issues Game Speed WordPress Theme
@mercime
ParticipantRe: Cropping Avatars
Change to bp-default theme and check if you can crop there. If you can, well and good. If not, check out some trouble-shooting tips https://codex.buddypress.org/getting-started/before-installing/#wp-configuration
Re: Theme Compatibility
First thing’s first. Before making any WP theme (downloaded outside of WP theme repository) compatible with BuddyPress, make sure that it is secure. Download the Theme Check Plugin and see if there are warnings or required generated when you run the theme check. WP Theme Repo for example only accepts themes which do not contain warnings and required items.
I have just downloaded a copy of gamespeed per your link above and there are obfuscated code within 2 files I checked out so far – at the bottom of the theme’s functions.php file and all of footer.php file. Because of that, I can’t help you since I need all the HTML information in footer.php among other theme files for the BP Compatibility Process.
February 8, 2012 at 2:22 am #129442@mercime
Participant@snowlas You’re welcome and Congratulations. Glad you resolved layout to your satisfaction
February 8, 2012 at 1:17 am #129437In reply to: Cannot Log Out After uploading bp-custom.php
daveC87
MemberThe custom Functions I added area as follows: (When I delete the bp-custom.php everything works fine again)
// Setups up Type=Full avatar pics for BP-post author
function bp_custompost_author_avatar() {
global $post;if ( function_exists(‘bp_core_fetch_avatar’) ) {
echo apply_filters( ‘bp_post_author_avatar’, bp_core_fetch_avatar( array( ‘item_id’ => $post->post_author, ‘type’ => ‘full’, ‘width’ => ’70’, ‘height’ => ’70’ ) ) );
} else if ( function_exists(‘get_avatar’) ) {
get_avatar();
}
}// Changes order for member profile menu items
function bbg_change_profile_tab_order() {
global $bp;$bp->bp_nav = 20;
$bp->bp_nav = 30;
$bp->bp_nav = 40;
$bp->bp_nav = 50;
$bp->bp_nav = 60;
$bp->bp_nav = 70;
$bp->bp_nav = 80;$bp->bp_nav = false;
$bp->bp_nav = false;}
add_action( ‘bp_setup_nav’, ‘bbg_change_profile_tab_order’, 999 );*/// Setup the navigation
// Props to http://wordpress.stackexchange.com/questions/16223/add-buddypress-profile-menu-item for helping me figure this out
// and http://themekraft.com/customize-profile-and-group-menus-in-buddypress/
function my_setup_nav() {
global $bp;bp_core_new_nav_item( array(
‘name’ => __( ‘my adventure list’, ‘buddypress’ ),
‘slug’ => ‘my-adventure-list’,
‘position’ => 10,
‘screen_function’ => ‘my_adventure_list_link’,
‘show_for_displayed_user’ => true,
‘default_subnav_slug’ => ‘my-adventure-list’,
‘item_css_id’ => ‘my-adventure-list’
) );
}add_action( ‘bp_setup_nav’, ‘my_setup_nav’, 1000 );
function my_adventure_list_title() {
echo ‘My Adventure List’;
}function my_adventure_list_content() {
?>
<?php
}function my_adventure_list_link () {
add_action( ‘bp_template_title’, ‘my_adventure_list_title’ );
add_action( ‘bp_template_content’, ‘my_adventure_list_content’ );
bp_core_load_template( apply_filters( ‘bp_core_template_plugin’, ‘members/single/my-adventure-list’ ) );
}?>
February 7, 2012 at 7:39 pm #129431snowlas
ParticipantI figured it all out. I used Firebug to grab the custom background CSS and placed it into my main style sheet.
Then for the getting rid of the side bar, I needed to adapt the code to match what in the full width template file compared to the page file. Then I had to make the same adjustment for the bottom in the sidebar file as well.
Thank you for all the help! I really needed it!
February 7, 2012 at 6:32 pm #129430@mercime
ParticipantThis is not a BuddyPress issue. The Secure Invites plugin as seen at https://wordpress.org/extend/plugins/wordpress-mu-secure-invites/ has not been updated since March 2011.
Either contact the plugin dev if he’s still going to update the plugin or find an alternative. Check out e.g. https://wordpress.org/extend/plugins/invite-anyone/
February 7, 2012 at 6:26 pm #129429In reply to: Problems with page titles
@mercime
ParticipantSomething is wrong. Let’s start with:
– WP/BP versions?
– Single WP or WP Multisite?
– Did you go through the installation wizard after you activated BuddyPress? https://codex.buddypress.org/getting-started/setting-up-a-new-installation/buddypress-1-5-installation-wizard/
– Did you install/activate BP Template Pack plugin and go through Appearance > BP Compatibility process to make your theme compatible with BuddyPress? https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
– URI to the page you were referring to where it just showed list of titles.
February 7, 2012 at 5:30 pm #129423@mercime
Participant@ki450751 I see you’ve installed BP Template Pack and have gone through the BP Compatibility process. Click on the Finish button and let’s proceed to the nitty gritty.
For the WP Creativix theme as seen here https://wordpress.org/extend/themes/wp-creativix
A. Copy the theme’s header.php and save as header-buddypress.php
Open up header-buddypress.php, at the very bottom of the file below other code, add this:
``February 7, 2012 at 2:51 pm #129416In reply to: WordPress 3.0 Menus
@mercime
ParticipantFebruary 7, 2012 at 8:18 am #129406In reply to: CONFLICT – with The Cart Press – Session Error
kailas108
MemberI posted the same issue with TheCartPress and they said the issue has to do with how the plugins initialize. I asked them to connect w/BP developers to look into it. I got the same error again today in my Activity stream when I replied to a post during testing.
Warning: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /home/shreemaa/public_html/httpdocs/wordpress/wp-content/themes/shree-maa/activity/comment.php:15) in /home/shreemaa/public_html/httpdocs/wordpress/wp-content/plugins/thecartpress/TheCartPress.class.php on line 781
February 7, 2012 at 7:08 am #129404In reply to: Error editing profile fields
viktor89
Member– Single wordpress install version 3.3.1
– BuddyPress version 1.5.3.1
– The theme is called Torn 1.7.6 by Louis Zuno
– Of plugins I have:
Akismet, bbpress, Bowe codes, BWP Google XML Sitemaps, Cubepoints, CubePoints Buddypress Integration, GD bbpress attachments, Maintainence Mode, Sociable, Social login, User role editor, wp e-commerce
– I tried deactivating all the plugins and changing to the default buddypress theme, but that had no effectFebruary 7, 2012 at 4:02 am #129401In reply to: [Resolved] Ray of Light WordPress Theme issues
The theme developer has been directed to this post. I thank you for your help and we shall see if this will fix the issues.
February 7, 2012 at 3:54 am #129400In reply to: [Resolved] Ray of Light WordPress Theme issues
@mercime
ParticipantSorry, but that is beyond the scope of the assistance I already provided here. Know that most of us who assist here are volunteers. If you are not able to make the basic template changes, you need to find someone or hire someone to do this for you e.g. at http://jobs.wordpress.net and refer them to this post.
February 7, 2012 at 2:40 am #129398In reply to: [Resolved] Ray of Light WordPress Theme issues
I am sorry, but I am having a hard time with finding the items to replace.
What I am willing to do is give you an admin login for my test site and allow you to edit the template files as you see fit to fix this issue.
So everyone does not get the test sites admin login details please send me a private message with the following desired details:
Username (required)
E-mail (required)
First Name
Last Name
Website
Password (twice, required)February 7, 2012 at 2:16 am #129397In reply to: [Resolved] Ray of Light WordPress Theme issues
@mercime
ParticipantSave files. Upload the 6 BP folders with the revised template files to your server wp-content/themes/ray-of-light/
If there are any issues, point your theme developer to this topic. I’m sure they can identify faster any missing or superfluous divs around in the post.
February 7, 2012 at 2:13 am #129395In reply to: [Resolved] Ray of Light WordPress Theme issues
@mercime
ParticipantAt the bottom of all template files replace:
`
`
with the following for all template files except /registration/register.php:
`
`
with the following for /registration/register.php file:
`
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();
});
});`
February 7, 2012 at 2:05 am #129394In reply to: [Resolved] Ray of Light WordPress Theme issues
@mercime
ParticipantBased on the HTML structure of the Ray of Light theme, you need to change 16 template files within the 6 BP Template folders transferred to your ray of light theme folder when you ran Appearance > BP Compatibility https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/
Download those 6 BP folders to your computer hard drive.
At the top of all the 16 template files per link I gave above, replace:
``with
``February 7, 2012 at 12:51 am #129392In reply to: Page weight for a theme?
Paul Wong-Gibbs
KeymasterThis is more of a general question rather than a BuddyPress or a WordPress question. I would not worry about 200k. Obviously, the quicker the better. Load some of your favourite sites into http://tools.pingdom.com/fpt/ and see what you find
February 6, 2012 at 10:41 pm #129386In reply to: Buddypress roles
jeffsl
MemberI needed to restrict which user could “Create a Group” in my WordPress 3.3.1 and BuddyPress 1.5.3.1 installation. I was able to do this easily by using these 3 plugins:
BuddyPress Restrict Group Creation (https://wordpress.org/extend/plugins/buddypress-restrict-group-creation/)
s2Member (https://wordpress.org/extend/plugins/s2member/)
User Role Editor (http://www.shinephp.com/user-role-editor-wordpress-plugin/)
For example, I wanted to allow only an “s2Member Level 4” member to have the ability to create new Groups. I did the following:
1. Added user capability “publish_posts” as a new rule to the Restrict Group Creation settings.
2. Selected the role “s2Member Level 4” and added the “publish_posts” capability in the User Role Editor settings.Thereafter, the “Create a Group” button only showed up for members who were s2Member Level 4. The button also showed up for Authors, Editors, and Administrators…but that could easily be controlled by changing the rule in Restrict Group Creation.
February 6, 2012 at 10:40 pm #129385In reply to: [Resolved] Ray of Light WordPress Theme issues
Please let me know when you are done. Now to test the code, do I simply just copy your corrections of the code on pastbin to my wordpress theme editor?
February 6, 2012 at 10:37 pm #129384In reply to: [Resolved] Ray of Light WordPress Theme issues
http://pastebin.com/Up0bJXnD – Ray of Light header.php
http://pastebin.com/VQRPPRxS – Ray of Light footer.php
http://pastebin.com/fFjHdU8j – Ray of Light sidebar.php
http://pastebin.com/11HsjUrw – Ray of Light index.php
http://pastebin.com/BPGP9w3u – Ray of Light singlepage.phpIf this does not work, do not worry. I am testing compatibility on a test website with this theme.
-
AuthorSearch Results