Bonjour
j'ai un petit code que j'ai rien compris et je doit faire quelque modification
voila le code
Code html : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!-- product Info Tab start -->
                    <div class="product-info-tab-wrapper" role="tabpanel">
                        <!-- Nav tabs start -->
                        <div>
                            <div class="tab-nav-direction-wrapper"></div>
                            <ul class="nav nav-tabs" role="tablist" id="product_data_tabs">
                               <li role="presentation" class="nav-item general_options general_tab hide_if_grouped show_if_simple show_if_subscription show_if_variable-subscription show_if_subscription">
                                            <a class="nav-link" style="color:black;" href="#general_product_data" aria-controls="general_product_data" role="tab" data-toggle="tab"><span style="font-size: 16px !important;color:black !important;">Produit</span></a>
                                        </li>
                               <li role="presentation" class="nav-item inventory_options inventory_tab show_if_simple show_if_variable show_if_grouped show_if_external show_if_subscription">
                                            <a class="nav-link" style="color:black;" href="#inventory_product_data" aria-controls="inventory_product_data" role="tab" data-toggle="tab"><span style="font-size: 16px !important;color:black !important;">Quantite</span></a>
                                        </li>
 
 
                               <li role="presentation" class="nav-item advanced_options advanced_tab ">
                                            <a class="nav-link" style="color:black;" href="#advanced_product_data" aria-controls="advanced_product_data" role="tab" data-toggle="tab"><span style="font-size: 16px !important;color:black !important;">description</span></a>
                                        </li>
                                <?php do_action( 'wcmp_product_write_panel_tabs', $post->ID ); ?>
                            </ul>
                        </div>
                        <!-- Nav tabs End -->
 
                        <!-- Tab content start -->
                        <div class="tab-content">
                            <?php
                            $WCMp->template->get_template( 'vendor-dashboard/product-manager/views/html-product-data-general.php', array( 'self' => $self, 'product_object' => $product_object, 'post' => $post ) );
                            $WCMp->template->get_template( 'vendor-dashboard/product-manager/views/html-product-data-inventory.php', array( 'self' => $self, 'product_object' => $product_object, 'post' => $post ) );
                            if ( !apply_filters('wcmp_disabled_product_shipping_tab', true) || wcmp_is_allowed_vendor_shipping() ) {
                                $WCMp->template->get_template( 'vendor-dashboard/product-manager/views/html-product-data-shipping.php', array( 'self' => $self, 'product_object' => $product_object, 'post' => $post ) );
                            }
                            $WCMp->template->get_template( 'vendor-dashboard/product-manager/views/html-product-data-linked-products.php', array( 'self' => $self, 'product_object' => $product_object, 'post' => $post ) );
                            $WCMp->template->get_template( 'vendor-dashboard/product-manager/views/html-product-data-attributes.php', array( 'self' => $self, 'product_object' => $product_object, 'post' => $post ) );
                            do_action( 'wcmp_after_attribute_product_tabs_content', $self, $product_object, $post );
                            $WCMp->template->get_template( 'vendor-dashboard/product-manager/views/html-product-data-advanced.php', array( 'self' => $self, 'product_object' => $product_object, 'post' => $post ) );
                            ?>
                            <?php do_action( 'wcmp_product_tabs_content', $self, $product_object, $post ); ?>
                        </div>
                        <!-- Tab content End -->
                    </div>        
                    <!-- product Info Tab End -->

le problème c'est que le code m'affiche un tableaux avec des titres sur les quelles je doit cliquer pour afficher le contenu et moi je veux supprimer le tableaux et faire un affichage simple genre :
Produit
en dessous l'affichage correspondant
Quantite
l'affichage correspondant

et pareil pour description que sa soit toujours afficher une page classique en gros sans animation .
je vous remercie d'avance pour votre aide