meg@info
Forum Replies Created
-
Forum: Plugins
In reply to: [BuddyPress FollowMe] Update to 3.5.1Hi,
I think the probleme is from your theme, witch theme used ?
can you make screen capture or send the link of your site.the new version work fine with the buddypress themes and compact theme.
thanks,
Forum: Plugins
In reply to: [BuddyPress FollowMe] Update to 3.5.1Hi,
The plugin is beta compatible for buddypress 1.7 and wp 3.5.1
you can check the code in my git,
https://github.com/dzmounir/buddypress-follow-me
I will update the plugin soon.
Forum: Plugins
In reply to: [BuddyPress FollowMe] Incompatible with php 5.4Resolved!
Forum: Plugins
In reply to: [BuddyPress FollowMe] Just Installed. Got Double Row on Profile.Hi,
Witch theme you use ?
Forum: Plugins
In reply to: [BuddyPress FollowMe] Not compatible with BuddyPress 1.7Hi,
BuddypressFollowMe is now Beta compatible for buddypress 1.7 and compact theme.
check the repo
https://github.com/dzmounir/buddypress-follow-me
Regards,
Forum: Plugins
In reply to: [BuddyPress FollowMe] UNINSTALL/COMPLETELY REMOVE PLUGINHi,
Just disable it from wordpress admin panel,then delete the directory ‘buddypress-follow-me’ in wordpress/wp-content/plugins/
Forum: Plugins
In reply to: [BuddyPress FollowMe] Follow buttonHi,
I was’nt check if the plugin work or no for the Multisite.
I will do that soon.
Regads,
Forum: Plugins
In reply to: [BuddyPress FollowMe] Not working correctly on 3.5.1Hi,
Screen shot not found, can you upload it again please,
Check for the update of the plugin in GITHUB, the master version is for bp 1.7 and it must work for bp1.6 too.
https://github.com/dzmounir/buddypress-follow-me
Regards,
Forum: Plugins
In reply to: [BuddyPress FollowMe] Need a Favor !You are Welcome ??
Forum: Plugins
In reply to: [BuddyPress FollowMe] Need a Favor !Hi
replace the code of urdu-formatter-shamil.php with the code :
https://gist.github.com/dzmounir/5077250I just add isset function to tests ,
if(!$atts[‘size’]){ — >if(!isset($atts[‘size’])){Regards.
Forum: Plugins
In reply to: [BuddyPress FollowMe] sidebar issuesHi, can you make me a screen shot please.
Forum: Plugins
In reply to: [BuddyPress FollowMe] Please Help!Hi projutt,
Add this code before ligne 256 in bp-follow-loader.php
if (version_compare(PHP_VERSION, '5.4.0') >= 0){ $bp->{$this->id}->followers = new stdClass; $bp->{$this->id}->following = new stdClass; }
feedback please if wrok.
Regards.Forum: Plugins
In reply to: [BuddyPress FollowMe] Incompatible with php 5.4Hi Quint,
You need to update line 105
check this
https://www.ads-software.com/support/topic/please-help-181?replies=2#post-3783697And you can read this too
Regards.
Forum: Plugins
In reply to: [BuddyPress FollowMe] Please Help!Hi,
I think you use PHP 5.4.
You need to edit line 105 of C:\xampp\htdocs\www\mysite\wp-content\plugins\buddypress-follow-me\includes\bp-follow-functions.php :
return apply_filters( 'bp_follow_is_following', (int)$follow->id, &$follow );
replace it with
return apply_filters( 'bp_follow_is_following', (int)$follow->id, $follow );
feedback please if wrok.
Regards.
Forum: Plugins
In reply to: [BuddyPress FollowMe] 2 Feature RequestsHi myladeybugg,
I dont understand realy what you want exactly. If you want to add a follw button in any place ( for example in the blog of a member in the case of Multi site) ?
If yes, you can add this ligne at the end of the file bp-follow-template.php
add_shortcode('bp_follow_me', 'bp_follow_get_add_follow_button');
to create a shortcode, then you can use this shortcode [bp_follow_me] any where (it work only in buddypress page )
please check if it work in multi site and feed back.
Thanks.