-
Henry Wright replied to the topic Will buddypress ever support iPhone uploads and mobile app? in the forum Requests & Feedback 12 years, 3 months ago
Is it a CSS fix or did you make changes to jCrop? I’ve been looking through BuddyMobile but can’t find the fix?
-
Henry Wright replied to the topic Will buddypress ever support iPhone uploads and mobile app? in the forum Requests & Feedback 12 years, 3 months ago
@buddyboss any idea how to make the crop preview image fluid?
-
Henry Wright replied to the topic Backend notification when user profile complete in the forum How-to & Troubleshooting 12 years, 3 months ago
xprofile_screen_edit_profileTry hooking to that. It fires every time a user’s profile is updated via the profile edit screen. Your conditional will ensure the user meta is added only when appropriate.
Also, you could also try using
update_user_metainstead ofadd_user_meta -
Henry Wright replied to the topic Google Analytics in the forum How-to & Troubleshooting 12 years, 3 months ago
It’s better to have the Google Analytics code run after all of your page elements have loaded. This way, the page will load faster for your users as it doesn’t have to wait for the analytics code to execute. You’re not talking much – perhaps a fraction of a second. So if you want to put it in your theme’s header.php then go for it.
-
Henry Wright replied to the topic Google Analytics in the forum How-to & Troubleshooting 12 years, 3 months ago
I’d paste it into your theme’s footer.php file immediately before
</body> -
Henry Wright replied to the topic Font colour on Buddypress pages in the forum How-to & Troubleshooting 12 years, 3 months ago
body {
color: #000;
}that last post didn’t accept the code tags very well.
-
Henry Wright replied to the topic Font colour on Buddypress pages in the forum How-to & Troubleshooting 12 years, 3 months ago
a) wp-content/themes/your-theme/style.CSS
b) Try adding thisbody` {
color: #000;
}`That will change all of your site’s text to black.
-
Henry Wright replied to the topic Uners can't logon error 503 Service Temporarily Unavailable in the forum How-to & Troubleshooting 12 years, 3 months ago
This sounds as though it could be a problem with your server. Have you tried contacting your hosting company?
-
Henry Wright replied to the topic Issue with Ajax Loaded Content and jQuery finctions in the forum How-to & Troubleshooting 12 years, 3 months ago
Right! I see exactly what you mean now. You can raise a bug report for issues such as this using the link provided in my last post.
-
Henry Wright replied to the topic Issue with Ajax Loaded Content and jQuery finctions in the forum How-to & Troubleshooting 12 years, 3 months ago
@stoi2m1 I’m not entirely understanding what you mean. Is the issue reported in this Trac ticket similar to your problem?
-
Henry Wright replied to the topic Backend notification when user profile complete in the forum How-to & Troubleshooting 12 years, 3 months ago
Assuming
bppp_get_user_progression_percentreturns the percentage completed then your function looks spot on.The conditional
if ( $percentage == 100 && ! current_user_can( 'edit_posts' ) )will ensure the user’s meta is updated only if:$percentage == 100– all profile fields are completed
! current_user_can( 'edit_posts' )– they’ve not…[Read more] -
Henry Wright replied to the topic Excluding Roles from the Member's Directory. in the forum How-to & Troubleshooting 12 years, 3 months ago
@somethingelse great to see you got it working for you.
our membership changes regularly… i don’t want to have to re-code my members-loop every time a member leaves or joins
Why must the exclude ID list be fixed?
I wouldn’t suggest doing something like
$excluded_users = '1,2,3';Rather, your list of IDs to exclude should be dynamic e.g…[Read more]
-
Henry Wright replied to the topic Pagination Issues with Custom Component in the forum Creating & Extending 12 years, 3 months ago
@stoi2m1 what do you think the Skeleton component could be doing differently to the core component(s)?
-
Henry Wright replied to the topic Lower the Search TextBox in the forum How-to & Troubleshooting 12 years, 3 months ago
Your theme’s style.css will be here: wp-content/themes/your-theme/style.css
-
Henry Wright replied to the topic Change TextBox Size in the forum How-to & Troubleshooting 12 years, 3 months ago
Can you show me where i should add this?
You can’t just add the code ‘as is’. Because you’ll need the ‘mytextbox’ class on your input elements as mentioned here:
Where mytextbox is a class belonging to your text input fields.
You should check out these links:
http://www.w3schools.com/html/
http://www.w3schools.com/css/The tutorials will show…[Read more]
-
Henry Wright replied to the topic Lower the Search TextBox in the forum How-to & Troubleshooting 12 years, 3 months ago
All of your custom CSS goes into you theme’s style.css file.
-
Henry Wright replied to the topic Lower the Search TextBox in the forum How-to & Troubleshooting 12 years, 3 months ago
You could give the form a top margin of say 20px?
e.g
form {
margin-top: 20px;
} -
Henry Wright replied to the topic Change TextBox Size in the forum How-to & Troubleshooting 12 years, 3 months ago
You can use something like:
.mytextbox {
width: 100%;
Where mytextbox is a class belonging to your text input fields.
-
Henry Wright replied to the topic Change BuddyPress Font Color in the forum How-to & Troubleshooting 12 years, 3 months ago
No, avoid modifying any of the plugin’s files. Everything can be done via your theme through overriding the default behaviour.
-
Henry Wright replied to the topic Change BuddyPress Font Color in the forum How-to & Troubleshooting 12 years, 3 months ago
That’ll be your theme’s style.css file. It should override CSS elsewhere.
- Load More
@henrywright
Active 2 years, 1 month ago