/** * Add Directions Tab & Panel To Jigoshop Products **/ add_action('jigoshop_product_tabs', 'directions_tab'); add_action('jigoshop_product_tab_panels', 'direction_panel'); /** * Directions tabs **/ if (!function_exists('directions_tab')) { function directions_tab( $current_tab ) { ?>
  • >
  • '; echo '

    ' . apply_filters('jigoshop_product_directions_heading', __('Directions', 'jigoshop')) . '

    '; $values = get_post_meta(get_the_ID(), "_tft_directions"); $shortcode_output = do_shortcode($values[0]); print $shortcode_output; echo ''; } }