-
Hugo Ashmore replied to the topic BuddyPress ruined my site in the forum Installing BuddyPress 11 years ago
BP doesn’t have forums, forums are integrated into BP only if you install and run the bbPress plugin and then activate it for BP.
Something else is causing your issues, especially if you have deativated BP as it now no longer can direct things anywhere.
I note that your permalinks are set to default, BP requires that anything other than default…[Read more]
-
siebert thaxton's profile was updated 11 years ago
-
SidianMSJones started the topic Buddypress creating duplicate tags taxonomy in the forum How-to & Troubleshooting 11 years ago
I’m using Views by Toolset, which reveals all existing taxonomies in WP. I’ve noticed when BP is active, there is an additional Tags taxonomy.
I’ve tried disabling all plugins and switching to another theme. -
The Dux replied to the topic Hiding members header on certain pages in the forum How-to & Troubleshooting 11 years ago
I just figured that out, and yeah, that fixed it. Must have come from some code I copied. Sorry guys. Update on the members-header will follow!
For anyone wondering I am using a plugin widget I made in the sidebar for all user navigation.
For now I’m using CSS, as bp does it pretty easy for me:
body.my-account #item-header,[Read more]
body.my-account… -
Henry Wright replied to the topic Hiding members header on certain pages in the forum How-to & Troubleshooting 11 years ago
@duxortus in the code you’ve posted, your single quote marks look weird. Not sure if it’ll matter but they should really be like this:
'Not like this:
’ -
The Dux replied to the topic Hiding members header on certain pages in the forum How-to & Troubleshooting 11 years ago
Thanks for replying. I was thinking of removing, later maybe having an alternate version, header for a number of pages. All messages, inbox, outbox etc. Also notifications, friend requests etc. Pages that will be private to you as a user.
I have run into something though, I can’t seem to make a hook work?
function testFunction() {[Read more]
echo "Hello… -
@mercime commented on the post, Boarding the WordCamp Lyon, on the site BuddyPress.org 11 years ago
I enjoyed reading every bit of your post 🙂 Thanks for sharing your experience aboard the floating WordCamp!
-
Hugo Ashmore replied to the topic Hiding members header on certain pages in the forum How-to & Troubleshooting 11 years ago
On any particular condition other than just messages? If you want to simply remove the item-header you have two choices really, query the page for the component and action being viewed and wrap a conditional around the item-header or using the template hierarchy create a index-messages.php file in your theme adding it into file structure as…[Read more]
-
The Dux started the topic Hiding members header on certain pages in the forum How-to & Troubleshooting 11 years ago
Hi.
Sorry if this has been answered, but how would I hide, or rather stop from being generated in the first place, the members header (avatar and all) for pages like my-messages?
I know how to with css, but I feel it would be better to stop it from being generated in the first place if possible. Also I need to learn.
Thanks to whoever takes the time!
-
Hugo Ashmore replied to the topic Beginner's Problem in the forum Installing BuddyPress 11 years ago
And just to add – if it was/is template pack plugin you were/are using could you give us a clue as to how you came to think it was needed i.e what led you to believe that you had to install it so we can see if there’s anything we can do to remove any misleading guides.
-
@mercime replied to the topic Beginner's Problem in the forum Installing BuddyPress 11 years ago
@sebastianpierre BuddyPress is compatible with nearly all WordPress themes out of the box. I am assuming that you’re on the latest WordPress and BuddyPress verions. Change theme to either Twenty Fifteen or Twenty Fourteen, check if all the BP pages are showing up as expected. If it is, then double-check that you have the_title and the_content…[Read more]
-
Henry Wright replied to the topic How to use custom Name fields with xprofile in the forum How-to & Troubleshooting 11 years ago
Thanks for sharing @patrix87!
-
Henry Wright replied to the topic How to access other members messages ? in the forum How-to & Troubleshooting 11 years ago
Hi @stefanbu
It isn’t clear from your post what you are trying to do. You should explain in detail your aim and any problems you’re facing.
-
@mercime replied to the topic After Registertion in the forum Installing BuddyPress 11 years ago
Something may be getting lost in translation, but if you mean you want the user who has just logged in to be redirected to his/her profile, then check out https://wordpress.org/plugins/bp-redirect-to-profile/
-
@mercime replied to the topic BP Pages Have No Content in the forum Installing BuddyPress 11 years ago
@dptashny BuddyPress requires “pretty permalinks” and not those almost pretty permalinks where you add index.php after your domain name — a “quick fix” for sites hosted in Windows servers but will not work for BuddyPress sites. Where are you hosted? If this is a new account, best thing to do is move to Linux hosting ASAP.
Having said that,…[Read more]
-
@mercime replied to the topic unable activity in the forum How-to & Troubleshooting 11 years ago
@kiwonuhm WP/BP versions? Where are you hosted? etc.
https://buddypress.org/support/topic/when-asking-for-support-2/ -
Barbara Brooks's profile was updated 11 years ago
-
Henry Wright replied to the topic Ajax not working in activity in the forum How-to & Troubleshooting 11 years ago
The loop you posted simply iterates over the
$actionsarray (assuming it is an array), adding actions for each array element.Does this help?
-
Henry Wright replied to the topic Enable "Create a Group" button for Admin and Editor role only in the forum How-to & Troubleshooting 11 years ago
It isn’t a copy-and-paste thing. You’d need to place your button inside the condition.
-
Henry Wright replied to the topic Enable "Create a Group" button for Admin and Editor role only in the forum How-to & Troubleshooting 11 years ago
You could use
current_user_can()to check the member’s capabilities. For example:if ( current_user_can( 'edit_pages' ) ) {
// Output button
} - Load More