Replies
Gentle reminder
- Tosin on March 30, 2023 at 10:09 pm in reply to: [Resolved] BuddyBlog pay per post – remove post from category on expiration #49039
Thank you Brajesh
this is now resolved
ok thanks Brajesh,
I have disabled it, please kindly let me know if there will ever be a replacement or update for the medium editor.
Hi Brajesh
After further testing I noticed that the encoding issue only occurs when publishing or editing with the buddyblog medium editor.
After deactivating the buddyblog medium editor, everything works fine and there are no more encoding issues.
I just found out its an encoding problem that can occur on old post when database has been migrated,
I tried this code but it did not work
function fix_weird_characters() { global $wpdb; $replacements = array( '“' => '“', 'â€' => '”', '’' => '’', '‘' => '‘', '—' => '–', '–' => '—', '•' => '-', '…' => '…' ); foreach ($replacements as $key => $value) { $query = $wpdb->prepare( "UPDATE {$wpdb->posts} SET post_content = REPLACE(post_content, %s, %s)", $key, $value ); $wpdb->query($query); } } add_action('wp_loaded', 'fix_weird_characters');
Thanks Brajesh
Illbe looking forward to the next update
- Tosin on March 15, 2023 at 11:53 am in reply to: [Resolved] Exclude or hide activities of user who are subscribers #48795
Thanks for the feedback
So if this is not scalable, then its better I stick to your advise as am planning or a large community platform
- Tosin on March 14, 2023 at 6:57 pm in reply to: [Resolved] Exclude or hide activities of user who are subscribers #48784
By default new users are subscribers but their role changes to contributor on first login, so I want to hide all activities of subscribers who have never logged in.
Inactive users are subscribers
Active users are contributors - Tosin on March 14, 2023 at 6:51 pm in reply to: [Resolved] Order by – parameter for featured member plugin shortcode #48783
Thanks Ravi
I have tested the latest version which works perfectly so this issue is now resolved.
- Tosin on March 13, 2023 at 10:35 pm in reply to: [Resolved] Order by – parameter for featured member plugin shortcode #48769
Gentle reminder sir
Thanks