• Resolved djstevieb

    (@djstevieb)


    Hi everyone

    Sorry if this has already been answered before.

    I am using Events Manager and I have edited the Single Event Page to display a little different from default. However its displaying the event author and date and I don’t want it to. I cannot seem to figure out how to remove them. Any help?

    Screen shot here

    I’m using an edited version of the Attitude Theme, on WP v3.6 with EM v5.5

    https://www.ads-software.com/plugins/events-manager/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi,

    If your theme uses standard coding you should search for these two tags and remove them.
    <?php the_author(); ?>
    and
    <?php the_date(); ?>

    That should do the trick.

    Thread Starter djstevieb

    (@djstevieb)

    If your theme uses standard coding you should search for these two tags and remove them.

    I’m either looking in the wrong place or the theme doesn’t use standard coding because I cant find those tags any where. I am looking in the Attitude: Stylesheet (style.css)?

    No, it would be in one of the other files, probably single.php.

    Plugin Support angelo_nwl

    (@angelo_nwl)

    easiest way is to use css styling using your theme style.css eg. use display:none;

    Thread Starter djstevieb

    (@djstevieb)

    Thanks guys, thanks for your help

    I ended up adding the following to style.css to remove the Author and Date
    .entry-meta {
    display:none;
    }

    I also had to add these few lines of code to remove some horizontal rules left at the bottom.
    .entry-meta-bar.clearfix {
    display:none;
    }
    .default-wp-page.clearfix {
    display:none;
    }

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘remove author & Date’ is closed to new replies.