Hi @wooster82
Sorry for the inconvenience,
To remove the Find Out More button from the list view you have to add the below given custom CSS based on style you used:-
//CSS for List View - Style 1
.ectbe-wrapper.ectbe-list-wrapper.style-1 .ectbe-evt-more-box {
display: none !important;
}
//CSS for List View - Style 2
.ectbe-wrapper.ectbe-list-wrapper.style-2 .ectbe-evt-more-box {
display: none !important;
}
//CSS for Minimal List View - Style 1
.ectbe-wrapper.ectbe-minimal-list-wrapper.style-1 .ectbe-evt-more-box {
display: none !important;
}
Hope it will help you. Also we will try to add an option in upcoming updates to hide it.
Hi Satinder! Thank you very much for your support. I did try all the 3 codes and the Read more did not disappear. I did try to check in incognito view. What might I do wrong? I added the code like this:
“Style 1.ectbe-wrapper.ectbe-minimal-list-wrapper.style-1 .ectbe-evt-more-box {Â Â Â Â display: none !important;}”
What do I do wrong?
Peter
Hi @wooster82
Sorry for the inconvenience
The Read More button is coming from the theme to remove this:
Please use the custom CSS code given below:
.ectbe-wrapper .ectbe-evt-description .read-more
{
    display: none;
}
Thanks & Regards
Hi. Thank you for your support. I did add the code to the shortcodes css part, but it still does not do what I would expect. I see the read more area…. There Is no text as I removed the translation. Can you please check what do I do wrong? https://buborekegyuttes.hu/
Thank you.
Peter
Hi @wooster82
Sorry for the inconvenience.
Remove all the CSS code we ask you to add before.
Now follow the steps to know where to add custom CSS code:
1. Go to your website dashboard.
2. Under Appearance > Customize
3. In the customize panel, Click on Additional CSS
4. Add the custom CSS code as given below in the Additional CSS panel.
5. Click on Publish.
.ectbe-wrapper.ectbe-list-wrapper.style-1 .ectbe-evt-more-box {
    display: none;
}
Thanks & Regards
Ohhh! Perfect !Thank you! I put it to a wrong css section, I thought that I must be added to the plugin css. Thanks!