MD Imran Khan
Forum Replies Created
-
You are welcome.
If you liked this plugin and our support, a good review for this plugin will be really helpful.
Thanks in advance.
Hi,
For custom ordering the categories you can use any of these plugin. We added support for both of these plugins.
Thanks
https://wordpress.org/plugins/custom-taxonomy-order-ne/
https://wordpress.org/plugins/taxonomy-terms-order/Hi @adrian1231,
So sorry to know you are having this issue. We are open to help with this issue.
If you want I can check this and give you a quick solution. It sounds an incorrect or inappropriate configuration of the plugin. Please allow me to check and guide you how to show the form.Thank You
In the premium version you can add custom tabs in the product edit page. This tab will be visible only for that particular product. You can add any type content including shortcodes in the tab editor.
So you don’t need any custom meta fields here. You can add your video, FAQ, info, etc. content directly in the tab content editor.
If you want to try it, please send me an email using this form: https://wpbean.com/supportThanks
Hi @sgucci1,
Hope you are doing good. Thanks for showing interest in this plugin.
If this is the only purpose, you don’t need this plugin. You can do it by adding a few line of PHP code. All you have to check if the video meta value is present then show a custom with that video in the tab content.
You can find more details how it can be done here in our blog: https://wpbean.com/add-edit-customize-woocommerce-product-tabs/
Here is an example of it, Just add your video meta key in this code:add_filter( 'woocommerce_product_tabs', function($tabs){
global $product;
$id = $product->get_id();
$video = get_post_meta( $id, 'your_video_meta_key_here', true );
if(isset($video) && '' != $video){
$tabs['custom_video_tab'] = array(
'title' => 'Video',
'priority' => 30,
'callback' => 'wpb_product_custom_video_tab_content'
);
}
return $tabs;
} );
function wpb_product_custom_video_tab_content() {
global $product;
$id = $product->get_id();
$video = get_post_meta( $id, 'your_video_meta_key_here', true );
echo $video;
}BTW with the premium version, You can add custom tabs only for selected tabs and show product custom meta without adding any custom code.
Thank You
Hi,
Please allow us some time. We are working on a big update for this plugin. We will fix this issue in the next update.
Thank You