• Resolved wooster82

    (@wooster82)


    Hi. The plugin is pretty nice and I like to use it. ?? I faced an issue when trying to remove the read more button from the list view. I do not find any options to remove it. Is it only me missing it? Can you please help how it cen be done? Thank you!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Satinder Singh

    (@satindersingh)

    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.

    Thread Starter wooster82

    (@wooster82)

    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

    Plugin Support shubham0095

    (@shubham0095)

    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

    Thread Starter wooster82

    (@wooster82)

    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

    Plugin Support shubham0095

    (@shubham0095)

    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

    Thread Starter wooster82

    (@wooster82)

    Ohhh! Perfect !Thank you! I put it to a wrong css section, I thought that I must be added to the plugin css. Thanks!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Remove Read more from list view’ is closed to new replies.