Remove description on list view page

Home Forums Calendar Products Events Calendar PRO Remove description on list view page

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #947559
    miguelgino
    Participant

    Hi how can i remove the description text on the list view page?
    http://gyazo.com/9224636661e5cad5434e87ea4d13bc64

    I want it not to show when viewing the list page, but on clicking find out more it will still be there.

    Thanks

    #947598
    George
    Participant

    Hey @miguelgino,

    The simplest way to do this would be with some custom CSS, like the following, in the bottom of your theme’s style.css file:

    
    body.events-list .tribe-events-list-event-description {
        display: none !important;
    }
    

    That should do the trick – let us know if it helps!

    Cheers,
    George

    #947823
    miguelgino
    Participant

    This reply is private.

    #947824
    miguelgino
    Participant

    This reply is private.

    #948175
    George
    Participant

    Hello,

    You should be able to activate it on Day View in one of two ways.

    Your first option is to use body.tribe-events-day instead of just body.events-day.

    Alternatively, you can just remove the body.{classname} qualifier here, so that any instance of .tribe-events-list-event-description will be hidden, e.g.:

    
    .tribe-events-list-event-description {
        display: none !important;
    }
    

    Play around with these options and see what you find. For further customization tweaks, I’d highly recommend getting and learning to use a free tool like Firebug if you use FireFox, or the Developer Tools for either Safari or Chrome. These make customizing HTML and CSS much easier, so definitely look into them.

    Cheers,
    George

    #983859
    Support Droid
    Keymaster

    This topic has not been active for quite some time and will now be closed.

    If you still need assistance please simply open a new topic (linking to this one if necessary)
    and one of the team will be only too happy to help.

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Remove description on list view page’ is closed to new replies.