Try adding this tag to <head></head>
<meta property="og:image" content="<%= image_path('your_image') %>" />
A possible solution to exclude the image from general use is to use the div property with CSS. Instead of this
<%= image_tag "galli-walking.jpg", alt: "Conquering life and goal challenges so we can get the most out of life.", class: "main-image" %>
using
<div style="background-image: url('galli-walking.jpg'); width:Xpx; height:Xpx;></div>
source
share