-
Henry Wright replied to the topic Theme in Development: Preview & Feedback? in the forum Showcase 9 years, 6 months ago
Mainly the header and footer links/text and the ‘tutorials’ dropdown. The bit where it says “Over a number of videos I will take you through the basics of setting up a solid WordPress theme with…” is big enough I think so perhaps make everything that size.
Screenshot using FireFox:
-
Henry Wright replied to the topic Theme in Development: Preview & Feedback? in the forum Showcase 9 years, 6 months ago
I really like how you’re doing subtle hover effects throughout, it makes for a rich feeling when navigating around. I also like the flat design style you’ve chosen.
One thing I struggled to read certain text because it was a bit small. Perhaps make the smallest text 10% bigger by default?
Overall the theme is very unique…[Read more]
-
Henry Wright replied to the topic When trying to edit my profile (i'm the admin) – i get 404 error in the forum How-to & Troubleshooting 9 years, 6 months ago
That’s supposed to be my profile – /%D9%85%D9%86%D8%AA%D8%AF%D9%89-%D8%A7%D9%84%D9%85%D8%B6%D8%A7%D8%B1%D8%A8%D9%8A%D9%86/KarifAmmarSabbagh/
This link isn’t right. It looks like the URL encoding has gone haywire somewhere along the line.
-
Henry Wright replied to the topic When trying to edit my profile (i'm the admin) – i get 404 error in the forum How-to & Troubleshooting 9 years, 6 months ago
That’s supposed to be my profile – http://www.trademaster.ae/%D9%85%D9%86%D8%AA%D8%AF%D9%89-%D8%A7%D9%84%D9%85%D8%B6%D8%A7%D8%B1%D8%A8%D9%8A%D9%86/KarifAmmarSabbagh/
This link isn’t right. It looks like the URL encoding has gone haywire somewhere along the line.
-
Henry Wright replied to the topic BuddyPress login problem in the forum How-to & Troubleshooting 9 years, 6 months ago
Do you know how to get rid of it?
Try using a different theme.
-
Henry Wright replied to the topic Does BuddyPress works? in the forum Installing BuddyPress 9 years, 6 months ago
Is BuddyPress really works?
It sure does 🙂
-
Henry Wright replied to the topic Minimum password strength in the forum How-to & Troubleshooting 9 years, 6 months ago
Also,
I tried your code and it does not work for password strength, when users try to change their password on the front-end.
That’s because of the hook you’re using. It will work for the sign up step only. For the change password form, you’ll need a different hook. Take a look through the BP code base to find the one you need.
-
Henry Wright replied to the topic Minimum password strength in the forum How-to & Troubleshooting 9 years, 6 months ago
Also,
I tried your code and it does not work for password strength, when users try to change their password on the front-end.
That’s because of the hook you’re using. It will work for the sign up step only. For the chance password form, you’ll need a different hook. Take a look through the BP code base to find the one you need.
-
Henry Wright replied to the topic Retaining xProfile field values on register submit in the forum Creating & Extending 9 years, 6 months ago
Hi @dkjensen
I’m pretty sure the reg form uses the POST method so the submitted values should be available as an associative array. You should be able to access them like this:
$_POST['name']
-
Henry Wright replied to the topic Using BuddyPress without permalink in the forum How-to & Troubleshooting 9 years, 6 months ago
-
Henry Wright replied to the topic Minimum password strength in the forum How-to & Troubleshooting 9 years, 6 months ago
Also, well done for removing
utf8_decode()
. Not sure why that slipped in. I must have been having a bad day 🙁 -
Henry Wright replied to the topic Minimum password strength in the forum How-to & Troubleshooting 9 years, 6 months ago
My apologies, I meant
$_POST['signup_password']
. I copied$_POST['signup_username']
from thebp_core_screen_signup()
function. My intention was to grab$_POST['signup_password']
.Thanks for spotting my mistake. I have edited my code above to use
signup_password
. -
Henry Wright replied to the topic Minimum password strength in the forum How-to & Troubleshooting 9 years, 6 months ago
My apologies, I meant
$_POST['signup_password']
. I copied$_POST['signup_username']
from thebp_core_screen_signup()
function. My intention was to grab$_POST['signup_password']
.Thanks for spotting my mistake.
-
Henry Wright replied to the topic Minimum password strength in the forum How-to & Troubleshooting 9 years, 6 months ago
Isn’t that based on the availability of the user name and not on the password strength.
I’m not sure what you mean by “based on the availability of the user name”. But, in order to test for password strength, you need to ‘validate’ what the user has input. In this case,
$_POST['signup_password']
will hold what the user has input when asked to c…[Read more] -
Henry Wright replied to the topic Minimum password strength in the forum How-to & Troubleshooting 9 years, 6 months ago
Isn’t that based on the availability of the user name and not on the password strength.
I’m not sure what you mean by “based on the availability of the user name”. But, in order to test for password strength, you need to ‘validate’ what the user has input. In this case,
$_POST['signup_username']
will hold what the user has input when asked to c…[Read more] -
Henry Wright replied to the topic Minimum password strength in the forum How-to & Troubleshooting 9 years, 6 months ago
Isn’t that based on the availability of the user name and not on the password strength.
I’m not sure what you mean by “based on the availability of the user name”. But, in order to test for password strength, you need to ‘validate’ what the user has input. In this case,
$_POST['signup_username']
will hold what the user has input when asked to c…[Read more] -
Henry Wright replied to the topic Minimum password strength in the forum How-to & Troubleshooting 9 years, 6 months ago
You’ll need to add some custom validation for this using the
bp_signup_validate
hook.function my_validation() {
// $_POST['signup_password'] is available here to validate
}
add_action( 'bp_signup_validate', 'my_validation' ); -
Henry Wright replied to the topic Minimum password strength in the forum How-to & Troubleshooting 9 years, 6 months ago
You’ll need to add some custom validation for this using the
bp_signup_validate
hook.function my_validation() {
// $_POST['signup_username'] is available here to validate
}
add_action( 'bp_signup_validate', 'my_validation' ); -
Henry Wright replied to the topic Show the Total posts count and forums count for Each User in the forum Showcase 9 years, 6 months ago
-
Henry Wright replied to the topic Hide members from Member Directory in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi @micromart
Check out
bp_parse_args()
. That’ll be the proper way to do it.Ref: https://codex.buddypress.org/developer/using-bp_parse_args-to-filter-buddypress-template-loops/
- Load More
@henrywright
Active 8 months, 2 weeks ago