-
Henry replied to the topic Buddypress Integration with Magazon Theme in the forum Installing BuddyPress 11 years ago
Have you tried contacting the theme author?
-
Henry replied to the topic Passing user role to custom xprofile field in the forum Creating & Extending 11 years ago
Are you trying to limit member search results to members of a specific role? e.g. include ‘subscriber’ but exclude ‘author’, ‘editor’ and so on?
-
Henry replied to the topic [Resolved]The redirect which takes logged in users away from site root page in the forum How-to & Troubleshooting 11 years ago
@mercime I should have added more info
It is default behaviour when the WP static front page is set to “Register”. I actually came up with a way of doing what I needed with the help from folks over at Stack Overflow:
http://stackoverflow.com/questions/20039607/different-wordpress-front-page-for-logged-out-and-logged-in-usersMy final code after…[Read more]
-
Henry commented on the post, BuddyPress Theme Development by Tammie Lister, on the site BuddyPress.org 11 years ago
Congratulations, will look out for it in my local Waterstones!
-
Henry replied to the topic [Resolved] no support on wordpress latest version in the forum How-to & Troubleshooting 11 years ago
@mayur-hotkar what doesn’t work with WP 3.7.1?
-
Henry replied to the topic 1 folder avatar per 1 user, it not good. How to fix it? in the forum How-to & Troubleshooting 11 years ago
@beenyoung you can submit a BuddyPress Trac ticket at:
https://buddypress.trac.wordpress.org/
Trac is where the core developers hang out so if you think there is a bug in the way the BP core works then that is the best place to raise the issue.
-
Henry started the topic [Resolved]The redirect which takes logged in users away from site root page in the forum How-to & Troubleshooting 11 years ago
I’m thinking of having a page of blog posts on the root page of my site for logged in members
example.com
The thing is, there is a redirect in place which takes members away from
example.com
when they are logged in.Would it cause any problems if I disabled this redirect?
-
Henry replied to the topic Buddypress Custom Members Page Item Alignment in the forum How-to & Troubleshooting 11 years ago
As an example, if you wanted to align-right the “active time ago” text you could put this in your theme’s style.css
.item-meta .activity {
float: right;
}As I said though, there are many ways to do it depending on your exact needs.
text-align: right
is an example. Make the parent elementposition: relative;
and then useposition: absolute;…
[Read more] -
Henry replied to the topic Buddypress Custom Members Page Item Alignment in the forum How-to & Troubleshooting 11 years ago
You can align the page elements with CSS. Try taking a look at: http://w3schools.com/css/
To position stuff, there are various approaches you can use. Look specifically at how floats work. Reading about positioning and aligning will be useful too.
-
Henry replied to the topic All members are shown as last active now in the forum How-to & Troubleshooting 11 years ago
Have you tried reverting to the default theme to see if the problem still happens? If the problem goes away then it is likely to be an issue with your custom theme.
-
Henry replied to the topic Validating xProfile fields – limit length in the forum How-to & Troubleshooting 11 years ago
After taking a look at how BP does it my questions 1 and 2 have been answered. Now facing a new but related problem:
When I redirect the user back to the edit profile page to display the “Too many characaters have been entered” message – any new text the user may have entered into the input fields is lost.
For example – the max characater limit…[Read more]
-
Henry replied to the topic Notification to user after saving profile changes in the forum How-to & Troubleshooting 11 years ago
<?php do_action( 'template_notices' ); ?>
could be in a template file upstream such as home.php or member-header.php? It depends on your theme. As to why it isn’t working after profile edit – this could be down to your theme. Have you made any theme customisations? Do you get a confirmation message when using the default theme? -
Henry replied to the topic Validating xProfile fields – limit length in the forum How-to & Troubleshooting 11 years ago
Hi @danbp, thanks for the link. That isn’t quite what I’m after. It is more to do with limiting the length of what is echo’d to screen where as I’m trying to validate and error handle the data which is captured.
-
Henry started the topic Validating xProfile fields – limit length in the forum How-to & Troubleshooting 11 years ago
I am trying to limit the length of 2 xProfile fields (location {field id 2) and about {field id 3})
This is what I have come up with so far for location.
function custom_validate_xprofile_location( $data ) {
[Read more]
global $bp;
$max_location_length = 56;
if ( 2 == $data->field_id ) {
if ( strlen( $data->value ) > $max_location_length… -
Henry started the topic Avatar uploads – Displaying percentage completed so far in the forum How-to & Troubleshooting 11 years ago
I am thinking of adding a percentage completed so far message to avatar uploads. Can anyone recommend a good approach?
-
Henry replied to the topic Share Users in the forum How-to & Troubleshooting 11 years ago
And, if possible, not messing with multisite as I think it is overkill for the purpose
To me, multisite sounds like it is exactly what you’re looking for but I could be wrong without seeing your exact requirements. Have a read of this article written by one of the moderators on wordpress.org – it should give you a good idea if…[Read more]
-
Henry replied to the topic Notification to user after saving profile changes in the forum How-to & Troubleshooting 11 years ago
Right at the very top would be a good spot. It doesn’t really matter though as it will just determine where on the page the template notice text is displayed.
-
Henry replied to the topic Follow in the forum Installing BuddyPress 11 years ago
You can use them both at the same time. I’m 99.82% sure there won’t be any conflicts.
-
Henry replied to the topic Notification to user after saving profile changes in the forum How-to & Troubleshooting 11 years ago
Make sure you have
<?php do_action( 'template_notices' ); ?>
in the edit.php template. The template notices hook on to this action. -
Henry replied to the topic Follow in the forum Installing BuddyPress 11 years ago
Yes, it’s possible and very easily done using:
https://wordpress.org/plugins/buddypress-followers/ - Load More
@henrywright-1
Active 9 years, 10 months ago