Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
sgssandhu committed Feb 15, 2021
1 parent f58f9f8 commit d22ceb8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion footer.php
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@
</script>
<?php
if( !empty( $theme_options['code_body_end'] ) ) {
echo $theme_options['code_body_end'];
echo do_shortcode( $theme_options['code_body_end'] );
}
?>
</body>
Expand Down
4 changes: 2 additions & 2 deletions header.php
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ function gtag(){dataLayer.push(arguments);}
?>
<?php
if( !empty( $theme_options['code_head'] ) ) {
echo $theme_options['code_head'];
echo do_shortcode( $theme_options['code_head'] );
}
?>

Expand All @@ -275,7 +275,7 @@ function gtag(){dataLayer.push(arguments);}

<?php
if( !empty( $theme_options['code_body_start'] ) ) {
echo $theme_options['code_body_start'];
echo do_shortcode( $theme_options['code_body_start'] );
}
?>

Expand Down

0 comments on commit d22ceb8

Please sign in to comment.