Search Results for 'wordpress'
-
AuthorSearch Results
-
August 20, 2012 at 8:15 am #139832
In reply to: Admin Bar Alternative Menu
Tammie Lister
ModeratorYou can use custom menus and widgets like this: https://codex.buddypress.org/extending-buddypress/how-to-set-up-your-main-site-navigation-using-the-built-in-wordpress-menus/
August 20, 2012 at 8:14 am #139831In reply to: How to hide homepage for log-in users?
Tammie Lister
ModeratorYou could use this: https://codex.wordpress.org/Function_Reference/is_user_logged_in
So on the page have this for example:
` <?php
if ( is_user_logged_in() ) {
//show other content or no content
} else {
//show content
}
?>`Also you could just wrap entire page in:
` `
August 19, 2012 at 11:50 pm #139819Xainey
MemberI would love to determine if anything I’m using is causing the problem, but we are using a very large theme framework and child theme that I have been developing for a good 4 months. For now we are just going to keep everything on one tab since we are pressed for time. I will keep this tread bookmarked in case I am able to determine where the problem lies.
August 19, 2012 at 11:17 pm #139814In reply to: BP Core Functions Fatal Error Events Manager
@mercime
ParticipantPost also at https://wordpress.org/extend/plugins/events-manager/ click on Support tab.
August 19, 2012 at 10:18 pm #139804@mercime
Participant@tdano per error, it’s due to the user registration aide plugin. In that plugin’s defense, there’s nothing in the plugin’s docs which state it is compatible with BuddyPress at all. Feel free to contact plugin dev at https://wordpress.org/extend/plugins/user-registration-aide/ Support tab
August 19, 2012 at 10:15 pm #139803@mercime
Participant@sweetmelody not sure. Please also post at https://wordpress.org/support/plugin/jetpack Support
August 19, 2012 at 10:13 pm #139802In reply to: Problems following attempted upgrade.
@mercime
Participant== I attempted to install a BP compatible theme ==
@bruce-hazard I see that you’re using Elbee Elgee theme which needs to be updated fpr BP 1.6 https://wordpress.org/support/topic/problem-after-update-5?replies=18
August 19, 2012 at 9:58 am #139771Paul Wong-Gibbs
KeymasterIf you find you need to modify core, then please report tickets to Trac about what you do, and why. At the least, we can add more actions or filters so you can implement your changes without having to modify the core files, and at best, it could be a change that other people might find beneficial that we could consider adding to core.
I cannot recreate your “display name” problem. Have you checked if it is being caused by any other plugin, or a theme, or any of the changes you’ve made to core?
August 18, 2012 at 10:41 pm #139755Xainey
MemberOn a side note, I don’t mind editing the buddypress core to keep this from happening. We keep notes on core modifications and update them on each new version of buddypress.
It looks like the problem if there is one is in xprofile_screen_edit_profile() function on bp-xprofile-screens.php.
August 18, 2012 at 8:16 pm #139741In reply to: Can we expect BP 1.7 soon ?
Paul Wong-Gibbs
Keymaster1) Yes! Lots of development discussion happening on http://bpdevel.wordpress.com if you want to get involved, or just to read and stay up to date.
2) We only officially started work on 1.7 this last Wednesday (15th). Several months away.
August 18, 2012 at 7:42 pm #139738In reply to: [Resolved] BuddyMobile’s buttons arent working
ossendryver
ParticipantThis is what it says in the dashboard at the top.
You’ll need to activate a BuddyPress-compatible theme to take advantage of all of BuddyPress’s features. We’ve bundled a default theme, but you can always install some other compatible themes or update your existing WordPress theme.
I tried to do what you said but sadly it didn’t work.
August 18, 2012 at 6:48 pm #139734In reply to: Can buddypress mobile coexist with wp touch?
modemlooper
ModeratorThey will not work together. They both override the theme when viewing on mobile. WP Touch does not have the template files for viewing BP content. BP Mobile shows any page you want you just need to add the pages to your mobile menu in the WordPress admin.
August 18, 2012 at 5:59 pm #139729In 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/
-
AuthorSearch Results