我已經做了我的主題,與woocommerce兼容,通過創建woocommerce.php,在我functions.php文件是Woocommerce所有的JS和jQuery元素不加載
add_theme_support('woocommerce');
並增加了自定義函數這是我的woocommerce.php文件看起來像:現在
<?php
global $mandigo_options, $dirs;
get_header();
// heading level for page title (h1, h2, div, ...)
$tag_post_title_single = $mandigo_options['heading_level_post_title_single'];
?>
<td id="content" class="<?php echo ($mandigo_options['sidebar_always_show'] ? 'narrow' : 'wide'); ?>column"<?php if (mandigo_sidebox_conditions($single = true)) { ?> rowspan="2"<?php } ?>>
<div class="woocommerce">
<?php woocommerce_content(); ?>
</div>
</td>
<?php
// if we have at least one sidebar to display
if ($mandigo_options['sidebar_always_show'] && $mandigo_options['sidebar_count']) {
if (mandigo_sidebox_conditions($single = true))
include (TEMPLATEPATH . '/sidebox.php');
include (TEMPLATEPATH . '/sidebar.php');
// if this is a 3-column layout
if ($mandigo_options['layout_width'] == 1024 && $mandigo_options['sidebar_count'] == 2)
include (TEMPLATEPATH . '/sidebar2.php');
}
get_footer();
?>
一切都顯示正常,但我找不到添加到購物車按鈕,也都使用JavaScript或jQuery的不加載的元素。
我曾嘗試:
使用WordPress的JQuery更新
爲了把jQuery庫引用在header.php中
停用所有插件
我擁有w中所有必要元素的所有字段像價格這樣的電子商務領域,但很明顯這是一個JS或JQuery錯誤。
這裏是該網站的鏈接是產品頁面:
http://www.doctor-detail.com/product/gift-card-product-2
任何幫助,將不勝感激!