2014-09-22 559 views
0

我正試圖在wordpress插件WooCommerce中移動pice的位置。在正常的產品中,它沒有問題,因爲你可以看到這裏:http://beta.gaumaya.sk/?product=produkts但在變量產品中,它幾乎是不可替代的,我現在試圖做幾個小時。這是它看起來如何http://beta.gaumaya.sk/?product=produkt我真的需要移動標題旁邊的價格。我的functions.php文件:add_action('woocommerce_single_product_summary_geril', 'woocommerce_template_single_title', 5);
add_action('woocommerce_single_product_summary_geril', 'woocommerce_template_single_price', 5);
add_action('woocommerce_single_product_summary_geril', 'woocommerce_output_product_data_tabs', 20);
add_action('woocommerce_single_product_summary_geril', 'woocommerce_template_single_add_to_cart', 30);
content-single-product.php:http://pastebin.com/2DZPnnfP。這個小東西怎麼能改變?WooCommerce價格頭寸 - 變量產品

回答

0

我會建議從您的主題中刪除您的content-product.php並恢復爲WooCommerce的默認模板。價格在默認情況下非常接近標題。

enter image description here

沒有必要創建自己的操作鉤do_action('woocommerce_single_product_summary_geril');?當你可以簡單地使用remove_action()解除你不想從現有鉤子中取出的功能?

相關問題