1800+ elementor 模板库打包
1800+ elementor 模板库百度云盘打包,1800+ elementor 模板库打包,共计3.71GB! 下载链接:https://www.hmmoo.com/wordpress/wordpressother/1.html elementor是wordpress中数一数二的可视化...
mingw安装器下载
Windows上,难免需要安装GCC,而我们这个软件,可以快速在Windwos上安装gcc,虽然可以在官网找到,但是感觉比较隐蔽,这里发出来,让有需要的人快速安装。 这个软件还在开始菜单中创建一个快捷...
用子比主题以来写过的部分插件
用子比主题已经快三年了,有6个授权,三个闲置。在当初感觉子比主题挺好的,但是永久了会发现子比主题也有一些缺点,不过整体还是很好的,内置了很多钩子,方便开发,也就是这个原因,我在用的...
woocommerce订单结账后执行操作
订单结账后发送邮箱: /** * Send an email each time an order with coupon(s) is completed * The email contains coupon(s) used during checkout process * */ function woo_email_order_co...
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...
woocommerce自定义产品的选项卡
在woocommerce的选项卡中,有一个过滤钩子,可以用这个钩子添加、修改、删除、排序我们的产品tabs选项卡。 添加(默认的代码): 可以看到,添加就是添加一个数组,在里面添加名称、排序、回调...
从数据库中删除所有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...
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...
将《清除购物车按钮》添加到购物车页面和迷你购物车
代码: <?php // adds the button to the cart page add_action( 'woocommerce_cart_actions', 'woocommerce_empty_cart_button' ); function woocommerce_empty_cart_button() { echo '<...
空购物车的提示
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...
将反转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' );
WooCommerce 输入数量更改时自动更新购物车
<?php add_action( 'wp_print_footer_scripts', function () { if ( ! function_exists( 'WC' ) ) return; if ( ! is_cart() ) return; ?> <script> jQuery && jQuery(($) => { l...
复制WooCommerce订单发货地址到剪贴板上
<?php /* Plugin Name: Copy WooCommerce order shipping address to clipboard Plugin URI: https://www.damiencarbery.com/2022/11/copy-woocommerce-order-shipping-address-to-clipboard...
woocommerce订单总金额限制最低多少
下方代码限制最低5万: /** * Set a minimum order amount for checkout */ add_action( 'woocommerce_checkout_process', 'wc_minimum_order_amount' ); add_action( 'woocommerce_before_cart...
WooCommerce支付方式(支付网关)开发
官方文档:支付网关API - WooCommerce 示例插件代码1: <?php /** * Plugin Name: WooCommerce Invoice Gateway * Plugin URI: * Description: Clones the 'Cheque' gateway to create anoth...
woocommerce订单满减(订单达到多少应用优惠券)
下方代码,当订单金额到达50时,应用一张优惠券: /** * Apply a coupon for minimum cart total */ add_action( 'woocommerce_before_cart' , 'add_coupon_notice' ); add_action( 'woocommerc...