Support Forum

Issue with edit for admin and moderators

20 Answers

New Answer

BS bjj scout
bjj scout
Member

Thanks a lot sir, your code worked for me but will be best if I am able to strip off the part where it displays for moderators.

Both moderators, users and admins alike should see it as text link when viewing it. 

 

Thanks again  

YS Yellow Swordfish
Yellow Swordfish
Member

Change it for this:

add_filter('sph_save_links_filter', 'remove_links_save', 1, 3);
function remove_links_save($content, $original, $charcount) {
    return $original;
}
add_filter('sph_display_links_filter', 'remove_links_display', 1, 3);
function remove_links_display($content, $original) {
    return $original;
}

That will do it for all users.