alanmccann
Forum Replies Created
-
Forum: Plugins
In reply to: [Export User Data] Exporting BP xProfile field dataI’m getting the same result as @davidryal and @kkieninger. Blank data fields and the exact same PHP warning.
Wordpress 4.7.4, Buddypress 2.8.2 and Export User Data 1.3.1.
Hosted on WPEngine with PHP 5.6
I can help test any fixes.
Forum: Plugins
In reply to: [Invite Anyone] Tags being truncated when sending invitesOne more issue: The number of allowed invitations keeps getting reset to 1 no matter what I set it to. I can’t figure this one out.
Forum: Plugins
In reply to: [Invite Anyone] Tags being truncated when sending invitesI found a temporary solution that worked for me and involved editing the plugin
/invite-anyone/admin/admin-panel.php: 652 case 'default_invitation_message' : 653 case 'addl_invitation_message' : 654: if ( function_exists( 'sanitize_textarea_field' ) ) { 655: $value = sanitize_textarea_field( $value ); 656 } 657 break;
changed to
/invite-anyone/admin/admin-panel.php: 652 case 'default_invitation_message' : 653 case 'addl_invitation_message' : 654 $value = $value; 655: //if ( function_exists( 'sanitize_textarea_field' ) ) { 656: // $value = sanitize_textarea_field( $value ); 657 //} 658 break;
And that seems to work. I hesitate creating a pull request as I don’t know wordpress well enough to understand what ‘sanitize_textarea_field’ is doing.
- This reply was modified 7 years, 11 months ago by alanmccann.
Forum: Plugins
In reply to: [Invite Anyone] Tags being truncated when sending invitesI’m having the same issue as @fotan
WP v4.7.3
BP v2.8.2
Plugin v1.3.16This isn’t a multisite install.
If I edit the footer text, returning it to %%ACCEPTURL%%, and save it. It shows fine but after navigating away to another section of the site and coming back, it shows as PTURL%% in the footer text again.
If I try that with a single percentage sign (%ACCEPTURL%), the truncation results in CEPTURL%
- This reply was modified 7 years, 11 months ago by alanmccann.
- This reply was modified 7 years, 11 months ago by alanmccann.