When putting something into custom code like a Google Analytics <script> or even a <link> to bring up a font stylesheet, etc... when saving and going back into the template options, all the custom code is blank, like it was never saved.
The only one that saves is the before </body> tag but it strips away all the <script> text and only keeps what was between.

Been trying all day in my localhost using Mamp on macOS.

    aaronblrt11 Hi

    Our team is looking into this issue and update for template.

    Thanks for your report.

    Hi @aaronblrt11,
    Follow some below steps to solve your issue.

    1. Open the template.xml
      Replace

      <field name="custom_code_after_head" type="textarea" label="TPL_GK_LANG_AFTER_HEAD" />
      <field name="custom_code_before_head" type="textarea" label="TPL_GK_LANG_BEFORE_HEAD" />
      <field name="custom_code_after_body" type="textarea" label="TPL_GK_LANG_AFTER_BODY" />
      <field name="custom_code_before_body" type="textarea" label="TPL_GK_LANG_BEFORE_BODY" />

      by

      <field name="custom_code_after_head" type="textarea" filter="raw" label="TPL_GK_LANG_AFTER_HEAD" />
      <field name="custom_code_before_head" type="textarea" filter="raw" label="TPL_GK_LANG_BEFORE_HEAD" />
      <field name="custom_code_after_body" type="textarea" filter="raw" label="TPL_GK_LANG_AFTER_BODY" />
      <field name="custom_code_before_body" type="textarea" filter="raw" label="TPL_GK_LANG_BEFORE_BODY" />
    2. Open the head.php in the "layouts/blocks/" folder.
      Add below code section:

      use Joomla\CMS\Factory;
      use Joomla\CMS\HTML\HTMLHelper;
      //Add new
      use Joomla\Plugin\System\Gavick\GKConfig;
      ...
      <!-- after open head -->
      <?php echo GKConfig::get('custom_code_after_head') ?>
      
      <jdoc:include type="metas" />
      <jdoc:include type="styles" />
      <jdoc:include type="scripts" />
      
      <!-- before close head -->
      <?php echo GKConfig::get('custom_code_before_head') ?>
    3. Open the default.php layout in layouts folder.
      Add below code section:

      use Joomla\CMS\Factory;
      use Joomla\Plugin\System\Gavick\GKTemplate;
      use Joomla\CMS\Helper\MediaHelper;
      use Joomla\Plugin\System\Gavick\Helper\GKColorPresetHelper;
      // Add new
      use Joomla\Plugin\System\Gavick\GKConfig;
      ...
      <body id="gk-body" class="gk-body" data-gk-theme="<?php echo GKColorPresetHelper::getActivePreset(); ?>">
          <!-- after open body -->
          <?php echo GKConfig::get('custom_code_after_body') ?>
          ...
          <!-- after open body -->
          <?php echo GKConfig::get('custom_code_after_body') ?>
      </body>
    4. Open the home.php layout and do the same as step 3.
      Save and reload your website to view the change.

    It works, thank you. I messed up at first because I forgot to add the GKConfig part...

    Write a Reply...
    You need to Login to view replies.