本文整理汇总了PHP中gold_shpcrt_display_gallery函数的典型用法代码示例。如果您正苦于以下问题:PHP gold_shpcrt_display_gallery函数的具体用法?PHP gold_shpcrt_display_gallery怎么用?PHP gold_shpcrt_display_gallery使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了gold_shpcrt_display_gallery函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: wpsc_the_product_title
?>
" title="<?php
echo wpsc_the_product_title();
?>
"
src="<?php
echo etheme_get_image(false, $big_width, $big_height, false);
?>
"/>
</a>
<!--a class="lightbox-btn" href="assets/product-placeholder-big.png">Lightbox</a-->
</div>
<?php
if (function_exists('gold_shpcrt_display_gallery')) {
echo gold_shpcrt_display_gallery($product_id);
}
?>
<?php
$attachments = get_children(array('post_parent' => $product_id, 'post_status' => 'inherit', 'post_type' => 'attachment', 'post_mime_type' => 'image', 'numberposts' => -1, 'orderby' => 'menu_order', 'order' => 'ASC'));
if (count($attachments) > 1) {
?>
<div class="views-gallery">
<ul
class="slider <?php
if (count($attachments) > 4 && $product_layout == 'universal') {
?>
jcarousel-horizontal<?php
}
?>
示例2: wpsc_buy_now_button
?>
<?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="product_extra_<?php
echo wpsc_the_product_id();
?>
">
<input type="hidden" value="<?php
示例3: single_product_display
//.........这里部分代码省略.........
}
if (get_option('wpsc_selected_theme') != 'market3') {
$output .= " <p class='wpsc_product_price'>";
if ($product['donation'] == 1) {
$currency_sign_location = get_option('currency_sign_location');
$currency_type = get_option('currency_type');
$currency_symbol = $wpdb->get_var("SELECT `symbol_html` FROM `" . $wpdb->prefix . "currency_list` WHERE `id`='" . $currency_type . "' LIMIT 1");
$output .= " <label for='donation_price_" . $product['id'] . "'>" . TXT_WPSC_DONATION . ":</label> {$currency_symbol}<input type='text' id='donation_price_" . $product['id'] . "' name='donation_price' value='" . number_format($product['price'], 2) . "' size='6' /><br />";
} else {
if (get_option('wpsc_selected_theme') != 'market3') {
if ($product['special'] == 1 && $variations_output[1] === null) {
$output .= "<span class='oldprice'>" . TXT_WPSC_PRICE . ": " . nzshpcrt_currency_display($product['price'], $product['notax']) . "</span><br />";
$output .= TXT_WPSC_PRICE . ": " . nzshpcrt_currency_display($product['price'] - $product['special_price'], $product['notax'], false, $product['id']) . "<br />";
} else {
$output .= TXT_WPSC_PRICE . ": <span id='product_price_" . $product['id'] . "'>" . nzshpcrt_currency_display($product['price'], $product['notax']) . "</span><br />";
}
// if(get_option('display_pnp') == 1) {
// $output .= TXT_WPSC_PNP.": " . nzshpcrt_currency_display($product['pnp'], 1) . "<br />";
// }
}
}
$output .= "</p>\n\r";
}
if (function_exists('wpsc_theme_html')) {
$wpsc_theme = wpsc_theme_html($product);
}
$output .= "<input type='hidden' name='item' value='" . $product['id'] . "' />";
//AND (`quantity_limited` = '1' AND `quantity` > '0' OR `quantity_limited` = '0' )
if ($product['quantity_limited'] == 1 && $product['quantity'] < 1 && $variations_output[1] === null) {
if (get_option("wpsc_selected_theme") != 'market3') {
$output .= "<p class='soldout'>" . TXT_WPSC_PRODUCTSOLDOUT . "</p>";
}
} else {
if (get_option('hide_addtocart_button') != 1 && get_option('addtocart_or_buynow') == 0) {
if (isset($wpsc_theme) && is_array($wpsc_theme) && $wpsc_theme['html'] != '') {
$output .= $wpsc_theme['html'];
} else {
$output .= "<input type='submit' id='product_" . $product['id'] . "_submit_button' class='wpsc_buy_button' name='Buy' value='" . TXT_WPSC_ADDTOCART . "' />";
}
}
}
if (function_exists('gold_shpcrt_display_gallery')) {
$output .= gold_shpcrt_display_gallery($product['id']);
}
if (get_option('product_ratings') == 1) {
$output .= "<div class='product_footer'>";
$output .= "<div class='product_average_vote'>";
$output .= "<strong>" . TXT_WPSC_AVGCUSTREVIEW . ":</strong>";
$output .= nzshpcrt_product_rating($product['id']);
$output .= "</div>";
$output .= "<div class='product_user_vote'>";
$vote_output = nzshpcrt_product_vote($product['id'], "onmouseover='hide_save_indicator(\"saved_" . $product['id'] . "_text\");'");
if ($vote_output[1] == 'voted') {
$output .= "<strong><span id='rating_" . $product['id'] . "_text'>" . TXT_WPSC_YOURRATING . ":</span>";
$output .= "<span class='rating_saved' id='saved_" . $product['id'] . "_text'> " . TXT_WPSC_RATING_SAVED . "</span>";
$output .= "</strong>";
} else {
if ($vote_output[1] == 'voting') {
$output .= "<strong><span id='rating_" . $product['id'] . "_text'>" . TXT_WPSC_RATETHISITEM . ":</span>";
$output .= "<span class='rating_saved' id='saved_" . $product['id'] . "_text'> " . TXT_WPSC_RATING_SAVED . "</span>";
$output .= "</strong>";
}
}
$output .= $vote_output[0];
$output .= "</div>";
$output .= "</div>";
}
$output .= " </div>\n\r";
$output .= " </form>\n\r";
if (count($updatelink_data) > 0 && $updatelink_data[0]['meta_value'] != '') {
$output .= external_link($product['id']);
} else {
if (get_option('addtocart_or_buynow') == '1') {
if (get_option('payment_gateway') == 'google') {
$output .= google_buynow($product['id']);
} else {
if (get_option('payment_gateway') == 'paypal_multiple') {
$output .= "<form onsubmit='log_paypal_buynow(this)' target='paypal' action='" . get_option('paypal_multiple_url') . "' method='post'>\n\t\t\t\t\t\t\t<input type='hidden' name='business' value='" . get_option('paypal_multiple_business') . "'>\n\t\t\t\t\t\t\t<input type='hidden' name='cmd' value='_xclick'>\n\t\t\t\t\t\t\t<input type='hidden' name='item_name' value='" . $product['name'] . "'>\n\t\t\t\t\t\t\t<input type='hidden' id='item_number' name='item_number' value='" . $product['id'] . "'>\n\t\t\t\t\t\t\t<input type='hidden' id='amount' name='amount' value='" . $product['price'] . "'>\n\t\t\t\t\t\t\t<input type='hidden' id='unit' name='unit' value='" . $product['price'] . "'>\n\t\t\t\t\t\t\t<input type='hidden' id='shipping' name='ship11' value='" . $shipping . "'>\n\t\t\t\t\t\t\t<input type='hidden' name='handling' value='" . get_option('base_local_shipping') . "'>\n\t\t\t\t\t\t\t<input type='hidden' name='currency_code' value='" . get_option('paypal_curcode') . "'>\n\t\t\t\t\t\t\t<input type='hidden' name='undefined_quantity' value='0'>\n\t\t\t\t\t\t\t<input type='image' name='submit' border='0' src='https://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif' alt='PayPal - The safer, easier way to pay online'>\n\t\t\t\t\t\t\t<img alt='' border='0' width='1' height='1' src='https://www.paypal.com/en_US/i/scr/pixel.gif' >\n\t\t\t\t\t\t</form>\n\t\t\t\t\t";
}
}
}
}
$output .= " <form id='product_extra_" . $product['id'] . "' name='product_" . $product['id'] . "' method='post' action='" . get_option('product_list_url') . $seperator . "category=" . $_GET['category'] . "' onsubmit='submitform(this);return false;' >\n\r";
$output .= " <input type='hidden' name='prodid' value='" . $product['id'] . "' />\n\r";
$output .= " <input type='hidden' name='item' value='" . $product['id'] . "' />\n\r";
$output .= " </form>\n\r";
$output .= " </div>\n\r";
$output .= " </div>\n\r";
$output .= " <div class='clear'></div>\n\r";
}
$output .= wpsc_also_bought($product_id);
$output .= " </div>";
} else {
// otherwise, we have no product
$output .= "<p>" . TXT_WPSC_NOITEMSINTHIS . " " . $group_type . ".</p>";
}
// replace dollar signs with the HTML code so that PHP doesn't try to interpret them as variables.
$output = str_replace('$', '$', $output);
return $output;
}