-
John Coonen's profile was updated 10 years, 8 months ago
-
Eskymo replied to the topic Change text on Registration page in the forum How-to & Troubleshooting 10 years, 8 months ago
OK, I’ve gone through the buddypress plugin folder and found all instances of the words ‘Create an Account’ and there is only one file in which added edits will appear on the site and it’s this file:
/wp-content/plugins/buddypress/bp-members/bp-members-screens.php
How can I add this file to my buddy child theme so that I can make the text…[Read more]
-
Eskymo started the topic Hiding Admin from Members List in the forum How-to & Troubleshooting 10 years, 8 months ago
I just followed the suggestions in this post to remove Admin from the activity stream and the members list. However it’s not a complete solution.
https://buddypress.org/support/topic/hide-admin-from-members-and-activity/
Admin gets removed from the main page members list and activity stream, but I use a ‘members’ widget in my sidebar and the…[Read more]
-
RMOS Consultancy's profile was updated 10 years, 8 months ago
-
Eskymo started the topic Change text on Registration page in the forum How-to & Troubleshooting 10 years, 8 months ago
I would like to change the text on the Registration page. Namely:
“Create an Account”
and
“Registering for this site is easy. Just fill in the fields below, and we’ll get a new account set up for you in no time.”
I’ve got buddypress installed and I’m running a theme called ‘Buddy’ through a child theme called buddy-child.
I’ve looked through…[Read more]
-
Alfredo Andaluz Prado's profile was updated 10 years, 8 months ago
-
Henry Wright replied to the topic Home URL redirects to Members page in the forum Installing BuddyPress 10 years, 8 months ago
OK, in that case you could try something like this:
function my_redirect() {[Read more]
// Bail if the user is not logged in.
if ( ! is_user_logged_in() ) {
return;
}
// Redirect users away from the homepage
if ( is_front_page() || is_home() ) {
bp_core_redirect( get_option( 'home' ) . '/stream/' );
}
}
add_action(… -
Henry Wright replied to the topic Home URL redirects to Members page in the forum Installing BuddyPress 10 years, 8 months ago
The Theme My Login plugin is useful in handling redirection. Taken from the plugin’s feature list:
Redirect users upon log in and log out based upon their role
I’ve done this myself using the plugin and can confirm it works quite well with BuddyPress installed.
-
Henry Wright replied to the topic help with test and live environments in the forum How-to & Troubleshooting 10 years, 8 months ago
You could set up a local install on your computer to use for testing? You’d need to install a stack such as LAMP (if you’re using Linux) which will give you all of the things you need (Apache, PHP and MySQL).
-
Henry Wright replied to the topic Home URL redirects to Members page in the forum Installing BuddyPress 10 years, 8 months ago
Are you logged in? If you visit /registration/ as a logged-in user, then you will be redirected to /members/. Setting your homepage to your registration page will mean you get redirected to /members/ when you visit your homepage (when logged-in).
-
-
Henry Wright replied to the topic How to enable @mention in bbpress without enabling user activities in the forum How-to & Troubleshooting 10 years, 8 months ago
To the best of my knowledge, @-mentions in BuddyPress require the activity component to be active.
-
Henry Wright replied to the topic Registration and Activation pages in the forum How-to & Troubleshooting 10 years, 8 months ago
Take a look under the Pages section in your admin area. If you don’t have a page for either of them, then you should create them yourself.
-
Henry Wright replied to the topic Why bpthumb == bpfull ? in the forum How-to & Troubleshooting 10 years, 8 months ago
Then I’m out of ideas. It seems you’re doing everything right. There must be something strange going on.
-
Henry Wright replied to the topic Why bpthumb == bpfull ? in the forum How-to & Troubleshooting 10 years, 8 months ago
You seem to be doing everything right so this is quite strange! How about plugins, could you have a rogue plugin installed which might be causing the issue?
-
Henry Wright replied to the topic Why bpthumb == bpfull ? in the forum How-to & Troubleshooting 10 years, 8 months ago
Where in your folder hierarchy do you have your bp-custom.php file?
-
Henry Wright replied to the topic Why bpthumb == bpfull ? in the forum How-to & Troubleshooting 10 years, 8 months ago
Where are you adding your constant definitions?
-
Henry Wright replied to the topic Reduce Large Numbers to Human Readable Formats in the forum How-to & Troubleshooting 10 years, 8 months ago
You will need to use hooks. The basic idea is to attach a custom function to the relevant filter hook then inside your custom function you can use
number_format()to group the thousands. -
Henry Wright replied to the topic Why bpthumb == bpfull ? in the forum How-to & Troubleshooting 10 years, 8 months ago
Are you checking the size of the image when it’s displayed in your theme or are you checking the raw image size? I ask because CSS can resize the image.
-
meyer freddie's profile was updated 10 years, 8 months ago
- Load More