ApplePay, GooglePay and Credit Cards fields not displayed on my checkout page
-
Hi ! Im creating my own store theme/website in full coded pages. Im about to finish but i got an issue with my payment gateways on my theme. Everything is set correctly in Payments Settings and it works perfectly with StoreFront. Im overriding some woocommerce files but even with no functions and with no override, the payment gateways are not showing up. I think this is caused by my index.php navigation, wich is direct :
<?php
if (is_shop()) {
// Page Boutique
include(‘shop.php’);
} elseif (is_product()) {
// Page Produit Individuel
include(‘wp-content/themes/httpsarchive/woocommerce/single-product.php’);
} elseif (is_page(‘creations’)) {
include(‘creations.php’);
} elseif (is_page(‘cgv’)) {
include(‘cgv.php’);
} elseif (is_page(‘pdc’)) {
include(‘pdc.php’);
} elseif (is_page(‘cart’)) {
include(‘wp-content/themes/httpsarchive/woocommerce/cart.php’);
} elseif (is_page(‘checkout’)) {
include(‘checkout.php’);
} else {
// Page d’accueil
include(‘front-page.php’);
}
?>
My shortcodes works only when I echo them with php, not in the wordpress page builder, it can be linked, idk. I have only Woocommerce and Woopayment activated, this is not a plugin conflict.I tried on Safari and Chrome, same issue. My site is https://www.httpsarchive.com, SSL activated and HTTPS too.
Im completely lost, thanks in advance,
Quentin.
The page I need help with: [log in to see the link]
- You must be logged in to reply to this topic.