sevelina
Forum Replies Created
-
Forum: Plugins
In reply to: [Buddypress Gifts latest 2014] Path errors to imagesyes! me too! same problems!
Forum: Plugins
In reply to: Advise Membership Plugin with easy Payment gateway integrationDo you have any luck with robokassa?
Forum: Plugins
In reply to: [CubePoints] Rank icon@pfosenbauer
That worked perfectly for me THANK YOU!!!Forum: Plugins
In reply to: [CubePoints] Rank icon@pfosenbauer,
Yes, I do uploaded all rank images. Buddypress user profile page displays only points and rank name – no rank image. I’m using the latest version of WP and BP.
Do you have images work at your website?Forum: Plugins
In reply to: [CubePoints] Rank icon@pfosenbauer Thank you for the link.
I have tried it. I still can’t see rank image at user profile, it show me only rank itself without image. Do you know how to fix it?Forum: Plugins
In reply to: [CubePoints] Rank iconYes! Rank images would be perfect!!!! like it was long time ago, I really miss about this function.
Thank you! good solution for the group and forum titles.
I’ve changed a little bit:if (bp_is_group() or bp_is_group_forum() or bp_is_group_forum_topic() or bp_is_user() ){ $title = (bp_is_group_forum_topic() ? bp_get_the_topic_title() . ' - ' : '') . bp_get_current_group_name() . bp_get_displayed_user_fullname() .' - '. $this->get_default_title( $seplocation, $title_part ); }
For members profile I prefer this https://www.ads-software.com/support/topic/plugin-wordpress-seo-by-yoast-buddypress-integration?replies=17#post-4210383
Forum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO by Yoast] Buddypress IntegrationYou should go to your pages: site.com/wp-admin/edit.php?post_type=page
then to the “Members” – edit this page.
At the bottom you will see “Woedpress SEO by Yoast” You need to fill SEO Title: %%name%% – %%sitename%%It works only for the members.
Forum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO by Yoast] Buddypress IntegrationTo change BuddyPress titles you need to change it at your pages. My SEO titles for members profile is %%name%% – %%sitename%%
Forum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO by Yoast] Buddypress IntegrationYou need add this to your theme function.php:
function wpseo_canonical_exclude( $canonical ) { global $bp; if ( $bp->current_component) { $canonical = false; } return $canonical; } add_filter( 'wpseo_canonical', 'wpseo_canonical_exclude' );
Maybe it’s not really nice solution, but it works! members, groups and forums will not share a canonical slug anymore.
I’m using this at my website https://sevelina.ru/YES! I found how to fix it! ??
You need add this to your theme function.php:function wpseo_canonical_exclude( $canonical ) { global $bp; if ( $bp->current_component) { $canonical = false; } return $canonical; } add_filter( 'wpseo_canonical', 'wpseo_canonical_exclude' );
Maybe it’s not really nice solution, but it works, members, groups and forums will not share a canonical slug anymore.
I’m using this at my website https://sevelina.ru/Same problem here … Any progress??
I’ve got the same problem. Did you resolved it?
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Image in profileYES! It works! awesome!!!!! I’m happy! Thank you! Great plugin!
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Image in profileNo, I do not change anything.
I have a look at my hosting, the images uploads here:
site.com/images/uploads/profiles/userid/img it’s exists!I think this is because I changed the default media upload location in my WP, I’ve got it at site.com/images/uploads instead of default one site.com/wp-content/uploads
Can you advise something to make it work?