本文整理汇总了PHP中wpsc_the_cart_item_key函数的典型用法代码示例。如果您正苦于以下问题:PHP wpsc_the_cart_item_key函数的具体用法?PHP wpsc_the_cart_item_key怎么用?PHP wpsc_the_cart_item_key使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了wpsc_the_cart_item_key函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: wpsc_cart_item_price
" name="submit"/>
</form>
</td>
<td><span class="pricedisplay"><?php
echo wpsc_cart_item_price();
?>
</span></td>
<td>
<form action="<?php
echo get_option('shopping_cart_url');
?>
" method="post" class="adjustform">
<input type="hidden" name="quantity" value="0"/>
<input type="hidden" name="key" value="<?php
echo wpsc_the_cart_item_key();
?>
"/>
<input type="hidden" name="wpsc_update_quantity" value="true"/>
<button class='remove_button' type="submit"><span><?php
echo TXT_WPSC_REMOVE;
?>
</span></button>
</form>
</td>
</tr>
<?php
}
?>
<?php
//this HTML displays coupons if there are any active coupons to use
开发者ID:papayalabs,项目名称:htdocs,代码行数:31,代码来源:shopping_cart_page.php
示例2: wpsc_the_variation_id
<option value="<?php echo wpsc_the_variation_id(); ?>"><?php echo wpsc_the_variation_name(); ?></option>
<?php endwhile; ?>
</select>
</p>
<?php endwhile; ?>
</div>
<?php /** the variation group HTML and loop ends here */?>
<?php if(wpsc_has_multi_adding()): ?>
<label class='wpsc_quantity_update' for='wpsc_quantity_update[<?php echo wpsc_the_product_id(); ?>]'><?php echo __('Quantity', 'wpsc'); ?>:</label>
+ <input type="text" id='wpsc_quantity_update[<?php echo wpsc_the_product_id(); ?>]' name="wpsc_quantity_update" size="2" value="1"/>
<input type="hidden" name="key" value="<?php echo wpsc_the_cart_item_key(); ?>"/>
<input type="hidden" name="wpsc_update_quantity" value="true"/>
<?php endif ;?>
<input type="hidden" value="add_to_cart" name="wpsc_ajax_action"/>
<input type="hidden" value="<?php echo wpsc_the_product_id(); ?>" name="product_id"/>
<?php if((get_option('hide_addtocart_button') == 0) && (get_option('addtocart_or_buynow') !='1')) : ?>
<?php if(wpsc_product_has_stock()) : ?>
<div class='wpsc_buy_button_container'>
<?php if(wpsc_product_external_link(wpsc_the_product_id()) != '') : ?>
<?php $action = wpsc_product_external_link(wpsc_the_product_id()); ?>
<input class="wpsc_buy_button" type='button' value='<?php echo __('Buy Now', 'wpsc'); ?>' onclick='gotoexternallink("<?php echo $action; ?>")'>
开发者ID:nerdfiles,项目名称:sideshowtramps.com,代码行数:31,代码来源:list_view.php
注:本文中的wpsc_the_cart_item_key函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论