1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?php // // Recommended way to include parent theme styles. // (Please see http://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme) // add_action('wp_enqueue_scripts', 'theme_enqueue_styles', 998); function theme_enqueue_styles() { $prefix = function_exists('elessi_prefix_theme') ? elessi_prefix_theme() : 'elessi'; wp_enqueue_style($prefix . '-style', get_template_directory_uri() . '/style.css'); wp_enqueue_style($prefix . '-child-style', get_stylesheet_uri()); }
add_filter('woocommerce_product_tabs', function ($tabs) { unset($tabs['reviews']); // Remove the reviews tab return $tabs; }, 99);
add_action( 'wp_footer', 'add_script_to_product_page' ); function add_script_to_product_page() { ?> <script type="text/javascript" > (function ($) {; $(document).ready(function () { $('.nasa-single-product-slide .product-info .wcpa_form_outer .wcpa_form_item.hassizechart').after('<a class="nasa-node-popup dreamteam-size-chart-link" href="javascript:void(0);" data-target="#nasa-content-size-guide" title="Size Chart" rel="nofollow"><i class="nasa-icon pe-7s-note2 pe-icon"></i> Size Chart</a>'); }); })(jQuery) </script> <?php }
|