-
Paul Wong-Gibbs replied to the topic Buddypress doesn't send activation email. in the forum How-to & Troubleshooting 10 years, 2 months ago
I need to install WP-SMTP-Mail on my development environment and investigate the issue there; I can’t guarantee when I’ll get to this. Maybe this next weekend.
-
Paul Wong-Gibbs replied to the topic @mention autosuggest in visual editor in the forum How-to & Troubleshooting 10 years, 2 months ago
Thanks @oakcreative! I’ve created a ticket in https://buddypress.trac.wordpress.org/ticket/6972 and as it’s such a trivial change, I’m pretty certain it’ll get done for the next BuddyPress release (2.6, a few months away).
-
Georgio replied to the topic Login widget customization in the forum How-to & Troubleshooting 10 years, 2 months ago
Thanks! 🙂
-
riseUp replied to the topic How to link the avatar picture to his/her profile page in the forum How-to & Troubleshooting 10 years, 2 months ago
Yes, it is the code above.
I wasn’t sure what you meant when you said “try and replace it with ==. Can you please clarify? Thanks.
-
Georgio replied to the topic Login widget customization in the forum How-to & Troubleshooting 10 years, 2 months ago
I made some small changes with your code (width, height, margin-right)
#bp-login-widget-submit {
width: 80px;
height: auto;
padding: 4px 10px;
margin-right: 10px;
..................and the result is really very nice: My site
Is it OK that I have put the “height” to “auto” ?
Thank you again for your help !
-
riseUp replied to the topic How to link the avatar picture to his/her profile page in the forum How-to & Troubleshooting 10 years, 2 months ago
Hm….when I copied and pasted your suggested code, I get the following message:
Parse error: syntax error, unexpected ‘=’ in /home/content/p3pnexwpnas06_data03/32/3122732/html/wp-content/themes/streamline-pro/functions.php on line 107
What do you think? How do you think I should adjust this code? Thank you!
-
Georgio replied to the topic Login widget customization in the forum How-to & Troubleshooting 10 years, 2 months ago
I used:
#bp-login-widget-submit {
border: 1px solid #78B8CE;
border-radius: 4px;
background: #84D0EF;
color: #fff;
}and here is the result
It is much better than before, but the size of the button is always large. I can make the button smaller, but the link ‘Connexion’ will not be centered any more.
If I don’t have more chance…[Read more] -
elawantalamela's profile was updated 10 years, 2 months ago
-
Georgio started the topic Login widget customization in the forum How-to & Troubleshooting 10 years, 2 months ago
Hi
I would like to make a more beautiful login widget on my site’s sidebar.If I put the buddypress widget, the button ‘Login’ (Connexion in french) is large and black.
ScreenshotIf I put the bbpress widget, the button is nice, but I cannot remove the widget title (I created a thread in their forums).
Since I am on the buddypress forums now,…[Read more]
-
Paul Wong-Gibbs replied to the topic Attempting to register in the forum How-to & Troubleshooting 10 years, 2 months ago
This is fixed and will be distributed in version 2.5.2 of BuddyPress.
If you are reading this and you ARE affected, however, I’d recommend you update your WordPress version, too.
-
Bowe replied to the topic Is it possible to use Peepso with Buddypress? in the forum How-to & Troubleshooting 10 years, 2 months ago
@rosyteddy I’d recommended giving RtMedia another try. I would not say it’s dated and I’m very impressed with their feature set and the development of the plugin over the last year or so 🙂
-
Henry Wright replied to the topic Is it possible to use Peepso with Buddypress? in the forum How-to & Troubleshooting 10 years, 2 months ago
I see! In that case, try asking over at Peepso too, perhaps one of their users has used BP at some point. I guess that’s the problem with paid products, there’s no way to test against your own set-up before purchase. I’d imagine if you contacted Peepso direct they _may_ be able to think of something to help.
-
NolanlNance replied to the topic Fatal error BP Emails in the forum How-to & Troubleshooting 10 years, 2 months ago
I have faced an issue, whenever I press “edit my profile” it shows I don’t have permission to do so.
-
NolanlNance's profile was updated 10 years, 2 months ago
-
riseUp replied to the topic How to link the avatar picture to his/her profile page in the forum How-to & Troubleshooting 10 years, 2 months ago
Hi all,
Didn’t seem to work. This is what I did.
I pulled up the following code in functions.php:
//* Add post image above post title
add_action( 'genesis_entry_header', 'streamline_post_image', 1 );
function streamline_post_image() {if ( is_page() || ! genesis_get_option( 'content_archive_thumbnail' ) )
return;if ( $image =…[Read more]
-
riseUp replied to the topic How to display a "My Profile" page in the forum How-to & Troubleshooting 10 years, 2 months ago
Gracias. Thank you!
-
rosyteddy replied to the topic Is it possible to use Peepso with Buddypress? in the forum How-to & Troubleshooting 10 years, 2 months ago
@henrywright Thanks. It seems there is no mutual incompatibility between the core plugins.
I would have been more interested in the Photo plugin of Peepso as there is absolutely no good photo / media plugin or as-core-feature in Buddypress even after so many years. Peepso have got the photo feature excellent and fast, and is not dated like Rtmedia…[Read more] -
Henry Wright replied to the topic PHP Warning: Illegal string offset 'content' bp-members-template.php in the forum How-to & Troubleshooting 10 years, 2 months ago
Which plugins do you have active and which theme are you using?
-
Henry Wright replied to the topic Is it possible to use Peepso with Buddypress? in the forum How-to & Troubleshooting 10 years, 2 months ago
I doubt they would work well together but you could try it on a test install and let us know how you got on?
-
Henry Wright replied to the topic How to Exclude already friends in all members directory ? in the forum How-to & Troubleshooting 10 years, 2 months ago
Try using
bp_is_directory(). So:add_filter( 'bp_after_has_members_parse_args', 'devb_custom_hide_friends' );function devb_custom_hide_friends( $args ) {
if ( ! bp_is_directory() ) {
return $args;
}
// Rest of your code. - Load More