Search Results for 'wordpress'
-
AuthorSearch Results
-
August 18, 2012 at 5:59 pm #139729
In reply to: How can i change menu “Home” text to image icon.
Roger Coathup
ParticipantIf you don’t understand how wp_nav_menu() works, you can read up about it here: https://codex.wordpress.org/Function_Reference/wp_nav_menu
August 18, 2012 at 11:51 am #139709In reply to: How to add BBcode to Group Forum?
edinchez
ParticipantTry working something around these two:
https://wordpress.org/extend/plugins/bbpress2-shortcode-whitelist/
https://wordpress.org/extend/plugins/bbpress-bbcode/August 18, 2012 at 4:31 am #139696In reply to: Add a Gallery to Profiles
August 17, 2012 at 3:32 pm #139672gamelord
Memberyes, it is. however, i was expecting pages to be created for things instead of having to invent them myself. the current message i’m getting is:
The following active BuddyPress Components do not have associated WordPress Pages: Members, Activate, Register.
All that the Settings | BuddyPress gives me is the ability to create new blank pages for each… but I have no idea what content should be going in them if I do create them.
August 17, 2012 at 2:06 pm #139662In reply to: How to Optimize and Maximize BuddyPress Performance
Paul Wong-Gibbs
KeymasterFrank, if you don’t know if you’re using an object cache, then you’re probably not
You should see decent performance improvements from adding one, assuming your server has sufficient spare RAM, etc. There are lots of articles in Google about different ways of enabling object caches in WordPress, so take a look.The simplest approach is to use https://wordpress.org/extend/plugins/apc/ or W3 Total Cache https://wordpress.org/extend/plugins/w3-total-cache/
August 17, 2012 at 1:56 pm #139661In reply to: How to Optimize and Maximize BuddyPress Performance
meg@info
ParticipantHi, in my site i have more than 11000 members
i use zlib compression extension (it must be enabled in your php server config) in header.php
ini_set(‘zlib.output_compression’, ‘On’);
ini_set(‘zlib.output_compression_level’, ‘1’);try it and see the difference.
else try this ways :
http://wpmu.org/11-ways-to-make-your-wordpress-site-faster-and-leaner/August 17, 2012 at 9:19 am #139654marc birkett
MemberSolved. Just for completeness I found the solution to my problem here:
https://wordpress.org/support/topic/comments-on-inner-multisite-not-working-404-error-on-post-url
and added a new rule to my web.config to forward to the appropriate page:
August 17, 2012 at 7:01 am #139647In reply to: Hook to Add New Field Group
Paul Wong-Gibbs
KeymasterIf you think a parameter isn’t working as it should, please report a bug to BuddyPress.trac.WordPress.org.
August 16, 2012 at 8:53 pm #139635In reply to: Link header to homepage
Jackie Chan
ParticipantAlso so your aware, I’m running the latest wordpress & buddypress and use the default Buddypress theme
August 16, 2012 at 1:15 pm #139606In reply to: [resolved] Mobile Phone Opt Out? Button somewhere?
modemlooper
ModeratorInstall this plugin https://wordpress.org/extend/plugins/buddypress-extended-settings
Has option to turn off setting.
@mercime just putting remove_theme_support doesn’t work. You have to add it to a certain action.
August 16, 2012 at 7:54 am #139586marc birkett
MemberHi!
Thanks for the reply – this wasn’t in the theme so I have enqueue’d it in functions.php but no change. I then installed the default wordpress theme and no change there either….
Any other suggestions?
Thanks
Marc
August 16, 2012 at 4:41 am #139577In reply to: Hide menu using css HELP!
mrjarbenne
ParticipantHave you every used Firebug before (it’s a Firefox addon). Install it and then you can inspect which class you are trying to hide.
That code looks to be for a widget, not a menu.
Once you figure out what you are trying to hide, download something like this so you don’t have to keep making the change everytime your theme updates https://wordpress.org/extend/plugins/safecss/
Then put
whateveryouarehiding {display: none;}
to hide the menu.
August 16, 2012 at 4:07 am #139575In reply to: Letting People choose a group on sign up
mrjarbenne
ParticipantYou might want to look at something like this: https://wordpress.org/extend/plugins/buddypress-groupomatic/
August 16, 2012 at 3:17 am #139572In reply to: Installed BuddyPress but no work?
@mercime
Participant== I have to do more investigation as to whether I can use this plugin with my theme, or how to install it so it is compatible. ==
@nwweavers we have “template-packed” a number of WP themes for BP compatibility https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/#template-packed-wordpress-themes
August 16, 2012 at 2:02 am #139568kristarella
ParticipantI’m having this same problem; I don’t know how it started, but threads are getting assigned IDs for deleted threads where the recipients are still in the database (same problem that was found in this trac entry https://buddypress.trac.wordpress.org/ticket/3971)
I don’t really want to hack the core to fix it, I’d rather just do a SQL query to delete any recipients for threads that don’t exist. Are there any caveats in doing this?
Ooh, I just discovered that all the old messages don’t have a thread assigned, but they should! This happened during an upgrade from a much older version… I wasn’t involved in that process, so I don’t know quite what happened. I think I can reassign the messages their thread number by looping through the thread message_ids… Is it possible to do that with a SQL query or do I have to use PHP to get the IDs out of the array?
This must be why the new messages started assigning low value thread numbers. Does the new thread take it’s ID from the thread table or the messages table?
August 15, 2012 at 9:03 pm #139551frank tredici
MemberOk, I got to the bottom of this (sort of).
My need and request ends up being a duplicated need requested 3 years ago (see https://buddypress.trac.wordpress.org/ticket/501)
So it looks like we have to live with the static Mystery Man graphic hard coded into BP.
The work around is to overwrite the BP Mystery Man graphic each and every time you upgrade your BP.
August 15, 2012 at 8:44 pm #139545@mercime
ParticipantAugust 15, 2012 at 6:49 pm #139537In reply to: How do I delete item in Account Menu?
David Cavins
KeymasterI made changes to the WP Admin Bar by adding this snippet to my theme’s
functions.phpfile:// Customize WP Toolbar function change_toolbar($wp_toolbar) { $wp_toolbar->remove_node('my-account-forums'); } add_action('admin_bar_menu', 'change_toolbar', 999);You can remove any individual li by getting the id of it (in your case the li has the id
wp-admin-bar-my-account-forums) and dropping the prefixwp-admin-bar-. The part where you remove the prefix is odd and makes it kind of a secret, but it works. I got the original idea here: http://www.sitepoint.com/change-wordpress-33-toolbar/August 15, 2012 at 6:02 pm #139535adminRimma
ParticipantI have the same problem! Installed BP 1.6.1 within WordPress 3.4.1 Multisite, subdomain setup; activated on network first, ran setup wizard…then deactived on network and activated on root blog id=3 (subdomain i want it on)…went to subdomain and activated it just there….no settings show up in toolbar and uder settings I get “you do not have sufficient permissions to access this page”.
also, during running the setup wizard, i get no buddypress on left menu — so i cannot access components to set up some custom fields…
please help!!!
am dead in the water like shaneholloman…August 15, 2012 at 5:39 pm #139533In reply to: Problems after updating buddypress.1.6.1
Tim Hyde
ParticipantI had similar issues with a plugin I developed – all fixed now. Your best contacting plugin developers as there do seem to be a few significant changes to core in 1.6.
Blank pages are often due to a plugin/theme throwing an error. The plugin maybe using stuff that’s changed (especially if accessing data structures like the $bp object directly) and is simply throwing an error. Use WordPress in debug mode and check the log file.
August 15, 2012 at 2:19 pm #139522In reply to: How to Optimize and Maximize BuddyPress Performance
frank tredici
Member18 Active Plugins Network Wide in WP 3.4.1
`Akismet
Better Delete Revision
BP Group Documents
BP Profile Search
BuddyPress
BuddyPress Docs
BuddyPress Global Unified search
Buddypress Sitewide activity widget
Email Users
[Homegrown] Authenticated Users
[Homegrown] New User Notification
[Homegrown] Remove Menu Items From Groups & Discussions Pages
[Homegrown] Remove Username Character Limit
Quick Page/Post Redirect DEV
Shortcode Exec PHP
TDLC Birthdays
WP DB Optimizer
WP Smush.it`
have 14 In-active Plugins in WordPress8 Active Plugins in BuddyPress 1.5.6
`All-in-One Event Calendar by Timely
bbPress
Breadcrumbs Everywhere
BuddyPress Group Email Subscription
BuddyPress Template Pack
Dynamic Widgets
Hyper Cache
NextGEN Gallery`
have 6 In-active Plugins in BuddyPressAugust 15, 2012 at 2:19 pm #139520In reply to: How to Optimize and Maximize BuddyPress Performance
frank tredici
MemberWe have done the following to help our BuddyPress along:
(1) Added this code to wp-config.php
`/**
* source: http://wpdude.com/wordpress-performance-tuning-tips
*/define(‘ENABLE_CACHE’, true);`
(2) Followed Michael Eisenwasser’s suggestions located at http://www.buddyboss.com/buddypress-speed-and-performance/
(3) installed and run “Optimize Database” plugin
(4) installed and run “Hyper Cache” plugin
(5) installed and run “Better Delete Revision” plugin
August 15, 2012 at 2:18 pm #139519aces
ParticipantYou could create an empty text file called /wp-content/plugins/walled-garden.php, paste the following into it, then activate the plugin:
`
<?php
/*
Plugin Name: Buddypress Walled Garden
Plugin URI: http://www.example.com/
Description: A brief description of the Plugin.
Version: 0.1
Author: http://www.example.com/
Author URI: http://www.example.com/
License: A “Slug” license name e.g. GPL2
*/function sh_walled_garden()
{
global $bp;// if( bp_is_register_page() || bp_is_activation_page() || bp_is_page( BP_FORUMS_SLUG ) || bp_is_page( BP_GROUPS_SLUG ) )
if( bp_is_register_page() || bp_is_activation_page() || bp_is_page( BP_FORUMS_SLUG ) )
return;if( ! bp_is_blog_page() && ! is_user_logged_in() )
bp_core_redirect( bp_get_signup_page() );
}add_action( ‘bp_init’, ‘sh_walled_garden’ );
function bp_remove_feeds() {
remove_action( ‘bp_actions’, ‘bp_activity_action_sitewide_feed’, 3 );
remove_action( ‘bp_actions’, ‘bp_activity_action_personal_feed’, 3 );
remove_action( ‘bp_actions’, ‘bp_activity_action_friends_feed’, 3 );
remove_action( ‘bp_actions’, ‘bp_activity_action_my_groups_feed’, 3 );
remove_action( ‘bp_actions’, ‘bp_activity_action_mentions_feed’, 3 );
remove_action( ‘bp_actions’, ‘bp_activity_action_favorites_feed’, 3 );
remove_action( ‘groups_action_group_feed’, ‘groups_action_group_feed’, 3 );
}
add_action(‘init’, ‘bp_remove_feeds’);?>`
Tested in bp 1.6.1The plugin should not have spaces, blank lines, or anything else before “ and use a simple text editor ( like this ) rather than a wordprocessor….
– – –
To have a different menu for logged in users is slightly more complicated.
You need to find the template bit that shows the menu.
In the current bp-default theme header.php file is the following
`
false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘primary’, ‘fallback_cb’ => ‘bp_dtheme_main_nav’ ) ); ?>
`
which can be replaced by
`
<?php
if ( is_user_logged_in() ) {
wp_nav_menu( array( ‘container’ => false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘primary’, ‘fallback_cb’ => ” ) );
} else {
wp_nav_menu( array( ‘container’ => false, ‘menu_id’ => ‘nav’, ‘theme_location’ => ‘secondary-menu’, ‘fallback_cb’ => ” ) );
}
?>
`
Then create the secondary menu in the wordpress menu admin…..Please backup files and database before trying this out in case there are complications. It would be better to try out on a test/dev site first …..
August 15, 2012 at 10:03 am #139503In reply to: How to put javascript at the bottom
Tammie Lister
ModeratorThe proper way is to use enqueue and you can specify location using that: https://codex.wordpress.org/Function_Reference/wp_enqueue_script
August 15, 2012 at 8:20 am #139500In reply to: [Resolved] Wrapping Secondary avatar with link
Jonathan
MemberThanks Boone, I’ll have a look at your idea.
FYI, I’ve submitted a ticket. https://buddypress.trac.wordpress.org/ticket/4436
-
AuthorSearch Results