Migrating Existing Projects to Salesforce DX
Identifying conflicts with package folders during a Salesforce DX migration.
Back when I first noticed it, I figured there had to be some kind of setting to turn it off, but I soon realized that wasn’t the case. I ended up editing the actual source code of the plugin to delete the link. You can see the culprit below under the ‘display_zemanta_linky’ condition (the value of which deceptively isn’t set anywhere that you can modify).
While that worked, I started to realize every time Zemanta updated the plugin it would overwrite my changes with a new version of the file that would include the link again. As such, I had to remember to keep making this change.
After the most recent update, I realized that I could just hide the link with CSS. Fortunately the plugin has some pseudo name-spacing of the CSS classes that keeps the path pretty unique, so it shouldn’t affect anything else on the site. Instructions on how to get to the page where you edit your CSS are here.
/* hide Zemanta link */
div.wp_rp_footer a.wp_rp_backlink {
display: none;
}