我仍然很擅长编写函数和PHP,所以请原谅我这很容易。让我提供一点背景......
我已经使用WPMUDev的MarketPress构建了一个电子商务网站,并尝试编写一个函数,根据所选的产品差异显示剩余库存。
在MarketPress中,如果您有多个产品的变体,例如衬衫(蓝色/黑色/白色)然后您指定一个产品有三个变化。在单个产品页面上,每个变体都有一个下拉框。
我到目前为止的代码只会找到初始产品的库存水平,而不是变体。请参阅以下内容:
function mp_product_stock_sc( $atts ){
global $post;
$product_id = $post->ID;
$stock = get_post_meta($product_id, 'mp_inventory', true);
$high_st = 1;
//return 'Default Stock: ' . $stock[0];
if ($stock[0] <= $high_st AND $stock[0] > 0 ) {
//return 'Hurry! We only have ' . $stock[0] . ' in stock!';
return 'Hurry! Only one left in stock!';
} elseif ($stock[0] == 0) {
return '';
} else {
return 'In Stock';
}
return 'Stock: ' . $stock[0];
}
add_shortcode( 'mp_product_stock', 'mp_product_stock_sc' );
我知道该函数正在选择$ stock [0]中的第一个变量,因为[0]是明确定义的。通过手动编写[1],它将选择下一个变体,依此类推。
我需要做的是,在产品变体下拉列表中,每个变体旁边都有一个股票,例如:
衬衫(蓝色) - 有库存
衬衫(黑色) - 快点只剩1个!
衬衫(白色) - 有货
我知道在哪里放置代码,而不是如何返回值。
任何建议都非常感谢。写这个也可能有更好的方法......
谢谢!
编辑:在生成下拉列表的代码下面添加。
//create select list if more than one variation
if (is_array($meta["mp_price"]) && count($meta["mp_price"]) > 1 && empty($meta["mp_file"])) {
$variation_select = '<select class="mp_product_variations" name="variation">';
foreach ($meta["mp_price"] as $key => $value) {
$disabled = (in_array($key, $no_inventory)) ? ' disabled="disabled"' : '';
$variation_select .= '<option value="' . $key . '"' . $disabled . '>' . esc_html($meta["mp_var_name"][$key]) . ' - ';
if ($meta["mp_is_sale"] && $meta["mp_sale_price"][$key]) {
$variation_select .= $mp->format_currency('', $meta["mp_sale_price"][$key]);
} else {
$variation_select .= $mp->format_currency('', $value);
}
$variation_select .= "</option>\n";
}
$variation_select .= "</select> \n";
} else {
$button .= '<input type="hidden" name="variation" value="0" />';
}
答案 0 :(得分:0)
这个答案是基于这样一个事实,即您有一个可以输入方法的物品代码:
编辑:我添加了Randomizer
方法,可以做两件事。 1)您可以将其设置为返回一个随机数,以检查$calltoaction
if语句是否正常工作(将Randomizer
中的第二个变量设置为true
而不是false
)和2)它将检查您的号码是否为数字,如果是,则将其返回。如果不是数字,则会返回“错误”字样。这意味着它不是一个数字。
class StockCheck
{
public static function Fetch($itemcode, $high_st = 1)
{
// Check your stock on this item code (I pressume this is what it's doing.
// If not, this is what it should to do.)
$stock = get_post_meta($itemcode, 'mp_inventory', true);
// Assign number. If randomizer set to true, it will just generate a random num
// to test the if statement below. Change to false to return true number
$_inStock = self::Randomizer($stock[0],false);
if($_inStock !== 'err') {
if($_inStock !== 0) {
// If stock is less than or equal to 10
if($_inStock <= 10)
$calltoaction = 'Hurry! Only '.$_inStock.' Left in Stock!';
// If stock is greater than 10 but less than or equal to 20
elseif($_inStock > 10 && $_inStock <= 20)
$calltoaction = 'Only a Few Left. Going fast!';
// Anthing else is just in stock
else
$calltoaction = 'In Stock';
}
// If zero, out of stock.
else
$calltoaction = 'Out of Stock, Sorry!';
}
return (isset($calltoaction))? $calltoaction:'Error: Stock value not numeric';
}
protected static function Randomizer($value = 0, $randomizer = false)
{
// If set to true, it will just generate a random number for testing purposes
$defVal = ($randomizer == true)? rand(0,30):$value;
// If $defVal is not a numeric, return "err"
return (is_numeric($defVal) || $defVal == 0)? $defVal:'err';
}
}
if(is_array($meta["mp_price"]) && count($meta["mp_price"]) > 1 && empty($meta["mp_file"])) {
$variation_select = '<select class="mp_product_variations" name="variation">';
foreach ($meta["mp_price"] as $key => $value) {
$disabled = (in_array($key, $no_inventory)) ? ' disabled="disabled"' : '';
$variation_select .= '<option value="' . $key . '"' . $disabled . '>' . esc_html($meta["mp_var_name"][$key]) . ' - ';
$variation_select .= ($meta["mp_is_sale"] && $meta["mp_sale_price"][$key])? $mp->format_currency('', $meta["mp_sale_price"][$key]): $mp->format_currency('', $value);
// This is where you would feed your item code...
$variation_select .= StockCheck::Fetch($meta["mp_itemcode"],1);
$variation_select .= "</option>\n";
}
$variation_select .= "</select> \n";
}
else
$button .= '<input type="hidden" name="variation" value="0" />';