php 从WPCasa中的属性搜索表单中删除“优惠”

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 从WPCasa中的属性搜索表单中删除“优惠”相关的知识,希望对你有一定的参考价值。

<?php
/**
 *	Remove 'Offer' from property search form in WPCasa
 *
 *	@param	array	Registered search fields
 *	@uses	wpsight_details()
 *	@return	array
 */
add_filter( 'wpsight_get_search_fields', 'wpsight_get_search_fields_offer_remove' );

function wpsight_get_search_fields_offer_remove( $fields ) {
	
	// Unset offer
	unset( $fields['offer'] );
	
	/**
	 * As we removed a field, we need to adjust the width
	 * of the other fields in the same row.
	 */
	
	// Get listing details
	$details = wpsight_details();
	
	$details_1 = $details['details_1']['id'];
	$details_2 = $details['details_2']['id'];
	
	$fields['location']['class'] = 'width-1-4';
	$fields['listing-type']['class'] = 'width-1-4';
	$fields[ $details_1 ]['class'] = 'width-1-4';
	$fields[ $details_2 ]['class'] = 'width-1-4';
	
	return $fields;
	
}

以上是关于php 从WPCasa中的属性搜索表单中删除“优惠”的主要内容,如果未能解决你的问题,请参考以下文章

php 删除要约字段并重新设置剩余字段的空间(对于WPCasa Bahia)

php 从单个产品页面以外的所有页面中删除优惠券通知。

如何在搜索表单上设置默认值?

php 如果在结账时使用优惠券,请删除WooCommerce中的免费送货服务

jQuery - 无法从复选框中删除选中的属性

从按钮引导程序 4 中删除禁用属性