Hi there,
when I add the conditional ‘is_frontpage’ and I select ‘NOT’, the generated php code seems to add a chevron arrow in front of the element:
<section data-pg-name="PAGEDESCRIPTION" wp-if-is-front-page="!">
<div id="sitetitle" class="container welcome">
<div class="row blocktitle">
<div class="col-md-10 col-md-offset-1">
<p class="h1" wp-title>page title</p>
<p class="blocksubtitlesmall">[sahyt]</p>
</div>
</div>
</div>
</section>
HTML:
<?php if ( !is_front_page() ) : ?>
<section>
<div id="sitetitle" class="container welcome">
<div class="row blocktitle">
<div class="col-md-10 col-md-offset-1">
<?php wp_title(); ?>
<p class="blocksubtitlesmall"><?php _e( '[sahyt]', 'tfdegreesnelis' ); ?></p>
</div>
</div>
</div>
</section>
<?php endif; ?>
RESULT:
» Page 2