Edit/remove "view post" button from featured image

Hi,
I was able to remove the “view post” button from the slider (adding css to Appearance > Customize > Custom > edit global css).

1- Now I want to remove it from each post image as well. Could you tell me what’s the code for that?
2- My website is not in english, so I would like to change the default text of search fields, such as “TYPE AND PRESS “ENTER” TO SEARCH”, into my language.
3- I Also want to change the text of comments section of posts (translate fields into the language used in my website (leave a comment, your comment and submit)

Thanks

Hello There,

Thanks for writing in!

1.) To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.

2.) & 3.) Please translate X theme into your own language. You can check out the suggested instruction from our knowledge base here: https://theme.co/apex/forum/t/setup-translation/61/1

Hope this helps. Please let us know how it goes.

Thanks,
my url is: http://omiradouro.com.br

Hello There,

Thanks for writing in!

You can add following CSS to remove view post button:

span.featured-view {
    display: none;
}

Basically what I have done is picked the relevant selector for view post link using Google chrome inspect element tools. Since you don’t want to show view post button, next step is to hide the link using CSS display property. I would suggest you to take advantage of Google Chrome inspect element coupled with some basic CSS as that will help you make changes on website on your own. I would suggest you to watch following tutorial to get started with Google chrome inspect element tools:

If you would like to teach yourself CSS, w3schools is a great resource:

https://www.w3schools.com/css/

Thanks.

Thanks,
It worked on the featured post images, but its still displaying on featured images of regular posts. I wanted to remove them all…

Hi,

You can add this code as well

a.entry-thumb .view {
     display:none;
}

Hope that helps.

Works great!! Thank you Guys!! Love the Theme!

You are most welcome. :slight_smile: