Digital experiences for all disciplines
Forum Replies Created
-
Posted in: We hit Power Elite.
-
Hi again,
I have updated the woocomerce and activated the contact form 7 plugin and doesn’t appear again. The only way to see the checkout form is deactivated the contact form 7 plugin.
Do you recommended any alternative plugin to substitute the Contact Form 7 plugin?
Thanks for your help,
This reply has been marked as private.Hi,
I did it but doesn´t work. That´s my steps
1.- Deactivate the checkout page and save in the woocommerce checkout page
2.- Delete all the content in Checkout page
3.- Select the checkout page in woocommerce settings
4.- Try to see it but doesn’t work. Now I can’t see nothing.
5.- Copi the text [woocommerce_checkout] in the checkout page (in the HTML editor)
6.- Now I can see the checkout menu but not the content.I’m waiting your help.
Thanks a lot.
Do you need te admin credentials?
Hi,
I resolved doing 2 thinks:
1.- Desactivate the coments in the products (Woocommerce settings)
2.- Change the code in tabs.php:
<div class=”accordion-group”>
<div class=”accordion-heading”>
“>
<?php echo apply_filters( ‘woocommerce_product_’ . $key . ‘_tab_title’, esc_html( $tab[‘title’] ), $key ); ?>
</div>
<div id=”product-<?php echo esc_attr($key); ?>” class=”accordion-body collapse <?php echo $class; ?>”>
<div class=”accordion-inner”>
<?php call_user_func( $tab[‘callback’], $key, $tab ) ?>
</div>
</div>
</div>For this:
<div class=”accordion-group”>
<div class=”accordion-heading”>
“>
<?php echo apply_filters( ‘woocommerce_product_’ . $key . ‘_tab_title’, esc_html( $tab[‘title’] ), $key ); ?>
</div>
<div id=”product-<?php echo esc_attr($key); ?>” class=”accordion-body collapse”>
<div class=”accordion-inner”>
<?php call_user_func( $tab[‘callback’], $key, $tab ) ?>
</div>
</div>
</div> -
Posted in: We hit Power Elite.