File "index.php"
Full Path: /home/londdqdw/public_html/06/wp-content/plugins/nd-shortcodes/addons/woocommerce/template/index.php
File size: 446 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
//put page on theme
add_action('nicdark_woocommerce_nd','nicdark_woocommerce');
function nicdark_woocommerce() {
if ( is_product() ){
$nd_options_layout_selected = dirname( __FILE__ ).'/single/index.php';
include realpath($nd_options_layout_selected);
}else{
$nd_options_layout_selected = dirname( __FILE__ ).'/archive/index.php';
include realpath($nd_options_layout_selected);
}
}