Search Results for 'buddypress'
-
AuthorSearch Results
-
August 10, 2011 at 6:05 pm #118149
@mercime
Participant== Then what is the problem with BuddyPress Enabled site? ==
Nothing. “Site Creation Wizard” plugin hasn’t been updated since WP 3.0.4 and while it may work for you in current WP version, the BP version then was 1.2.6/1.2.7 and a lot has been changed since those versions to current BP 1.2.9.
Have you posted this in WP.org forums or contacted plugin author?
August 10, 2011 at 5:38 pm #118148In reply to: Login Issues Redirect and Homepage
Caderial
ParticipantI don’t have any Caching plugins installed if that’s what you mean, otherwise i haven’t made any changes to anything on the default wordpress or Buddypress install. Should i be using some sort of Cacheing? Might this resolve my issue?
August 10, 2011 at 4:55 pm #118144In reply to: BuddyPress 1.5 user fullname save/show errors
juanmaguerrero
ParticipantI found what’s triggering the Issue. I had changed the names of the profile fields from the admin menu (which should not break this anyway
). Changed the Profile Field Group “Base” and the default input “Name” for “Info” and “Full Name” respectively. That broke the saving data system.Hope the core developers cant fix this, thanks!
August 10, 2011 at 4:35 pm #118143In reply to: How to add more tabs to the navigation bar
@mercime
ParticipantCreate a BP child theme https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/
Copy over header.php from bp-default theme to your new child theme folder
Open up header.php and make changes there, save and upload child theme folder to server and activate.
August 10, 2011 at 4:26 pm #118141In reply to: How to add more tabs to the navigation bar
Chido
MemberI’m using BuddyPress default.
August 10, 2011 at 1:26 pm #118133In reply to: Change single tab colour
Prince Abiola Ogundipe
Participantthank @mercime just done this by adding class and ref it in css
August 10, 2011 at 9:59 am #118125Sofian J. Anom
Participant@DJPaul , I’ve make a ticket: https://buddypress.trac.wordpress.org/ticket/3467.
You’re welcome.August 10, 2011 at 8:09 am #118124Paul Wong-Gibbs
KeymasterThat does exist in BP 1.5.
Did you somehow switch the theme to BP-Default *before* activating the plugin? Or, after activating the plugin, did you complete the BuddyPress set up wizard? (it should have displayed a note at the top of the screen after activating the plugin, with a link)
August 10, 2011 at 7:54 am #118123In reply to: how to remove a page from buddypress nav menu
porkchops1987
MemberI have to go now, but I will post later on when I get back to this. Thanks for your help so far
really appreciated!August 10, 2011 at 7:31 am #118122In reply to: how to remove a page from buddypress nav menu
@mercime
ParticipantGo to pastebin.com and paste the code there. Click submit and post the generated URL here. Cheers.
August 10, 2011 at 7:29 am #118121In reply to: Is there a plugin that…
modemlooper
ModeratorNo plugin for BuddyPress that has this function and I doubt anyone ever will create it. Very specific need.
August 10, 2011 at 7:16 am #118120In reply to: how to remove a page from buddypress nav menu
porkchops1987
MemberSome of code in the post got erased sorry!
August 10, 2011 at 7:16 am #118119In reply to: how to remove a page from buddypress nav menu
porkchops1987
MemberThanks for your reply i started with a new theme and was able to just comment them out. I have now coded in one of the pages where i want it (in front of members) and i have used a plugin to remove the WordPress created page (of same name). However now when i select it it does not indicate on the menu as being the currently selected page.
( bp_is_page( BP_PROJECTS_SLUG ) ) : ?> //i think this statement is wrong because —->
THIS DIDNT WORK PROPERLY I HAD TO CODE IN LINK MANUALLY
<li class=”selected”>
<a href="//” title=””>MANUALLY
<li class=”selected”>
<a href="/projects/” title=””>( bp_is_page( ‘projects’ ) ) : ?>
( bp_is_active( ‘projects’ ) ) : ?>
i tried all these conditions but it still doesnt work.
i have also used this code in my functions.php (its from another forum post, maybe i havent used it right?) —->
<?php
/*Define slugs*/
define(‘BP_PROJECTS_SLUG’, ‘projects’); /* this will show up as http://yourdomain.com/projects *//*Add slug as a root component*/
function page_setup_root_component()
{
bp_core_add_root_component( BP_PROJECTS_SLUG );
}
add_action( ‘plugins_loaded’, ‘page_setup_root_component’, 2 );/*Show defined slug*/
function bp_show_page() {
global $bp, $current_blog;if ( $bp->current_component == BP_PROJECTS_SLUG && $bp->current_action == ” ) {
bp_core_load_template( ‘projects’, true ); /*replace example with the name that of the template you upload*/
}
}
add_action( ‘wp’, ‘bp_show_page’, 2 );/*For extra functionality you can add a title for that page*/
function page_titles( $title, $b ) {
global $bp;if ( $bp->current_component == BP_PROJECTS_SLUG && $bp->current_action == ” ) {
$title = __( ‘Projects’, ‘buddypress’ ); /*change Example with what you want the title of your page to be*/
}
return $title;
}
add_filter( ‘bp_page_title’, ‘page_titles’, 10, 2 );?>
August 10, 2011 at 6:54 am #118118Paul Wong-Gibbs
KeymasterIf BuddyPress is activated sitewide, I guess BuddyPress should prevent access to any non-root site’s registration page. If it doesn’t, please would you make a ticket on http://buddypress.trac.wordpress.org so we can get it looked at in a future release. Thanks
August 10, 2011 at 6:35 am #118116In reply to: how to remove a page from buddypress nav menu
@mercime
Participantdelete activity
`
<li class=”selected”>
<a href="//” title=””>`
and groups link
`<li class=”selected”>
<a href="//” title=””>
`Or, you might consider changing main navigation to a custom menu http://justintadlock.com/archives/2010/06/01/goodbye-headaches-hello-menus
August 10, 2011 at 4:34 am #118111In reply to: Profile rating system
embergermedia
Member@christophg Sorry for the delay in getting the registration/profile idea to you. Here is what I do:
I use S2member to keep my customers and brands separate. I then created a new profile group called “Company Profile”. I made this the last profile group. I then added the following code to the file:
members/single/profile/edit.php`
<?php if (S2MEMBER_CURRENT_USER_ACCESS_LEVELul.menu li:last-child{display:none;}
.company-profile{display:none;}`
The above code hides the profile group on the edit menu from users below level 2, my brand level. And it also hides the profile group edit fields from anyone below level two. In case the menu item shows for some reason. And, unfortunately, this will not hide the menu item from users in IE 8 and below. But it WILL hide the profile group from them.
I tried using jquery to affect last-child in IE. Although I can get the jq to work on a test page on IE, it won’t work on the menu item… not sure why.
Next, my brands all belong to a private group, and I use a group conditional script to show the brands profile info front and center on their profile page with custom styling. This allows the brand members only to have a slick looking page that is different from regular consumer pages.
`
`
Let me know if you need anything else. Or if something doesn’t make sense.
August 10, 2011 at 3:37 am #118108In reply to: Moving the Buddy Press Profile Menu
Stigmartyr
MemberSame here – editing the admin bar is an important option in customizing buddypress for it’s audience.
August 10, 2011 at 2:54 am #118107In reply to: how to remove a page from buddypress nav menu
porkchops1987
MemberIm using one called Citizen Kane. It is easy to ass pages to the nav menu because the creator must have made it that they join on the end of the nav items (buddypress) however there is no option to delete buddypress pages etc. I have tried going into the header.php and commenting out the menu items. Im not sure. Going to have another check maybe I did not comment out the – Buddypress header.php part & – the Citizen Kane header.php. Thanks for your prompt reply btw
August 10, 2011 at 2:51 am #118106In reply to: BuddyPress 1.5 updated themes list
@mercime
Participant@karmatosed adding my thanks for getting this going
Hopefully, we’ll be adding more child themes in repo.August 10, 2011 at 2:47 am #118105@mercime
ParticipantI recall seeing that issue in WP.org forums for WP 3.2 and it was fixed for WP 3.2.1 with BP 1.2.9. One of plugins by WP core devs could also help you https://wordpress.org/extend/plugins/hotfix/
August 10, 2011 at 2:45 am #118104In reply to: how to remove a page from buddypress nav menu
@mercime
Participant@porkchops1987 It can be as easy as opening up your theme’s header.php and delete the other links you don’t need. What theme are you using?
August 10, 2011 at 2:42 am #118103In reply to: Change single tab colour
@mercime
Participant@naijaping you’d have to add classes to the links you wanted to highlight to change the link color of each link. Or, you might want to change navigation links to use wp_nav_menu where you could easily target the links to implement your customizations. Here’s an easy tutorial on adding wp_nav_menu to your theme http://justintadlock.com/archives/2010/06/01/goodbye-headaches-hello-menus
August 10, 2011 at 2:31 am #118102In reply to: Activity follow up pages not showing
eliZZZa
MemberStill lots of questions around the combination of WP, BP, BBP plugin after I changed to BuddyPress Widget Theme 1.2.7
I don’t get the interaction between the 3 parts, especially the role of bbpress
a) /wp-content/plugins contains
/bbpress
/buddypress
b) /wp-content/plugins/buddypress/bp-forums contains a complete folder
/bbpressb) Is obviously part of the BuddyPress plugin folder. So is it obsolete to install the BBP plugin?
Ran a bbpress installation through BuddyPress settings in the WP admin panel. Everything referred to as “Forums” shows Group Forums only in the frontend.
Don’t find a way to show a forums directory with the (BBP) forums I setup in WP-Admin.
When previewing forums from admin panel/forums list, I get single forum pages with header but without topics.I am confused >;o// hope, I didn’t confuse YOU too much…
August 10, 2011 at 12:10 am #118097In reply to: Advanced settings for group forums?
esploded
MemberI’m completely new to programming-
Is a poll plugin difficult to create?
And by ‘use buddypress seperately’ does that mean that I should use it as a plugin and link buddypress to it?August 9, 2011 at 11:49 pm #118092In reply to: french date in profile fields
-
AuthorSearch Results
