Hey marlybob,
We have moderation settings built into our Pro version which allow you to hide posts based on ID, block posts from certain users, or remove/show photos which contain certain words or hashtags, but these aren’t included in this free version. However, you can still hide specific photos in your feed by using a CSS snippet. You can find the ID of a photo by right clicking on it and using the browser’s “Inspect element” option. The ID would look something like: sbi_898212053294455194_12986477. You can then hide it from your feed by adding the following to our plugin’s Custom CSS section, which is on the Customize page:
#sbi_898212053294455194_12986477{ display: none; }
To hide multiples simply separate by commas:
#sbi_898212053294455194_12986477,
#sbi_898212053294455194_12986477,
#sbi_898212053294455194_12986477{ display: none; }
Let me know whether that helps, or if you have any other questions at all.
John