Hi all,
Just found my first use case for new Markup Regions (at least I think that's what they're being called) feature. Unfortunately, I haven't been able to get it working.
I'm using 3.0.57 and have added the
$config->useMarkupRegions = true;
line to my config file.
Next, I put the id in my head tag like so:
<html lang="en">
<head id="html-head">
Then the markup in the template file (the head tag is in top.php):
<?php include("inc/top.php"); ?>
<head id="html-head" class="pw-append">
<link rel="stylesheet" type="text/css" href="/site/templates/css/calculator.css">
</head>
When I reload the page that uses the above template, I get that unprocessed code output right after the output of my top.php file - in other words exactly what would happen if there were no such thing as Markup Regions.
Am I missing something?
I've read through the post here, and I seem to be doing everything needed.
Thanks for any help.