定制结帐页面未显示结帐选项

时间:2018-09-29 07:31:01

标签: php wordpress woocommerce

我正在为销售2个可下载pdf的客户建立自定义主题。我已经添加了WooCommerce插件,并使用此简单代码创建了一个名为woocommerce.php的页面。

<section id="page-article">
  <!-- The page article -->
    <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
      <?php woocommerce_content(); ?>
    </article>
</section>

在我的functions.php页面中,我也有此代码...

    /*-------  WOOCOMMERCE SUPPORT  --------*/
function iSecured_add_woocommerce_support(){
  add_theme_support('woocommerce');
}
add_action('after_setup_theme', 'iSecured_add_woocommerce_support');

在woocommerce下>设置>高级 我的购物车和结帐页面都可以自动转到结帐,在购物车页面中,我添加了[woocommerce_checkout]短代码。

但是,在我添加产品后的购物车页面上,我所得到的只是这个...

enter image description here

没有选择输入地址或使用PayPal完全结帐的选项。我检查了错误日志,什么都没有显示。 有任何想法吗?预先感谢

0 个答案:

没有答案