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
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
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.