Add Json Schema to Pro theme manually

Hello,
I want to manually ad schema into my site. I know there is the extension. But it seems limited. I read to add it in the header file, but Im using PRO and I don’t see that file. Where would I add it ? I have a child theme set up.

Thanks
Rena

Hi there,

Kindly add a child theme to Pro. After that kindly add the code below to functions.php file of your child theme:

function third_party_tracking_code() { ?>

//ADD the JSON code HERE

<?php
add_action( 'wp_head', 'third_party_tracking_code' );

The code above uses wp_head filter. Inside that block of code you can add the JSON tracking cod e that you have.

For more information about the customization of the theme and adding stuff to the header or different part of the website please kindly read the articles below:

https://theme.co/apex/forum/t/customizations-actions-and-filters-in-x/208

Thank you.

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