Unable to embed showcase

Wordpress Version: 4.8–de_DE, Theme: X, Version: 5.1.0, URL: https://www.bell.de/

Cannot embed the showcase of a customer on our Wordpress site. Used to work. Been trying to copy this

<div class='zift_plugin' id='ff8081815b652b68015b86204660723d'></div>

or this

<script type='text/javascript' src='http://widgets.ziftsolutions.com/extremenetworks.ziftsolutions.com/js/ff8081815b652b68015b86204660723d' charset='utf-8'></script>

in a container of the CMS but nothing shows up.

Please help.

Hi There,

I can see you don’t have child theme yet. Please check this guide on how to set it up: https://theme.co/apex/forum/t/setup-how-to-setup-child-themes/57
We need to add the script using the child theme. Add the following code on your child theme’s functions.php file:

add_action('wp_head','custom_script');
 function custom_script() {
  ?>
 <script type='text/javascript' src='http://widgets.ziftsolutions.com/extremenetworks.ziftsolutions.com/js/ff8081815b652b68015b86204660723d' charset='utf-8'></script>
 <?php
  }

Then just add the first part on where you want it to appear.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.