Plugin Author
tssoft
(@tssoft)
Uncheck both options “Add by default for new posts/pages” and buttons won’t be added to new posts/pages. See picture
Both is turned off, but the social bar still appears on all of my pages.
I just tested a bit more and it definitly still gets auto included by your plugin, because when I comment the_content() out, then the social bar is also gone.
Plugin Author
tssoft
(@tssoft)
Uncheck both options “Add by default for new posts/pages”, then push buttons “Apply to existing posts/pages”.
Okay, well that worked.
Do I see it right that your plugin creates for EVERY POST/PAGE/CPT a meta_key for social likes?
I have 900k rows in wp_posts, I’m not sure If i want additional 9000000 meta_keys just for a social like bar.
Thats bad for my case, could you help me to achieve the same without the use of 900.000 metakeys?
Why do I need a meta_key to hide the social bar? That makes no sense anyway. IF I want to show it, then a metakey is fine, sure. But If I don’t even want it shown, then it shouldn’t require a metakey. Now I have 900.000 Metakeys for JUST your plugin in my database. I have enough slow sql queries on my site already :/
Plugin Author
tssoft
(@tssoft)
Remove them manually via sql or some plugin, nothing will change for your case.
Okay, thanks it worked. Just 667 rows. For everyone else who wants to remove the sociallikes metakeys:
DELETE FROM wp_postmeta WHERE meta_key = ‘sociallikes’
Thanks again, bye!