Viewing 3 replies - 1 through 3 (of 3 total)
  • Pam,

    You should be able to edit the stock placeholder or create a new one.

    Here is a link to customize the stock placeholder.

    https://wp-events-plugin.com/tutorials/modifying-placeholder-default-information/

    Good Luck

    Just to add to what @tricer said, in the categories placeholder template you’d need to change this bit of code

    <ul class="event-categories">
    <?php foreach($EM_Event->get_categories() as $EM_Category): ?>
    <li><?php echo $EM_Category->output("#_CATEGORYLINK"); ?></li>
    <?php endforeach; ?>
    </ul>

    to this

    <?php foreach($EM_Event->get_categories() as $EM_Category): ?>
    <?php echo $EM_Category->output("#_CATEGORYLINK"); ?>
    <?php endforeach; ?>
    Thread Starter pam

    (@manabeads)

    THANKS for the quick response! I think I can make the needed adjustments now!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Can I change the format of a placeholder?’ is closed to new replies.