本文整理汇总了PHP中wpsc_product_rater函数的典型用法代码示例。如果您正苦于以下问题:PHP wpsc_product_rater函数的具体用法?PHP wpsc_product_rater怎么用?PHP wpsc_product_rater使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了wpsc_product_rater函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: __
<div class='wpsc_loading_animation'>
<img title="Loading" alt="Loading" src="<?php echo WPSC_URL ;?>/images/indicator.gif" class="loadingimage" />
<?php echo __('Updating cart...', 'wpsc'); ?>
</div>
<?php else : ?>
<p class='soldout'><?php echo __('This product has sold out.', 'wpsc'); ?></p>
<?php endif ; ?>
<?php endif ; ?>
</form>
<?php if((get_option('hide_addtocart_button') == 0) && (get_option('addtocart_or_buynow')=='1')) : ?>
<?php echo wpsc_buy_now_button(wpsc_the_product_id()); ?>
<?php endif ; ?>
<?php echo wpsc_product_rater(); ?>
<?php
if(function_exists('gold_shpcrt_display_gallery')) :
echo gold_shpcrt_display_gallery(wpsc_the_product_id());
endif;
echo wpsc_also_bought(wpsc_the_product_id());
?>
</div>
<form onsubmit="submitform(this);return false;" action="<?php echo wpsc_this_page_url(); ?>" method="post" name="product_<?php echo wpsc_the_product_id(); ?>" id="product_extra_<?php echo wpsc_the_product_id(); ?>">
<input type="hidden" value="<?php echo wpsc_the_product_id(); ?>" name="prodid"/>
<input type="hidden" value="<?php echo wpsc_the_product_id(); ?>" name="item"/>
</form>
开发者ID:nerdfiles,项目名称:sideshowtramps.com,代码行数:31,代码来源:single_product.php
示例2: wpsc_buy_now_button
}
?>
</form>
<?php
if (get_option('hide_addtocart_button') == 0 && get_option('addtocart_or_buynow') == '1') {
?>
<?php
echo wpsc_buy_now_button(wpsc_the_product_id());
?>
<?php
}
?>
<?php
echo wpsc_product_rater();
?>
<?php
if (function_exists('gold_shpcrt_display_gallery')) {
echo gold_shpcrt_display_gallery(wpsc_the_product_id());
}
?>
</div>
<form onsubmit="submitform(this);return false;" action="<?php
echo wpsc_this_page_url();
?>
" method="post" name="product_<?php
echo wpsc_the_product_id();
开发者ID:Jonathonbyrd,项目名称:wp-ecommerce,代码行数:31,代码来源:single_product.php
示例3: elseif
}
$html_content .= '</div>';
} elseif ($item_key == 'WPeC_sale_price') {
$html_content .= '<div class="element element_' . $item_id . ' ' . $item_key . '" >';
$is_product = get_post_type(get_the_ID());
$active_plugins = get_option('active_plugins');
if (in_array('wp-e-commerce/wp-shopping-cart.php', (array) $active_plugins) && $is_product == 'wpsc-product') {
$html_content .= wpsc_the_product_price();
}
$html_content .= '</div>';
} elseif ($item_key == 'WPeC_rating_star') {
$html_content .= '<div class="element element_' . $item_id . ' ' . $item_key . '" >';
$is_product = get_post_type(get_the_ID());
$active_plugins = get_option('active_plugins');
if (in_array('wp-e-commerce/wp-shopping-cart.php', (array) $active_plugins) && $is_product == 'wpsc-product') {
$html_content .= wpsc_product_rater();
}
$html_content .= '</div>';
} elseif ($item_key == 'WPeC_categories') {
$html_content .= '<div class="element element_' . $item_id . ' ' . $item_key . '" >';
$is_product = get_post_type(get_the_ID());
$active_plugins = get_option('active_plugins');
if (in_array('wp-e-commerce/wp-shopping-cart.php', (array) $active_plugins) && $is_product == 'wpsc-product') {
$term_list = wp_get_post_terms($post->ID, 'wpsc_product_category', array("fields" => "all"));
if ($term_list) {
$html_term = '';
foreach ($term_list as $term) {
$html_term .= '<a href="#">' . $term->name . '</a>, ';
//is the name of the price
}
}
开发者ID:brettratner,项目名称:TCNJ-IMM-Showcase-2016,代码行数:31,代码来源:layer-content.php
注:本文中的wpsc_product_rater函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论