By the way, I forgot to mention that the plugin doesn’t appear in the Screen Options either.
I just found out the blocks are inactive. I went to Settings > Multiple content blocks and clicked ‘Show inactive blocks’, and the content is there, but I can’t activate them?
Thoughts?
I just found out the blocks are inactive. I went to Settings > Multiple content blocks and clicked ‘Show inactive blocks’, and the content is there, but I can’t activate them?
Thoughts?
I figured it out.
The blocks had to be referred to a template page. For example:
get_header();
st_before_content($columns=”);
get_template_part( ‘loop’, ‘page’ );
st_after_content();
get_the_block(‘Block Name’);
?>
<div class=”pageStretch” id=”company”>
<div class=”container sixteen columns”>
<?php the_block(‘Block Name’); ?>
</div>
</div>
I also had to careful refer to the hook commands to make the content blocks appear on the editing page.
Thank…;/