Aloha!

Let's see how you can remove the hearts from the theme - our liking system. 


  1. from the portfolio page - go to template-portfolio.php file from the theme's folder, and delete the pointed lines from this screenshot http://d.pr/i/kuf4. Also, if you do this step you will need to make the portfolio title & description to be centered so they will look awesome (as here http://d.pr/i/1i68I). 

    To do this, you need to add this CSS snippet at the end of style.css file, or in the custom CSS box from ROUA Options

      

    .portfolio ul li figure .content .right { text-align: center !important; }
    
    @media (max-width: 1030px) {
     .portfolio ul li figure .content .right, .products .product .content .right {
     margin-top: 0;
     position: absolute;
     top: 50%;
     -webkit-transform: translateY(-50%) !important;
     -moz-transform: translateY(-50%) !important;
     -o-transform: translateY(-50%) !important;
     -ms-transform: translateY(-50%) !important;
     transform: translateY(-50%) !important;
     }
    }

      

  2. from the portfolio single page - go to /lib/templates/work/ and open content.php where you need to delete the pointed lines here http://d.pr/i/156OB



This should be all. Please let us know if you encounter any trouble. 

Cheers'