本文整理汇总了PHP中wpsc_is_shipping_details函数的典型用法代码示例。如果您正苦于以下问题:PHP wpsc_is_shipping_details函数的具体用法?PHP wpsc_is_shipping_details怎么用?PHP wpsc_is_shipping_details使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了wpsc_is_shipping_details函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: wpsc_the_checkout_details_class
/**
* returns the class for shipping and billing forms
* @access public
*
* @since 3.8
* @param $additional_classes (string) additional classes to be
* @return
*/
function wpsc_the_checkout_details_class($additional_classes = '')
{
if (wpsc_is_shipping_details()) {
echo "class='wpsc_shipping_forms " . $additional_classes . "'";
} else {
echo "class='wpsc_billing_forms " . $additional_classes . "'";
}
}
开发者ID:ashik968,项目名称:digiplot,代码行数:16,代码来源:checkout.php
示例2: wpsc_the_checkout_item_error_class
</td>
</tr>
<?php
}
?>
<?php
if (wpsc_checkout_form_is_header() == true) {
?>
<tr <?php
echo wpsc_the_checkout_item_error_class();
?>
>
<td <?php
if (wpsc_is_shipping_details()) {
echo "class='wpsc_shipping_forms'";
}
?>
colspan='2'>
<h4>
<?php
echo wpsc_checkout_form_name();
?>
</h4>
</td>
</tr>
<?php
} else {
?>
<?php
开发者ID:papayalabs,项目名称:htdocs,代码行数:30,代码来源:shopping_cart_page.php
示例3: wpsc_display_form_fields
/**
* wpsc_display_form_fields()
*
* This function displays each of the form fields.
*
*/
function wpsc_display_form_fields()
{
do_action('wpsc_start_display_user_log_form_fields');
$wpsc_checkout = wpsc_core_get_checkout();
$i = 0;
while (wpsc_have_checkout_items()) {
wpsc_the_checkout_item();
if (wpsc_checkout_form_is_header()) {
$i++;
// display headers for form fields
?>
<?php
if ($i > 1) {
?>
</table>
<table>
<?php
}
?>
<tr class="checkout-heading-row <?php
echo esc_attr(wpsc_the_checkout_item_error_class(false));
?>
">
<td <?php
wpsc_the_checkout_details_class();
?>
colspan='2'>
<h4><?php
echo esc_html(wpsc_checkout_form_name());
?>
</h4>
</td>
</tr>
<?php
if (wpsc_is_shipping_details()) {
?>
<tr class='same_as_shipping_row'>
<td colspan='2'>
<?php
$checked = '';
$shipping_same_as_billing = wpsc_get_customer_meta('shippingSameBilling');
if ($shipping_same_as_billing) {
$checked = 'checked="checked"';
}
?>
<label for='shippingSameBilling'>
<input type='checkbox'
value='true'
data-wpsc-meta-key="shippingSameBilling"
class="wpsc-visitor-meta"
name='shippingSameBilling'
id='shippingSameBilling' <?php
echo $checked;
?>
/>
<?php
_e('Same as billing address:', 'wp-e-commerce');
?>
</label>
<br>
<span id="shippingsameasbillingmessage"><?php
_e('Your orders will be shipped to the billing address', 'wp-e-commerce');
?>
</span>
</td>
</tr>
<?php
}
// Not a header so start display form fields
} elseif ($wpsc_checkout->checkout_item->unique_name == 'billingemail') {
?>
<?php
$email_markup = "<div class='wpsc_email_address'>\n <p class='" . wpsc_checkout_form_element_id() . "'>\n <label class='wpsc_email_address' for='" . wpsc_checkout_form_element_id() . "'>\n " . __('Enter your email address', 'wp-e-commerce') . "\n </label>\n <p class='wpsc_email_address_p'>\n <img src='https://secure.gravatar.com/avatar/empty?s=60&d=mm' id='wpsc_checkout_gravatar' />\n " . wpsc_checkout_form_field();
if (wpsc_the_checkout_item_error() != '') {
$email_markup .= "<p class='validation-error'>" . wpsc_the_checkout_item_error() . "</p>";
}
$email_markup .= "</div>";
} else {
?>
<tr>
<td class='<?php
echo wpsc_checkout_form_element_id();
?>
'>
<label
for='<?php
echo esc_attr(wpsc_checkout_form_element_id());
?>
'>
<?php
echo wpsc_checkout_form_name();
?>
//.........这里部分代码省略.........
开发者ID:ashik968,项目名称:digiplot,代码行数:101,代码来源:wpsc-user_log_functions.php
示例4: while
<table class='wpsc_checkout_table'>
<?php while (wpsc_have_checkout_items()) : wpsc_the_checkout_item(); ?>
<?php if(wpsc_is_shipping_details()) : ?>
<tr>
<td colspan ='2'>
<br />
<input type='checkbox' value='true' name='shippingSameBilling' id='shippingSameBilling' />
<label for='shippingSameBilling'>Shipping Address same as Billing Address?</label>
</td>
</tr>
<?php endif; ?>
<?php if(wpsc_checkout_form_is_header() == true) : ?>
<tr <?php echo wpsc_the_checkout_item_error_class();?>>
<td <?php if(wpsc_is_shipping_details()) echo "class='wpsc_shipping_forms'"; ?> colspan='2'>
<h4>
<?php echo wpsc_checkout_form_name();?>
</h4>
</td>
</tr>
<?php else: ?>
<?php if((!wpsc_uses_shipping()) && $wpsc_checkout->checkout_item->unique_name == 'shippingstate'): ?>
<?php else : ?>
<tr <?php echo wpsc_the_checkout_item_error_class();?>>
<td>
<label for='<?php echo wpsc_checkout_form_element_id(); ?>'>
<?php echo wpsc_checkout_form_name();?>
</label>
</td>
<td>
开发者ID:nerdfiles,项目名称:sideshowtramps.com,代码行数:31,代码来源:shopping_cart_page.php
示例5: wpsc_display_form_fields
/**
* wpsc_display_form_fields()
*
* This function displays each of the form fields.
*
*/
function wpsc_display_form_fields()
{
do_action('wpsc_start_display_user_log_form_fields');
$wpsc_checkout = wpsc_core_get_checkout();
$i = 0;
while (wpsc_have_checkout_items()) {
wpsc_the_checkout_item();
if (wpsc_checkout_form_is_header()) {
$i++;
// display headers for form fields
?>
<?php
if ($i > 1) {
?>
</table>
<table>
<?php
}
?>
<tr class="checkout-heading-row <?php
echo esc_attr(wpsc_the_checkout_item_error_class(false));
?>
">
<td <?php
wpsc_the_checkout_details_class();
?>
colspan='2'>
<h4><?php
echo esc_html(wpsc_checkout_form_name());
?>
</h4>
</td>
</tr>
<?php
if (wpsc_is_shipping_details()) {
?>
<tr class='same_as_shipping_row'>
<td colspan='2'>
<?php
$checked = '';
$shipping_same_as_billing = wpsc_get_customer_meta('shippingSameBilling');
if ($shipping_same_as_billing) {
$checked = 'checked="checked"';
}
?>
<label for='shippingSameBilling'>
<input type='checkbox'
value='true'
data-wpsc-meta-key="shippingSameBilling"
class="wpsc-visitor-meta"
name='shippingSameBilling'
id='shippingSameBilling' <?php
echo $checked;
?>
/>
<?php
_e('Same as billing address:', 'wp-e-commerce');
?>
</label>
<br>
<span id="shippingsameasbillingmessage"><?php
_e('Your orders will be shipped to the billing address', 'wp-e-commerce');
?>
</span>
</td>
</tr>
<?php
}
// Not a header so start display form fields
} else {
?>
<tr>
<td class='<?php
echo wpsc_checkout_form_element_id();
?>
'>
<label
for='<?php
echo esc_attr(wpsc_checkout_form_element_id());
?>
'>
<?php
echo wpsc_checkout_form_name();
?>
</label>
</td>
<td>
<?php
echo wpsc_checkout_form_field();
?>
<?php
if (wpsc_the_checkout_item_error() != '') {
//.........这里部分代码省略.........
开发者ID:benhuson,项目名称:WP-e-Commerce,代码行数:101,代码来源:wpsc-user_log_functions.php
注:本文中的wpsc_is_shipping_details函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论