Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 37,626 through 37,650 (of 69,108 total)
#118125
Sofian J. Anom
Participant

@DJPaul , I’ve make a ticket: https://buddypress.trac.wordpress.org/ticket/3467.
You’re welcome.

#118124
Paul Wong-Gibbs
Keymaster

That 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)

#118123

I have to go now, but I will post later on when I get back to this. Thanks for your help so far :) really appreciated!

#118122
@mercime
Participant

Go to pastebin.com and paste the code there. Click submit and post the generated URL here. Cheers.

#118121
modemlooper
Moderator

No plugin for BuddyPress that has this function and I doubt anyone ever will create it. Very specific need.

#118120

Some of code in the post got erased sorry!

#118119

Thanks 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 );

?>

#118118
Paul Wong-Gibbs
Keymaster

If 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

#118116
@mercime
Participant

delete 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

#118111

In reply to: Profile rating system

@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_LEVEL

ul.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.

#118108
Stigmartyr
Member

Same here – editing the admin bar is an important option in customizing buddypress for it’s audience.

#118107

Im 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

#118106
@mercime
Participant

@karmatosed adding my thanks for getting this going :-) Hopefully, we’ll be adding more child themes in repo.

#118105
@mercime
Participant

I 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/

#118104
@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?

#118103
@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

#118102
eliZZZa
Member

Still 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
/bbpress

b) 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…

#118097
esploded
Member

I’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?

#118092
drhoussem
Member

@djpaul Thank you very much I’ve fixed the problem :D
I take the occasion of your presence here to ask you how to set mention notification in admin bar and if it is fixed in bp 1.5 give me the code because I wouldn’t update my website so far..

Viewing 25 results - 37,626 through 37,650 (of 69,108 total)
Skip to toolbar