0
Becky Zingler
I am trying to remove the social sharing option on my classified ads since this is an employee website not meant for external eyes. I have removed the icons by inserting this css: .single-ads .ads-sidebar .widget .social-share{
display: none;
}
However this does not take care of the title that reads : Share this ad.
Any suggestions.
Thanks,
Becky
2 Subscribers
Submit Answer
1 Answers
Best Answer
1
Please add follwoing Code on your themes functions.ph file
add_filter('classified_maker_filter_widgets','classified_maker_filter_widgets_social'); function classified_maker_filter_widgets_social($widgets){ unset($widgets[40]); return $widgets; }
Each widget has qunique id, you can filte anything you want by filter hook.
Regards
Thanks for your help. This worked awesome!