mprabakaran
asked 6 years ago

Hi,
I have check such a great plugin for forum, i need one clarification for this it\\\’s possible to configure in woocommerece product page questions and answer tab dynamically 
kindly help me 
https://ibb.co/cmnEen
Thanks in advance…

1 Answers
DominicStaff
answered 6 years ago

Yes, you can do that. If you want to show the list question tab, you can add the following code in the functions.php file of your theme.

add_filter( 'woocommerce_product_tabs', 'woo_new_product_tab' );
function woo_new_product_tab( $tabs ) {
 // Adds the new tab
 $tabs['test_tab'] = array(
'title' => __( 'New Product Tab', 'woocommerce' ),
'priority' => 50,
'callback' => 'woo_new_product_tab_content'
);
 return $tabs;
 }
function woo_new_product_tab_content() {
$var = do_shortcode( '[dwqa-list-questions]' );
echo $var;
 }
mprabakaran
replied 6 years ago

adding new questions link going new page i need all activity work in same tab not redirect or going to any other page

http://www.amazesecret.com/product/amaze-secret-night-cream/

Dominic Staff
replied 6 years ago

At the moment, the plugin does not support to work in the same tab as you mentioned here.
If you want to have it, we are ready to help you as a custom work with a charge of fee.
In case that you are still interested in the feature, please kindly let us know, we will check and estimate the time.

Powered by DW Question & Answer Pro