Add product description under image product
-
Hello,
I’m trying to modify the emplacement for description tab (and others tabs like reviews …) under the image product.
You can see on my test site what I’m trying to do :
To do that, I have modified the file
wp-content\plugins\woo-variation-gallery\templates\product-images.php
I have added on line 140 :<div class="description-under-image"> <?php $tabs = apply_filters('woocommerce_product_tabs', array()); if (! empty($tabs)) : ?> <div class="woocommerce-tabs wc-tabs-wrapper"> <ul class="tabs wc-tabs" role="tablist"> <?php foreach ( $tabs as $key => $tab ) : ?> <li class="<?php echo esc_attr( $key ); ?>_tab" id="tab-title-<?php echo esc_attr( $key ); ?>" role="tab" aria-controls="tab-<?php echo esc_attr( $key ); ?>"><a href="#tab-<?php echo esc_attr( $key ); ?>"><?php echo apply_filters( 'woocommerce_product_' . $key . '_tab_title', esc_html( $tab['title'] ), $key ); ?></a> </li> <?php endforeach; ?> </ul> <?php foreach ( $tabs as $key => $tab ) : ?> <div class="woocommerce-Tabs-panel woocommerce-Tabs-panel--<?php echo esc_attr( $key ); ?> panel entry-content wc-tab" id="tab-<?php echo esc_attr( $key ); ?>" role="tabpanel" aria-labelledby="tab-title-<?php echo esc_attr( $key ); ?>"> <?php if ( isset( $tab['callback'] ) ) { call_user_func( $tab['callback'], $key, $tab ); } ?> </div> <?php endforeach; ?> </div> <?php endif; ?> </div>
I don’t know if I did it correctly, i’m new with wordpress. But the result is ok for me.
The problem is when the page is loaded, my description is hidden. I have to click on description and it appears :
The description (with default oceanwp) is shown automatically. Can you tell me what I should do to show the description when the page is loaded with the code I have added ?
Thanks for your help.
- The topic ‘Add product description under image product’ is closed to new replies.