Support

Account

Home Forums Front-end Issues Prepend and Append Do Not Appear after update Reply To: Prepend and Append Do Not Appear after update

  • As Elliot said those settings are purely visual, and will not be saved in the database, meaning you can’t show them in the front-end.

    What you can do it code the prepend in your theme, since you know where it’s supposed to be. Simply create something along the lines of:

    <?php if (get_field ('textbook_title') ) : ?>
        <p>Title: <?php echo the_field ('textbook_title'); ?></p>
    <?php endif; ?>