RoFiks
Forum Replies Created
-
Forum: Plugins
In reply to: [Registration Options for BuddyPress] Translation not workingI found the problem ?? When ‘approve’ and ‘deny’ are translated, the functions aren’t working anymore.
Forum: Plugins
In reply to: [Registration Options for BuddyPress] Translation not workingHi Michael,
I’m working now with the 4.2.8 version, but I can’t approve new users anymore. The translation is working ?? but when I select users and click ‘approve’, the page refreshes, but nothing changes and the users are still waiting for approval.
Do you have the same problem?
Forum: Plugins
In reply to: [Registration Options for BuddyPress] Translation not workingHi Michael,
Thank you so much for the quick reply! I installed the version with the fixes, and the translation is working now. Great!! Thanks for fixing this so quickly!
Cheers!
Forum: Plugins
In reply to: [Simple Social Share] WHY IS THIS NOT WORKINGHi Perials,
Thanks for the help! I figured out it is working when I select one of the “Show on” options, but the media buttons are being displayed twice. I did hope the shortcode would work without having to select one of the “Show on” options (because I would like to add it manually on a custom post type page). I think it’s because this part of code:
if( is_home() && !in_array( 'home', (array)$s3_options['ss-show-on'] ) ) return ''; if( is_single() && !in_array( 'posts', (array)$s3_options['ss-show-on'] ) ) return ''; if( is_page() && !in_array( 'pages', (array)$s3_options['ss-show-on'] ) ) return ''; if( is_archive() && !in_array( 'archive', (array)$s3_options['ss-show-on'] ) ) return '';
I found a workaround by selecting “Posts”, but removing the content filter:
add_filter( 'the_content', array( $this, 'append_s3_html' ) );
Is there another way to make the shortcode work by itself?
Forum: Plugins
In reply to: [Simple Social Share] WHY IS THIS NOT WORKINGI’ve got the same problem… The shortcode isn’t working.