Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Evan Herman

    (@eherman24)

    Hi Eric,

    There is no built in way to display the tab data on your site. Since the tab data is simply post meta, you can use the built in get_post_meta() function to retrieve the custom tab data. You’ll get an array of tab data returned. You’ll want to reference the key as ‘yikes_woo_products_tabs’.

    Example:

    get_post_meta( $post->ID, 'yikes_woo_products_tabs', true );

    Which should return an array of your tab data that you can then loop over to display as needed.

    Evan

    Thread Starter eric7777

    (@eric7777)

    thanks Evan..I will look into this further..

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Action Hooks to display tab content in different parts of the product page’ is closed to new replies.