Search Results for 'buddypress'
-
AuthorSearch Results
-
September 5, 2012 at 12:32 pm #141035
In reply to: Adding Dynamic Profile Link to Main Menu Item
September 5, 2012 at 12:19 pm #141034In reply to: Adding Dynamic Profile Link to Main Menu Item
kissandim
Member@mercime that is almost what I need, but now it is before the “home” link. i’d like to move it to the second location directly to the right of home. Thank you in advance for your help
September 5, 2012 at 11:54 am #141033In reply to: directory of pros + members + charter (tos)
moque
Participantthank you , i will try buddypress + membership.(free version) …
September 5, 2012 at 11:08 am #141032erikahrend
MemberI see what you mean. But I checked the template pack’s pot. File and tge english phrases causing the issue are not there… Where should I look for them?
Thanks
September 5, 2012 at 10:20 am #141030solid_snake
ParticipantBump!
September 5, 2012 at 10:11 am #141028Tammie Lister
ModeratorHave you translated the theme and your template pack – to me it seems that something would not be being translated so you’re maybe only picking up one of the strings. Maybe the template pack isn’t translating?
September 5, 2012 at 10:10 am #141027In reply to: Post sticky in all group forums with one topic
Tammie Lister
Moderator‘Out of the box’ things are sticky in their own forums. You could start with this discussion though:
I’d recommend you don’t hack core files though and pull it out into a bp-custom.php file.
https://codex.buddypress.org/extending-buddypress/bp-custom-php/
September 5, 2012 at 10:08 am #141026In reply to: directory of pros + members + charter (tos)
Tammie Lister
ModeratorSeems to me like BuddyPress will do most of that but the ‘filtering’ to different types of sign up probably you’d want to look at some form of membership plugin in conjunction.
September 5, 2012 at 10:07 am #141025erikahrend
MemberHi. I am using a custom theme…. I am using a template pack for my (Elegantthemes) WordPress theme.
September 5, 2012 at 10:05 am #141024Tammie Lister
ModeratorHi, Just to check are you using the default BuddyPress theme or are you using a custom theme?
September 5, 2012 at 9:51 am #141020In reply to: How to edit group word from toolbar
danbpfr
Participanthello,
in such situation you have to read the codex:
https://codex.buddypress.org/extending-buddypress/customizing-labels-messages-and-urls/
https://codex.buddypress.org/extending-buddypress/changing-internal-configuration-settings/If you need to locate a word within BP, you can use the search function of Notepad++ or you can opening the bp-languages/buddypress.pot file. There you can see the word and the name of the file(s) containing it, included the line #.
What else ?
September 5, 2012 at 8:19 am #141023@mercime
ParticipantI see. Could you check what you have in your Settings > Readings – Front Page? Is it set to default or something else? Set it to default settings. If that doesn’t work, download a copy of BuddyPress to hard driver, unzip and re-upload via FTP to server wp-content/plugins/
September 5, 2012 at 6:04 am #141017In reply to: bbpress forums
@mercime
Participant@nickyernstsen Pages > Add New, choose the full-width template of your theme, if any, add title of the forum, then post the shortcode `[bbp-forum-index]` in text area or any or a mix of the available shortcodes https://codex.bbpress.org/shortcodes/
September 5, 2012 at 5:57 am #140769tgnwsauctions
Participantplease tell me more @mercime said 1 hour, 31 minutes ago:
Re-run Settings > Permalinks to other than default setting. BuddyPress requires pretty permalinks
September 5, 2012 at 4:21 am #141016@mercime
ParticipantRe-run Settings > Permalinks to other than default setting. BuddyPress requires pretty permalinks.
September 5, 2012 at 4:17 am #141015@mercime
Participant== I had to include index.php in the permalink and it is working now. ==
Yeah. I don’t believe that’s going to work with BuddyPress. See how it was resolved for user with Windows server in this thread without resorting to adding index.php
September 5, 2012 at 4:10 am #141014@mercime
ParticipantYou’re welcome. Marking this as resolved.
September 5, 2012 at 3:25 am #141012In reply to: Adding Dynamic Profile Link to Main Menu Item
@mercime
ParticipantThank you @modemlooper I’m sure many users will be delighted by the addition
September 5, 2012 at 2:50 am #141011donalconlon
ParticipantThanks @mercime. I enabled permalinks and modified the web.config so am past that hurdle.
September 5, 2012 at 2:37 am #141010In reply to: My host keeps shutting down my account
Quint
ParticipantZippykid.com is outstanding. After you vet them, you will probably arrive at the same conclusion. Tell them your situation, your concerns and they’ll give it to you straight up.
September 5, 2012 at 2:19 am #141009In reply to: My host keeps shutting down my account
hkcharlie
ParticipantCan anyone recommend a reasonable minimum VPS setup for Buddypress setup with less than 50 users ?
With no more than 5 logging on at a time.
My spikes of usage come with processes rather than page loads, such as the creation of a group event and the sending out of emails to all the group members.September 5, 2012 at 1:39 am #141007Ben Hansen
Participant@valuser thanks i guess i was being a bit slow and didn’t even notice the zip download
thanks again!@djpaul my slowness again not very good at searching or contributing to those tickets ill try to get better and thanks to you as well!
and @karmatosed yes i believe thats what the old school plugin said. thanks all around!
September 5, 2012 at 1:29 am #141006In reply to: Adding Dynamic Profile Link to Main Menu Item
@mercime
Participant@kissandim didn’t get the notification. Just in case you haven’t found the solution yet, just move $profilelink before the $menu, therefore the last three lines should look like this:
$menu = $profilelink . $menu; return $menu; }@cpinsd if you have more than one custom menu in your theme, find out the ‘theme_location’=>’???’ of that specific wp_nav_menu. For example, the location is mamamia then the code would be
// Filter wp_nav_menu() to add profile link in a specific custom menu e.g. mamamia function mme_nav_menu_profile_link($menu, $args) { if( is_user_logged_in() && $args->theme_location == 'mamamia' ){ $profilelink = '<li><a href="' . bp_loggedin_user_domain( '/' ) . '">' . __('My Profile', 'yourtheme') . '</a></li>'; $menu = $menu . $profilelink; } return $menu; } add_filter( 'wp_nav_menu_items', 'mme_nav_menu_profile_links', 10, 2 );September 4, 2012 at 11:29 pm #141004Keith Kelly
ParticipantI wasn’t able to find any new updates regarding this. I am looking to add the post form to a pop up. Is there any documentation on how to correctly handle this?
September 4, 2012 at 10:31 pm #141003 -
AuthorSearch Results