Wordpress教程 2024年05月12日
0 收藏 0 点赞 516 浏览 888 个字
//Woocommerce 用自定义按钮/链接替换添加到购物车按钮(作用于列表页)
add_filter( 'woocommerce_loop_add_to_cart_link', 'replacing_add_to_cart_button', 10, 2 );
function replacing_add_to_cart_button( $button, $product  ) {
    $button_text = __("Inquiry For Pricelist", "woocommerce");
 //   $button = '<a class="button" href="' . $product->get_permalink() . '" rel="external nofollow" >' . $button_text . '</a>';
    $button = '<a class="button" style="width: 100%;" href="#####" rel="external nofollow" >' . $button_text . '</a>';

    return $button;
} 
//移除添加购物车按钮
remove_action( 'woocommerce_simple_add_to_cart', 'woocommerce_simple_add_to_cart', 30 );
//移除产品页面价格
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
//移除商店页面价格
remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );

add_Action('wp_head','my_head_css');
function my_head_css(){
echo "<style>

.product_meta>span {
    display: none!important;
}
.entry-summary .ct-share-box {
    display: none!important;
}
</style>
";}

 

微信扫一扫

支付宝扫一扫

版权: 转载请注明出处:https://www.mizhanw.com/blog/4910.html

相关推荐
实现 WordPress 自动更新所有文章的发布日期为当天的日期
//二开自动更新文章日期为当天发布。 //设置宝塔面板中的定时任务,通过访问带有?update_posts=run的链接触发文章更新.如:c…
日期:2024-09-22 点赞:0 阅读:46
WooCommerce订单列表显示购买产品
// 为 Legacy CPT-based 订单添加自定义列 add_filter('manage_edit-shop_order_colu…
日期:2024-09-20 点赞:0 阅读:99
WooCommerce Order 类的所有Get方法,以面向对象的方法获取订单数据
在开发WooCommerce插件或者与第三方系统交互时,我们需要获取 WooCommerce 订单的数据,WooCommerce的 WC_O…
日期:2024-09-20 点赞:0 阅读:56
为WooCommerce后台订单列表添加按自定义字段功能
  // 添加自定义列到订单列表 add_filter('manage_woocommerce_page_wc-orders_co…
日期:2024-09-20 点赞:0 阅读:60
添加删除 WooCommerce 数据列表中的数据列
转载:添加删除 WooCommerce 数据列表中的数据列 _WordPress智库 (wpzhiku.com) 在 WooCommerce…
日期:2024-09-20 点赞:0 阅读:71
WooCommerce的结账页面的订单摘要中,在商品数量后添加加减按钮
关于 WooCommerce 结账页面的定制内容在网上有大量讨论。为什么呢?因为结账页面无疑是任何 WooCommerce 网站的关键页面!…
日期:2024-08-11 点赞:0 阅读:126
发表评论
暂无评论

还没有评论呢,快来抢沙发~