php 除去-成因,简单的社交共享woocoomerce账户,endpoints.php

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 除去-成因,简单的社交共享woocoomerce账户,endpoints.php相关的知识,希望对你有一定的参考价值。

<?php
// do not repeat in your code -- that is don't paste this line in and read comments too.


add_action( 'genesis_loop', 'your_prefix_remove_genesis_simple_share_woo_pages', 0 );
/**
 * Remove Genesis Simple Share from WooCommerce (not product pages) 
 */
function your_prefix_remove_genesis_simple_share_woo_pages() {
	
	if ( ! class_exists( 'Gensis_Simple_Share_Front_End' )  && ! class_exists( 'WooCommerce' ) ) return;
	
	if( 
		is_cart() 
		|| is_checkout() 
		|| is_account_page() 
		|| is_wc_endpoint_url( 'order-pay' ) 
		|| is_wc_endpoint_url( 'order-received' ) 
		|| is_wc_endpoint_url( 'view-order' )
		|| is_wc_endpoint_url( 'edit-account' )
		|| is_wc_endpoint_url( 'edit-address' )
		|| is_wc_endpoint_url( 'lost-password' )
		|| is_wc_endpoint_url( 'customer-logout' )
		|| is_wc_endpoint_url( 'add-payment-method' )
	) :

		global $Genesis_Simple_Share;
		remove_action( 'genesis_loop', array( $Genesis_Simple_Share, 'start_icon_actions' ), 5  );
	
	endif;
}

以上是关于php 除去-成因,简单的社交共享woocoomerce账户,endpoints.php的主要内容,如果未能解决你的问题,请参考以下文章

php [将产品与社交共享插件集成]将社交共享插件与WooCommerce集成 - Sharedaddy

php [将产品与社交共享插件集成]将社交共享插件与WooCommerce集成 - Sharedaddy

php [将产品与社交共享插件集成]将社交共享插件与WooCommerce集成 - 分享此功能

php [将产品与社交共享插件集成]将社交共享插件与WooCommerce集成 - 分享此功能

php [将产品与社交共享插件集成]将社交共享插件与WooCommerce集成 - 分享此功能

社交网站部署——Nginx服务器+PHP服务器搭建+MySQL主从集群