WooCommerce 第3页

WooCommerce 输入数量更改时自动更新购物车

<?php add_action( 'wp_print_footer_scripts', function () { if ( ! function_exists( 'WC' ) ) return; if ( ! is_cart() ) return; ?> <script> jQuery && jQuery(($) => { l...
KEKC的头像-KEKC博客KEKC1年前
13012

将反转WooCommerce产品评论的显示顺序

function sd_newest_reviews_first( $args ) { $args['reverse_top_level'] = true; return $args; } add_filter( 'woocommerce_product_review_list_args', 'sd_newest_reviews_first' );
KEKC的头像-KEKC博客KEKC1年前
12613

空购物车的提示

add_filter('wfacp_cart_empty_message',function(){ $shop_url = get_permalink( wc_get_page_id( 'shop' ) ); return __( 'Your cart is currently empty.<a href='.$shop_url.'>Click Her...
KEKC的头像-KEKC博客KEKC1年前
6513

将《清除购物车按钮》添加到购物车页面和迷你购物车

代码: <?php // adds the button to the cart page add_action( 'woocommerce_cart_actions', 'woocommerce_empty_cart_button' ); function woocommerce_empty_cart_button() { echo '<...
KEKC的头像-KEKC博客KEKC1年前
23011

WooCommerce根据用户是登录还是注销来显示/隐藏产品。

PHP代码如下: <?php add_action( 'woocommerce_product_query', 'show_hide_products_category_shop' ); function show_hide_products_category_shop( $q ) { $tax_query = (array) $q->get...
KEKC的头像-KEKC博客KEKC1年前
20715

从数据库中删除所有WooCommerce产品

php代码: <?php require dirname(__FILE__).'/wp-blog-header.php'; $wpdb->query('DELETE FROM wp_terms WHERE term_id IN (SELECT term_id FROM wp_term_taxonomy WHERE taxonomy LIKE 'p...
KEKC的头像-KEKC博客KEKC1年前
1348

WooCommerce新建一个运输方式

代码来源官网: <?php /* Plugin Name: Your Shipping plugin Plugin URI: https://woocommerce.com/ Description: Your shipping method plugin Version: 1.0.0 Author: WooThemes Author U...
KEKC的头像-KEKC博客KEKC1年前
919

WooCommerce支付方式(支付网关)开发

官方文档:支付网关API - WooCommerce 示例插件代码1: <?php /** * Plugin Name: WooCommerce Invoice Gateway * Plugin URI: * Description: Clones the 'Cheque' gateway to create anoth...
KEKC的头像-KEKC博客KEKC1年前
1975

WooCommerce产品页浮动“添加到购物车(Add to cart)”按钮

当用户访问到产品页时,会滑动到下方查看商品的详情,这时就需要一个浮动的按钮,用来做个锚点或是直接点击购买。让用户随时能点击到一个购买按钮,提高用户转化率。 我是这样做的,应该是适应...
KEKC的头像-KEKC博客KEKC1年前
2613