Пример #1
0
/**
 * options presentation is the main function for displaying the WP-Admin : Settings > Presentation page
 * @access public
 *
 * @since 3.7
 * @param null
 * @return null
 */
function wpsc_options_presentation()
{
    global $wpdb;
    ?>

	<form name='cart_options' id='cart_options' method='post' action='' class='wpsc_form_track'>
		<div id="options_presentation">

		<?php 
    wpsc_settings_page_update_notification();
    ?>

		<div class='product_and_button_settings'>
			<h3 class="form_group"><?php 
    _e('Button Settings', 'wpsc');
    ?>
</h3>

			<table class='wpsc_options form-table'>
				<tr>
					<th scope="row"><?php 
    _e('Button Type', 'wpsc');
    ?>
:</th>
					<td>
						<?php 
    $addtocart_or_buynow = get_option('addtocart_or_buynow');
    $addtocart_or_buynow1 = "";
    $addtocart_or_buynow2 = "";
    switch ($addtocart_or_buynow) {
        case 0:
            $addtocart_or_buynow1 = "checked ='checked'";
            break;
        case 1:
            $addtocart_or_buynow2 = "checked ='checked'";
            break;
    }
    ?>
						<input type='radio' value='0' name='wpsc_options[addtocart_or_buynow]' id='addtocart_or_buynow1' <?php 
    echo $addtocart_or_buynow1;
    ?>
 />
						<label for='addtocart_or_buynow1'><?php 
    _e('Add To Cart', 'wpsc');
    ?>
</label> &nbsp;<br />			
				<?php 
    $selected_gateways = get_option('custom_gateway_options');
    $disable_buy_now = '';
    $message = '';
    if (!in_array('wpsc_merchant_paypal_standard', (array) $selected_gateways)) {
        $disable_buy_now = 'disabled="disabled"';
        $message = __('Buy Now Button only works for Paypal Standard, please activate Paypal Standard to enable this option.', 'wpsc');
    }
    ?>
						<input <?php 
    echo $disable_buy_now;
    ?>
 type='radio' value='1' name='wpsc_options[addtocart_or_buynow]' id='addtocart_or_buynow2' <?php 
    echo $addtocart_or_buynow2;
    ?>
 />
						<label for='addtocart_or_buynow2'><?php 
    _e('Buy Now', 'wpsc');
    ?>
</label><br />
						<?php 
    echo $message;
    ?>
					</td>
				</tr>

				<tr>
					<th scope="row"><?php 
    _e('Hide "Add to cart" button', 'wpsc');
    ?>
:	</th>
					<td>
						<?php 
    $hide_addtocart_button = get_option('hide_addtocart_button');
    $hide_addtocart_button1 = "";
    $hide_addtocart_button2 = "";
    switch ($hide_addtocart_button) {
        case 0:
            $hide_addtocart_button2 = "checked ='checked'";
            break;
        case 1:
            $hide_addtocart_button1 = "checked ='checked'";
            break;
    }
    ?>
						<input type='radio' value='1' name='wpsc_options[hide_addtocart_button]' id='hide_addtocart_button1' <?php 
    echo $hide_addtocart_button1;
    ?>
 /> 				<label for='hide_addtocart_button1'><?php 
    _e('Yes', 'wpsc');
    ?>
</label> &nbsp;
						<input type='radio' value='0' name='wpsc_options[hide_addtocart_button]' id='hide_addtocart_button2' <?php 
    echo $hide_addtocart_button2;
    ?>
 /> 				<label for='hide_addtocart_button2'><?php 
    _e('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>
			</table>

			<h3 class="form_group"><?php 
    _e('Product Settings', 'wpsc');
    ?>
</h3>

			<table class='wpsc_options form-table'>

				<tr>
					<th scope="row"><?php 
    _e('Show Product Ratings', 'wpsc');
    ?>
:</th>
					<td>
						<?php 
    $display_pnp = get_option('product_ratings');
    $product_ratings1 = "";
    $product_ratings2 = "";
    switch ($display_pnp) {
        case 0:
            $product_ratings2 = "checked ='checked'";
            break;
        case 1:
            $product_ratings1 = "checked ='checked'";
            break;
    }
    ?>
						<input type='radio' value='1' name='wpsc_options[product_ratings]' id='product_ratings1' <?php 
    echo $product_ratings1;
    ?>
 /> <label for='product_ratings1'><?php 
    _e('Yes', 'wpsc');
    ?>
</label> &nbsp;
						<input type='radio' value='0' name='wpsc_options[product_ratings]' id='product_ratings2' <?php 
    echo $product_ratings2;
    ?>
 /> <label for='product_ratings2'><?php 
    _e('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>
				<tr>
					<?php 
    $list_view_quantity_value1 = '';
    $list_view_quantity_value2 = '';
    if (get_option('list_view_quantity') == 1) {
        $list_view_quantity_value1 = 'checked="checked"';
    } else {
        $list_view_quantity_value2 = 'checked="checked"';
    }
    ?>
					<th score="row">
						<?php 
    _e('Show Stock Availability', 'wpsc');
    ?>
					</th>
					<td>
						<input type='radio' value='1' name='wpsc_options[list_view_quantity]' id='list_view_quantity1' <?php 
    echo $list_view_quantity_value1;
    ?>
 /> <label for='list_view_quantity1'><?php 
    _e('Yes', 'wpsc');
    ?>
</label> &nbsp;
						 <input type='radio' value='0' name='wpsc_options[list_view_quantity]' id='list_view_quantity2' <?php 
    echo $list_view_quantity_value2;
    ?>
 /> <label for='list_view_quantity2'><?php 
    _e('No', 'wpsc');
    ?>
</label> &nbsp;
					</td>
				</tr>
				<tr>
					<th scope="row">
						<?php 
    _e('Display Fancy Purchase Notifications', 'wpsc');
    ?>
:
					</th>
					<td>
						<?php 
    $fancy_notifications = get_option('fancy_notifications');
    $fancy_notifications1 = "";
    $fancy_notifications2 = "";
    switch ($fancy_notifications) {
        case 0:
            $fancy_notifications2 = "checked ='checked'";
            break;
        case 1:
            $fancy_notifications1 = "checked ='checked'";
            break;
    }
    ?>
						<input type='radio' value='1' name='wpsc_options[fancy_notifications]' id='fancy_notifications1' <?php 
    echo $fancy_notifications1;
    ?>
 /> <label for='fancy_notifications1'><?php 
    _e('Yes', 'wpsc');
    ?>
</label> &nbsp;
						<input type='radio' value='0' name='wpsc_options[fancy_notifications]' id='fancy_notifications2' <?php 
    echo $fancy_notifications2;
    ?>
 /> <label for='fancy_notifications2'><?php 
    _e('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>


				<tr>
					<th scope="row"><?php 
    _e('Display per item shipping', 'wpsc');
    ?>
:</th>
					<td>
						<?php 
    $display_pnp = get_option('display_pnp');
    $display_pnp1 = "";
    $display_pnp2 = "";
    switch ($display_pnp) {
        case 0:
            $display_pnp2 = "checked ='checked'";
            break;
        case 1:
            $display_pnp1 = "checked ='checked'";
            break;
    }
    ?>
						<input type='radio' value='1' name='wpsc_options[display_pnp]' id='display_pnp1' <?php 
    echo $display_pnp1;
    ?>
 /> <label for='display_pnp1'><?php 
    _e('Yes', 'wpsc');
    ?>
</label> &nbsp;
						<input type='radio' value='0' name='wpsc_options[display_pnp]' id='display_pnp2' <?php 
    echo $display_pnp2;
    ?>
 /> <label for='display_pnp2'><?php 
    _e('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>

				<tr>
					<th scope="row"><?php 
    _e('Disable link in Title', 'wpsc');
    ?>
:	</th>
					<td>
						<?php 
    $hide_name_link = get_option('hide_name_link');
    $hide_name_link1 = "";
    $hide_name_link2 = "";
    switch ($hide_name_link) {
        case 0:
            $hide_name_link2 = "checked ='checked'";
            break;
        case 1:
            $hide_name_link1 = "checked ='checked'";
            break;
    }
    ?>
						<input type='radio' value='1' name='wpsc_options[hide_name_link]' id='hide_name_link1' <?php 
    echo $hide_name_link1;
    ?>
 />
						<label for='hide_name_link1'><?php 
    _e('Yes', 'wpsc');
    ?>
</label> &nbsp;
						<input type='radio' value='0' name='wpsc_options[hide_name_link]' id='hide_name_link2' <?php 
    echo $hide_name_link2;
    ?>
 />
						<label for='hide_name_link2'><?php 
    _e('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>

				<tr>
					<th scope="row"><?php 
    _e('Add quantity field to each product description', 'wpsc');
    ?>
:</th>
					<td>
						<?php 
    $multi_adding = get_option('multi_add');
    switch ($multi_adding) {
        case 1:
            $multi_adding1 = "checked ='checked'";
            break;
        case 0:
            $multi_adding2 = "checked ='checked'";
            break;
    }
    ?>
						<input type='radio' value='1' name='wpsc_options[multi_add]' id='multi_adding1' <?php 
    if (isset($multi_adding1)) {
        echo $multi_adding1;
    }
    ?>
 />
						<label for='multi_adding1'><?php 
    _e('Yes', 'wpsc');
    ?>
</label> &nbsp;
						<input type='radio' value='0' name='wpsc_options[multi_add]' id='multi_adding2' <?php 
    if (isset($multi_adding2)) {
        echo $multi_adding2;
    }
    ?>
 />
						<label for='multi_adding2'><?php 
    _e('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>
			</table>
		</div>

		<?php 
    wpsc_theme_presentation_page_metabox();
    ?>

			<div style='clear:both;'></div>

			<h3 class="form_group"><?php 
    _e('Product Page Settings', 'wpsc');
    ?>
</h3>
			<table class='wpsc_options form-table'>
				<tr>
					<th scope="row"><?php 
    _e('Product Display', 'wpsc');
    ?>
:</th>
					<td>
					<?php 
    $display_pnp = get_option('product_view');
    $product_view1 = null;
    $product_view2 = null;
    $product_view3 = null;
    switch ($display_pnp) {
        case "grid":
            if (function_exists('product_display_grid')) {
                $product_view3 = "selected ='selected'";
                break;
            }
        case "list":
            if (function_exists('product_display_list')) {
                $product_view2 = "selected ='selected'";
                break;
            }
        default:
            $product_view1 = "selected ='selected'";
            break;
    }
    if (get_option('show_images_only') == 1) {
        $show_images_only_value = "checked='checked'";
    } else {
        $show_images_only_value = '';
    }
    if (get_option('display_variations') == 1) {
        $display_variations = "checked='checked'";
    } else {
        $display_variations = '';
    }
    if (get_option('display_description') == 1) {
        $display_description = "checked='checked'";
    } else {
        $display_description = '';
    }
    if (get_option('display_addtocart') == 1) {
        $display_addtocart = "checked='checked'";
    } else {
        $display_addtocart = '';
    }
    if (get_option('display_moredetails') == 1) {
        $display_moredetails = "checked='checked'";
    } else {
        $display_moredetails = '';
    }
    ?>
					<select name='wpsc_options[product_view]' onchange="toggle_display_options(this.options[this.selectedIndex].value)">
						<option value='default' <?php 
    echo $product_view1;
    ?>
><?php 
    _e('Default View', 'wpsc');
    ?>
</option>
<?php 
    if (function_exists('product_display_list')) {
        ?>
							<option value='list' <?php 
        echo $product_view2;
        ?>
><?php 
        _e('List View', 'wpsc');
        ?>
</option>
<?php 
    } else {
        ?>
							<option value='list' disabled='disabled' <?php 
        echo $product_view2;
        ?>
><?php 
        _e('List View', 'wpsc');
        ?>
</option>
						<?php 
    }
    if (function_exists('product_display_grid')) {
        ?>
							<option value='grid' <?php 
        echo $product_view3;
        ?>
><?php 
        _e('Grid View', 'wpsc');
        ?>
</option>
						<?php 
    } else {
        ?>
							<option value='grid' disabled='disabled' <?php 
        echo $product_view3;
        ?>
><?php 
        _e('Grid View', 'wpsc');
        ?>
</option>
						<?php 
    }
    ?>
						</select>
					<?php 
    if (!function_exists('product_display_grid')) {
        ?>
<a href='http://getshopped.org/extend/premium-upgrades'><?php 
        _e('Purchase unavailable options', 'wpsc');
        ?>
</a> <?php 
    }
    ?>
					
						<div id='grid_view_options' <?php 
    if (isset($list_view_quantity_style)) {
        echo $list_view_quantity_style;
    }
    ?>
 <?php 
    if (is_null($product_view3)) {
        echo "style='display:none;'";
    }
    ?>
>

									<input type='text'  name='wpsc_options[grid_number_per_row]' id='grid_number_per_row' size='1' value='<?php 
    esc_attr_e(get_option('grid_number_per_row'));
    ?>
' />
									<label for='grid_number_per_row'><?php 
    _e('Products Per Row', 'wpsc');
    ?>
</label><br />

									<input type='hidden' value='0' name='wpsc_options[show_images_only]' />
									<input type='checkbox' value='1' name='wpsc_options[show_images_only]' id='show_images_only' <?php 
    echo $show_images_only_value;
    ?>
 />
									<label for='show_images_only'><?php 
    _e('Show images only', 'wpsc');
    ?>
</label><br />

									<input type='hidden' value='0' name='wpsc_options[display_variations]' />
									<input type='checkbox' value='1' name='wpsc_options[display_variations]' id='display_variations' <?php 
    echo $display_variations;
    ?>
 />
									<label for='display_variations'><?php 
    _e('Display Variations', 'wpsc');
    ?>
</label><br />

									<input type='hidden' value='0' name='wpsc_options[display_description]' />
									<input type='checkbox' value='1' name='wpsc_options[display_description]' id='display_description' <?php 
    echo $display_description;
    ?>
 />
									<label for='display_description'><?php 
    _e('Display Description', 'wpsc');
    ?>
</label><br />

									<input type='hidden' value='0' name='wpsc_options[display_addtocart]' />
									<input type='checkbox' value='1' name='wpsc_options[display_addtocart]' id='display_addtocart' <?php 
    echo $display_addtocart;
    ?>
 />
									<label for='display_addtocart'><?php 
    _e('Display "Add To Cart" Button', 'wpsc');
    ?>
</label><br />

									<input type='hidden' value='0' name='wpsc_options[display_moredetails]' />
									<input type='checkbox' value='1' name='wpsc_options[display_moredetails]' id='display_moredetails' <?php 
    echo $display_moredetails;
    ?>
 />
									<label for='display_moredetails'><?php 
    _e('Display "More Details" Button', 'wpsc');
    ?>
</label>
								</div>
							</td>
						</tr>
					<?php 
    $selected1 = $selected2 = '';
    if (get_option('wpsc_display_categories')) {
        $selected1 = 'checked="checked"';
    } else {
        $selected2 = 'checked="checked"';
    }
    ?>
				<tr>
					<th scope="row"><?php 
    _e('Show list of categories', 'wpsc');
    ?>
</th>
					<td>
						<input type='radio' value='1' name='wpsc_options[wpsc_display_categories]' id='display_categories2' <?php 
    echo $selected1;
    ?>
 />						<label for='display_addtocart'><?php 
    _e('Yes', 'wpsc');
    ?>
</label>
						<input type='radio' value='0' name='wpsc_options[wpsc_display_categories]' id='display_categories1' <?php 
    echo $selected2;
    ?>
 />
						<label for='display_addtocart'><?php 
    _e('No', 'wpsc');
    ?>
</label><br />
					</td>
				</tr>
				
				<tr>
					<th scope="row"><?php 
    _e('Select what product category you want to display on the products page', 'wpsc');
    ?>
:</th>
					<td>
						<?php 
    echo options_categorylist();
    ?>
					</td>
				</tr>
			<?php 
    $wpsc_sort_by = get_option('wpsc_sort_by');
    switch ($wpsc_sort_by) {
        case 'name':
            $wpsc_sort_by1 = "selected ='selected'";
            break;
        case 'price':
            $wpsc_sort_by2 = "selected ='selected'";
            break;
        case 'dragndrop':
            $wpsc_sort_by4 = "selected='selected'";
            break;
        case 'id':
        default:
            $wpsc_sort_by3 = "selected ='selected'";
            break;
    }
    ?>
				<tr>
					<th scope="row">
						<?php 
    _e('Sort Product By', 'wpsc');
    ?>
:
					</th>
					<td>
						<select name='wpsc_options[wpsc_sort_by]'>
							<option <?php 
    if (isset($wpsc_sort_by1)) {
        echo $wpsc_sort_by1;
    }
    ?>
 value='name'><?php 
    _e('Name', 'wpsc');
    ?>
</option>
							<option <?php 
    if (isset($wpsc_sort_by2)) {
        echo $wpsc_sort_by2;
    }
    ?>
 value='price'><?php 
    _e('Price', 'wpsc');
    ?>
</option>
							<option <?php 
    if (isset($wpsc_sort_by4)) {
        echo $wpsc_sort_by4;
    }
    ?>
 value='dragndrop'><?php 
    _e('Drag &amp; Drop', 'wpsc');
    ?>
</option>
							<option <?php 
    if (isset($wpsc_sort_by3)) {
        echo $wpsc_sort_by3;
    }
    ?>
 value='id'><?php 
    _e('Time Uploaded', 'wpsc');
    ?>
</option>
						</select>
					</td>
				</tr>

				<tr>
					<th scope="row"><?php 
    _e('Show Breadcrumbs', 'wpsc');
    ?>
:</th>
					<td>
					<?php 
    $show_breadcrumbs = get_option('show_breadcrumbs');
    $show_breadcrumbs1 = "";
    $show_breadcrumbs2 = "";
    switch ($show_breadcrumbs) {
        case 0:
            $show_breadcrumbs2 = "checked ='checked'";
            break;
        case 1:
            $show_breadcrumbs1 = "checked ='checked'";
            break;
    }
    ?>
						<input type='radio' value='1' name='wpsc_options[show_breadcrumbs]' id='show_breadcrumbs1' <?php 
    echo $show_breadcrumbs1;
    ?>
 /> <label for='show_breadcrumbs1'><?php 
    _e('Yes', 'wpsc');
    ?>
</label> &nbsp;
						<input type='radio' value='0' name='wpsc_options[show_breadcrumbs]' id='show_breadcrumbs2' <?php 
    echo $show_breadcrumbs2;
    ?>
 /> <label for='show_breadcrumbs2'><?php 
    _e('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>



				<tr>
					<th scope="row">
					<?php 
    _e('Product Groups/Products Display', 'wpsc');
    ?>
:
					</th>
					<td>
					<?php 
    $display_pnp = get_option('catsprods_display_type');
    $catsprods_display_type1 = "";
    $catsprods_display_type2 = "";
    switch ($display_pnp) {
        case 0:
            $catsprods_display_type1 = "checked ='checked'";
            break;
        case 1:
            $catsprods_display_type2 = "checked ='checked'";
            break;
    }
    ?>
								<input type='radio' value='0' name='wpsc_options[catsprods_display_type]' id='catsprods_display_type1' <?php 
    echo $catsprods_display_type1;
    ?>
 /> <label for='catsprods_display_type1'><?php 
    _e('Product Groups Only (All products displayed)', 'wpsc');
    ?>
</label> &nbsp;
								<input type='radio' value='1' name='wpsc_options[catsprods_display_type]' id='catsprods_display_type2' <?php 
    echo $catsprods_display_type2;
    ?>
 /> <label for='catsprods_display_type2'><?php 
    _e('Sliding Product Groups (1 product per page)', 'wpsc');
    ?>
</label>
							</td>
						</tr>
						
						<tr>
							<th scope="row">
								<?php 
    echo __('Show Subcategory Products in Parent Category', 'wpsc');
    ?>
:
							</th>
							<td>
								<?php 
    $show_subcatsprods_in_cat = get_option('show_subcatsprods_in_cat');
    $show_subcatsprods_in_cat_on = '';
    $show_subcatsprods_in_cat_off = '';
    switch ($show_subcatsprods_in_cat) {
        case 1:
            $show_subcatsprods_in_cat_on = 'checked="checked"';
            break;
        case 0:
            $show_subcatsprods_in_cat_off = 'checked="checked"';
            break;
    }
    ?>
								<input type="radio" value="1" name="wpsc_options[show_subcatsprods_in_cat]" id="show_subcatsprods_in_cat_on" <?php 
    echo $show_subcatsprods_in_cat_on;
    ?>
 /> <label for="show_subcatsprods_in_cat_on"><?php 
    echo __('Yes', 'wpsc');
    ?>
</label> &nbsp;
								<input type="radio" value="0" name="wpsc_options[show_subcatsprods_in_cat]" id="show_subcatsprods_in_cat_off" <?php 
    echo $show_subcatsprods_in_cat_off;
    ?>
 /> <label for="show_subcatsprods_in_cat_off"><?php 
    echo __('No', 'wpsc');
    ?>
</label>
							</td>
						</tr>

					<?php 
    if (function_exists('gold_shpcrt_search_form')) {
        ?>
					<tr>
						<th scope="row"><?php 
        _e('Show Search', 'wpsc');
        ?>
:</th>
						<td>
					<?php 
        $display_pnp = get_option('show_search');
        $show_search1 = "";
        $show_search2 = "";
        switch ($display_pnp) {
            case 0:
                $show_search2 = "checked ='checked'";
                break;
            case 1:
                $show_search1 = "checked ='checked'";
                break;
        }
        $display_advanced_search = get_option('show_advanced_search');
        $show_advanced_search = "";
        if ($display_advanced_search == 1) {
            $show_advanced_search = "checked ='checked'";
        }
        $display_live_search = get_option('show_live_search');
        if ($display_live_search == 1) {
            $show_live_search = "checked ='checked'";
        } else {
            $show_live_search = "";
        }
        if ($show_search1 != "checked ='checked'") {
            $dis = "style='display:none;'";
        } else {
            $dis = "";
        }
        ?>
						<input type='radio' onclick='jQuery("#wpsc_advanced_search").show()' value='1' name='wpsc_options[show_search]' id='show_search1' <?php 
        echo $show_search1;
        ?>
 /> <label for='show_search1'><?php 
        _e('Yes', 'wpsc');
        ?>
</label> &nbsp;
						<input type='radio' onclick='jQuery("#wpsc_advanced_search").hide()' value='0' name='wpsc_options[show_search]' id='show_search2' <?php 
        echo $show_search2;
        ?>
 /> <label for='show_search2'><?php 
        _e('No', 'wpsc');
        ?>
</label>

						<div <?php 
        echo $dis;
        ?>
 id='wpsc_advanced_search'>
							<input  type='hidden' name='wpsc_options[show_advanced_search]' value='0' />
							<input  type='checkbox' name='wpsc_options[show_advanced_search]' id='show_advanced_search' <?php 
        echo $show_advanced_search;
        ?>
  value='1' />
							<?php 
        _e('Show Advanced Search', 'wpsc');
        ?>
<br />
							<input type='hidden' name='wpsc_options[show_live_search]' value='0' />
							<input type='checkbox' name='wpsc_options[show_live_search]' id='show_live_search' <?php 
        echo $show_live_search;
        ?>
 value='1' />
							<?php 
        _e('Use Live Search', 'wpsc');
        ?>
						</div>
					</td>
				</tr>
<?php 
    }
    ?>


				<tr>
					<th scope="row"><?php 
    _e('Replace Page Title With Product/Category Name', 'wpsc');
    ?>
:</th>
					<td>
					<?php 
    $wpsc_replace_page_title = get_option('wpsc_replace_page_title');
    $wpsc_replace_page_title1 = "";
    $wpsc_replace_page_title2 = "";
    switch ($wpsc_replace_page_title) {
        case 0:
            $wpsc_replace_page_title2 = "checked ='checked'";
            break;
        case 1:
            $wpsc_replace_page_title1 = "checked ='checked'";
            break;
    }
    ?>
						<input type='radio' value='1' name='wpsc_options[wpsc_replace_page_title]' id='wpsc_replace_page_title1' <?php 
    echo $wpsc_replace_page_title1;
    ?>
 /> <label for='wpsc_replace_page_title1'><?php 
    _e('Yes', 'wpsc');
    ?>
</label> &nbsp;
						<input type='radio' value='0' name='wpsc_options[wpsc_replace_page_title]' id='wpsc_replace_page_title2' <?php 
    echo $wpsc_replace_page_title2;
    ?>
 /> <label for='wpsc_replace_page_title2'><?php 
    _e('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>
					<tr>
					<th scope="row"><?php 
    _e('Display Featured Product above Product Pages', 'wpsc');
    ?>
:</th>
					<td>
					<?php 
    $wpsc_hide_featured_products = get_option('wpsc_hide_featured_products');
    $wpsc_hide_featured_products1 = "";
    $wpsc_hide_featured_products2 = "";
    switch ($wpsc_hide_featured_products) {
        case 0:
            $wpsc_hide_featured_products2 = "checked ='checked'";
            break;
        case 1:
        default:
            $wpsc_hide_featured_products1 = "checked ='checked'";
            break;
    }
    ?>
						<input type='radio' value='1' name='wpsc_options[wpsc_hide_featured_products]' id='wpsc_hide_featured_products1' <?php 
    echo $wpsc_hide_featured_products1;
    ?>
 /> <label for='wpsc_hide_featured_products1'><?php 
    _e('Yes', 'wpsc');
    ?>
</label> &nbsp;
						<input type='radio' value='0' name='wpsc_options[wpsc_hide_featured_products]' id='wpsc_hide_featured_products2' <?php 
    echo $wpsc_hide_featured_products2;
    ?>
 /> <label for='wpsc_hide_featured_products2'><?php 
    _e('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>
			</table>

			<h3 class="form_group"><?php 
    _e('Shopping Cart Settings', 'wpsc');
    ?>
</h3>
			<table class='wpsc_options form-table'>
				<tr>
					<th scope="row"><?php 
    _e('Cart Location', 'wpsc');
    ?>
:</th>
					<td>
					<?php 
    $cart_location = get_option('cart_location');
    $cart2 = "";
    $cart3 = "";
    $cart4 = "";
    $cart5 = "";
    switch ($cart_location) {
        case 2:
            $cart2 = "checked ='checked'";
            break;
        case 3:
            $cart3 = "checked ='checked'";
            break;
        case 4:
            $cart4 = "checked ='checked'";
            break;
        case 5:
            $cart5 = "checked ='checked'";
            break;
    }
    ?>
						<input type='radio' onclick='hideelement1("dropshop_option", this.value)' value='2' name='wpsc_options[cart_location]' id='cart2' <?php 
    echo $cart2;
    ?>
 /> <label for='cart2'><?php 
    _e('Page', 'wpsc');
    ?>
</label> &nbsp;
<?php 
    if (function_exists('wp_register_sidebar_widget')) {
        ?>
							<input type='radio' value='4' onclick='hideelement1("dropshop_option", this.value)' name='wpsc_options[cart_location]' id='cart4' <?php 
        echo $cart4;
        ?>
 /> <label for='cart4'><?php 
        _e('Widget', 'wpsc');
        ?>
</label> &nbsp;
					<?php 
    } else {
        ?>
							<input type='radio'  disabled='disabled' value='4' name='wpsc_options[cart_location]' id='cart4' alt='<?php 
        _e('You need to enable the widgets plugin to use this', 'wpsc');
        ?>
' title='<?php 
        _e('You need to enable the widgets plugin to use this', 'wpsc');
        ?>
' <?php 
        echo $cart4;
        ?>
 /> <label style='color: #666666;' for='cart4' title='<?php 
        _e('You need to enable the widgets plugin to use this', 'wpsc');
        ?>
'><?php 
        _e('Widget', 'wpsc');
        ?>
</label> &nbsp;
					<?php 
    }
    if (function_exists('drag_and_drop_cart_ajax')) {
        ?>
							<input type='radio' onclick='hideelement1("dropshop_option", this.value)' value='5' name='wpsc_options[cart_location]' id='cart5' <?php 
        echo $cart5;
        ?>
 /> <label for='cart5'><?php 
        _e('DropShop', 'wpsc');
        ?>
</label> &nbsp;
<?php 
    } else {
        ?>
							<input type='radio' disabled='disabled' value='5' name='wpsc_options[cart_location]' id='cart5' alt='<?php 
        _e('You need to enable the widgets plugin to use this', 'wpsc');
        ?>
' title='<?php 
        _e('You need to install the Gold and DropShop extentions to use this', 'wpsc');
        ?>
' <?php 
        if (isset($cart5)) {
            echo $cart5;
        }
        ?>
 /> <label style='color: #666666;' for='cart5' title='<?php 
        _e('You need to install the Gold and DropShop extentions to use this', 'wpsc');
        ?>
'><?php 
        _e('DropShop', 'wpsc');
        ?>
</label> &nbsp;
<?php 
    }
    ?>
						<input type='radio' onclick='hideelement1("dropshop_option", this.value)' value='3' name='wpsc_options[cart_location]' id='cart3' <?php 
    if (isset($cart3)) {
        echo $cart3;
    }
    ?>
 /> <label for='cart3'><?php 
    _e('Manual', 'wpsc');
    ?>
 <span style='font-size: 7pt;'>(PHP code: &lt;?php echo wpsc_shopping_cart(); ?&gt; )</span></label>
						<div  style='display: <?php 
    if (!empty($cart5)) {
        echo "block";
    } else {
        echo "none";
    }
    ?>
;'  id='dropshop_option'>
							<p>
								<input type="radio" id="drop1" value="all" <?php 
    if (get_option('dropshop_display') == 'all') {
        echo "checked='checked'";
    }
    ?>
 name="wpsc_options[dropshop_display]" /><label for="drop1"><?php 
    _e('Show Dropshop on every page', 'wpsc');
    ?>
</label>
								<input type="radio" id="drop2" value="product" <?php 
    if (get_option('dropshop_display') == 'product') {
        echo "checked='checked'";
    }
    ?>
 name="wpsc_options[dropshop_display]"/><label for="drop2"><?php 
    _e('Show Dropshop only on product page', 'wpsc');
    ?>
</label>
							</p>
							<p>
								<input type="radio" id="wpsc_dropshop_theme1" value="light" <?php 
    if (get_option('wpsc_dropshop_theme') != 'dark') {
        echo "checked='checked'";
    }
    ?>
 name="wpsc_options[wpsc_dropshop_theme]" /><label for="wpsc_dropshop_theme1"><?php 
    _e('Use light Dropshop style', 'wpsc');
    ?>
</label>
								<input type="radio" id="wpsc_dropshop_theme2" value="dark" <?php 
    if (get_option('wpsc_dropshop_theme') == 'dark') {
        echo "checked='checked'";
    }
    ?>
 name="wpsc_options[wpsc_dropshop_theme]"/><label for="wpsc_dropshop_theme2"><?php 
    _e('Use dark Dropshop style', 'wpsc');
    ?>
</label>
								<input type="radio" id="wpsc_dropshop_theme3" value="craftyc" <?php 
    if (get_option('wpsc_dropshop_theme') == 'craftyc') {
        echo "checked='checked'";
    }
    ?>
 name="wpsc_options[wpsc_dropshop_theme]"/><label for="wpsc_dropshop_theme2"><?php 
    _e('Crafty', 'wpsc');
    ?>
</label>

							</p>
						</div>
					</td>
				</tr>

				<tr>
					<th scope="row">
						<?php 
    _e('Display "+ Postage & Tax"', 'wpsc');
    ?>
:
					</th>
					<td>
<?php 
    $add_plustax = get_option('add_plustax');
    $add_plustax1 = "";
    $add_plustax2 = "";
    switch ($add_plustax) {
        case 0:
            $add_plustax2 = "checked ='checked'";
            break;
        case 1:
            $add_plustax1 = "checked ='checked'";
            break;
    }
    ?>
						<input type='radio' value='1' name='wpsc_options[add_plustax]' id='add_plustax1' <?php 
    echo $add_plustax1;
    ?>
 /> <label for='add_plustax1'><?php 
    _e('Yes', 'wpsc');
    ?>
</label> &nbsp;
						<input type='radio' value='0' name='wpsc_options[add_plustax]' id='add_plustax2' <?php 
    echo $add_plustax2;
    ?>
 /> <label for='add_plustax2'><?php 
    _e('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>
			</table>

			<h3 class="form_group"><?php 
    _e('Product Category Settings', 'wpsc');
    ?>
</h3>
			<table class='wpsc_options form-table'>

				<tr>
					<th scope="row"><?php 
    _e('Show Product Category Description', 'wpsc');
    ?>
:</th>
					<td>
<?php 
    $wpsc_category_description = get_option('wpsc_category_description');
    $wpsc_category_description1 = "";
    $wpsc_category_description2 = "";
    switch ($wpsc_category_description) {
        case '1':
            $wpsc_category_description1 = "checked ='checked'";
            break;
        case '0':
        default:
            $wpsc_category_description2 = "checked ='checked'";
            break;
    }
    ?>
						<input type='radio' value='1' name='wpsc_options[wpsc_category_description]' id='wpsc_category_description1' <?php 
    echo $wpsc_category_description1;
    ?>
 /> <label for='wpsc_category_description1'><?php 
    _e('Yes', 'wpsc');
    ?>
</label> &nbsp;
						<input type='radio' value='0' name='wpsc_options[wpsc_category_description]' id='wpsc_category_description2' <?php 
    echo $wpsc_category_description2;
    ?>
 /> <label for='wpsc_category_description2'><?php 
    _e('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>

				<tr>
					<th scope="row">
						<?php 
    _e('Show Product Category Thumbnails', 'wpsc');
    ?>
:
					</th>
					<td>
<?php 
    $show_category_thumbnails = get_option('show_category_thumbnails');
    $show_category_thumbnails1 = "";
    $show_category_thumbnails2 = "";
    switch ($show_category_thumbnails) {
        case 0:
            $show_category_thumbnails2 = "checked ='checked'";
            break;
        case 1:
            $show_category_thumbnails1 = "checked ='checked'";
            break;
    }
    ?>
						<input type='radio' value='1' name='wpsc_options[show_category_thumbnails]' id='show_category_thumbnails1' <?php 
    echo $show_category_thumbnails1;
    ?>
 /> <label for='show_category_thumbnails1'><?php 
    _e('Yes', 'wpsc');
    ?>
</label> &nbsp;
						<input type='radio' value='0' name='wpsc_options[show_category_thumbnails]' id='show_category_thumbnails2' <?php 
    echo $show_category_thumbnails2;
    ?>
 /> <label for='show_category_thumbnails2'><?php 
    _e('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>

				<!-- // Adrian - options for displaying number of products per category -->

				<tr>
					<th scope="row">
						<?php 
    _e('Show Product Count per Product Category', 'wpsc');
    ?>
:
					</th>
					<td>
<?php 
    $display_pnp = get_option('show_category_count');
    $show_category_count1 = "";
    $show_category_count2 = "";
    switch ($display_pnp) {
        case 0:
            $show_category_count2 = "checked ='checked'";
            break;
        case 1:
            $show_category_count1 = "checked ='checked'";
            break;
    }
    ?>
						<input type='radio' value='1' name='wpsc_options[show_category_count]' id='show_category_count1' <?php 
    echo $show_category_count1;
    ?>
 /> <label for='show_category_count1'><?php 
    _e('Yes', 'wpsc');
    ?>
</label> &nbsp;
						<input type='radio' value='0' name='wpsc_options[show_category_count]' id='show_category_count2' <?php 
    echo $show_category_count2;
    ?>
 /> <label for='show_category_count2'><?php 
    _e('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>

				<!-- // Adrian - options for displaying category display type -->

				<tr>
					<th scope="row"><?php 
    _e("Use Category Grid View", 'wpsc');
    ?>
:</th>
					<td>
<?php 
    $wpsc_category_grid_view = get_option('wpsc_category_grid_view');
    $wpsc_category_grid_view1 = "";
    $wpsc_category_grid_view2 = "";
    switch ($wpsc_category_grid_view) {
        case '1':
            $wpsc_category_grid_view1 = "checked ='checked'";
            break;
        case '0':
        default:
            $wpsc_category_grid_view2 = "checked ='checked'";
            break;
    }
    ?>
						<input type='radio' value='1' name='wpsc_options[wpsc_category_grid_view]' id='wpsc_category_grid_view1' <?php 
    echo $wpsc_category_grid_view1;
    ?>
 /> <label for='wpsc_category_grid_view1'><?php 
    _e('Yes', 'wpsc');
    ?>
</label> &nbsp;
						<input type='radio' value='0' name='wpsc_options[wpsc_category_grid_view]' id='wpsc_category_grid_view2' <?php 
    echo $wpsc_category_grid_view2;
    ?>
 /> <label for='wpsc_category_grid_view2'><?php 
    _e('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>
			</table>


			<h3 class="form_group"><a name='thumb_settings'><?php 
    _e('Thumbnail Settings', 'wpsc');
    ?>
</a></h3>
			<p><em><?php 
    _e('Note: Anytime you update any of the thumbnail settings, WPeC will automatically resize all of your thumbnails for you.  Depending on how many images you have, this could take awhile.', 'wpsc');
    ?>
</em></p>
			<table class='wpsc_options form-table'>
				<?php 
    if (function_exists("getimagesize")) {
        ?>
					<tr>
						<th scope="row"><?php 
        _e('Default Product Thumbnail Size', 'wpsc');
        ?>
:</th>
						<td>
							<?php 
        _e('Width', 'wpsc');
        ?>
:<input type='text' size='6' name='wpsc_options[product_image_width]' class='wpsc_prod_thumb_option' value='<?php 
        esc_attr_e(get_option('product_image_width'));
        ?>
' />
							<?php 
        _e('Height', 'wpsc');
        ?>
:<input type='text' size='6' name='wpsc_options[product_image_height]' class='wpsc_prod_thumb_option' value='<?php 
        esc_attr_e(get_option('product_image_height'));
        ?>
' />

						</td>
					</tr>
					<tr>
						<th scope="row">
							<?php 
        _e('Default Product Group Thumbnail Size', 'wpsc');
        ?>
:
						</th>
						<td>
							 <?php 
        _e('Width', 'wpsc');
        ?>
:<input type='text' size='6' name='wpsc_options[category_image_width]' value='<?php 
        esc_attr_e(get_option('category_image_width'));
        ?>
' />
							<?php 
        _e('Height', 'wpsc');
        ?>
:<input type='text' size='6' name='wpsc_options[category_image_height]' value='<?php 
        esc_attr_e(get_option('category_image_height'));
        ?>
' />
						</td>
					</tr>
					<tr>
						<th scope="row">
					<?php 
        _e('Single Product Image Size', 'wpsc');
        ?>
:
						</th>
						<td>
						<?php 
        _e('Width', 'wpsc');
        ?>
:<input type='text' size='6' name='wpsc_options[single_view_image_width]' value='<?php 
        esc_attr_e(get_option('single_view_image_width'));
        ?>
' />
						<?php 
        _e('Height', 'wpsc');
        ?>
:<input type='text' size='6' name='wpsc_options[single_view_image_height]' value='<?php 
        esc_attr_e(get_option('single_view_image_height'));
        ?>
' /> 
						</td>
					</tr>
					<tr>
								<th scope="row">
								<?php 
        $cropthumbs = get_option('wpsc_crop_thumbnails');
        $crop1 = "";
        $crop2 = "";
        switch ($cropthumbs) {
            case 0:
                $crop2 = "checked ='checked'";
                break;
            case 1:
                $crop1 = "checked ='checked'";
                break;
        }
        ?>
									<?php 
        _e("Crop Thumbnails", 'wpsc');
        ?>
:
								</th>
								<td>
											<input type='radio' value='1' name='wpsc_options[wpsc_crop_thumbnails]' id='wpsc_crop_thumbnails1' <?php 
        echo $crop1;
        ?>
 /> <label for='crop1'><?php 
        _e('Yes', 'wpsc');
        ?>
</label> &nbsp;
									<input type='radio' value='0' name='wpsc_options[wpsc_crop_thumbnails]' id='wpsc_crop_thumbnails2' <?php 
        echo $crop2;
        ?>
 /> <label for='crop2'><?php 
        _e('No', 'wpsc');
        ?>
</label><br />
									<?php 
        _e('Choosing "Yes" means that thumbnails are cropped to exact dimensions (normally thumbnails are proportional)', 'wpsc');
        ?>
								</td>
							</tr>
					<?php 
    }
    ?>

				<tr>
					<th scope="row"><?php 
    _e('Show Thumbnails', 'wpsc');
    ?>
:</th>
					<td>
<?php 
    $show_thumbnails = get_option('show_thumbnails');
    $show_thumbnails1 = "";
    $show_thumbnails2 = "";
    switch ($show_thumbnails) {
        case 0:
            $show_thumbnails2 = "checked ='checked'";
            break;
        case 1:
            $show_thumbnails1 = "checked ='checked'";
            break;
    }
    ?>
						<input type='radio' value='1' name='wpsc_options[show_thumbnails]' id='show_thumbnails1' <?php 
    echo $show_thumbnails1;
    ?>
 /> <label for='show_thumbnails1'><?php 
    _e('Yes', 'wpsc');
    ?>
</label> &nbsp;
						<input type='radio' value='0' name='wpsc_options[show_thumbnails]' id='show_thumbnails2' <?php 
    echo $show_thumbnails2;
    ?>
 /> <label for='show_thumbnails2'><?php 
    _e('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>
				<tr>
					<th scope="row"><?php 
    _e('Use Lightbox Effect for product images', 'wpsc');
    ?>
:</th>
					<td>
					<?php 
    $show_thumbnails_thickbox = get_option('show_thumbnails_thickbox');
    $show_thumbnails_thickbox1 = "";
    $show_thumbnails_thickbox2 = "";
    switch ($show_thumbnails_thickbox) {
        case 0:
            $show_thumbnails_thickbox2 = "checked ='checked'";
            break;
        case 1:
            $show_thumbnails_thickbox1 = "checked ='checked'";
            break;
    }
    ?>
						<input type='radio' value='1' name='wpsc_options[show_thumbnails_thickbox]' id='show_thumbnails_thickbox1' <?php 
    echo $show_thumbnails_thickbox1;
    ?>
 /> <label for='show_thumbnails_thickbox1'><?php 
    _e('Yes', 'wpsc');
    ?>
</label> &nbsp;
						<input type='radio' value='0' name='wpsc_options[show_thumbnails_thickbox]' id='show_thumbnails_thickbox2' <?php 
    echo $show_thumbnails_thickbox2;
    ?>
 /> <label for='show_thumbnails_thickbox2'><?php 
    _e('No', 'wpsc');
    ?>
</label><br />
					<?php 
    _e('Using lightbox means that when clicking on a product image, a larger version will be displayed in a "lightbox" style window. If you are using a plugin such as Shutter Reloaded, you may want to disable lightbox.', 'wpsc');
    ?>
					</td>
				</tr>
				<tr>
					<th scope="row"><?php 
    _e('Lightbox script to use', 'wpsc');
    ?>
:</th>
					<td>
					<?php 
    $wpsc_lightbox = get_option('wpsc_lightbox', 'thickbox');
    $wpsc_lightbox_thickbox1 = "";
    $wpsc_lightbox_thickbox2 = "";
    if ($wpsc_lightbox == "thickbox") {
        $wpsc_lightbox_thickbox2 = "checked ='checked'";
    }
    if ($wpsc_lightbox == "colorbox") {
        $wpsc_lightbox_thickbox1 = "checked ='checked'";
    }
    ?>
						<input type='radio' value='colorbox' name='wpsc_options[wpsc_lightbox]' id='wpsc_lightbox_thickbox1' <?php 
    echo $wpsc_lightbox_thickbox1;
    ?>
 /> <label for='show_thumbnails_thickbox1'><?php 
    _e('Colorbox', 'wpsc');
    ?>
</label> &nbsp;
						<input type='radio' value='thickbox' name='wpsc_options[wpsc_lightbox]' id='wpsc_lightbox_thickbox2' <?php 
    echo $wpsc_lightbox_thickbox2;
    ?>
 /> <label for='show_thumbnails_thickbox2'><?php 
    _e('Thickbox', 'wpsc');
    ?>
</label><br />
					</td>
				</tr>
				
					<?php 
    if (function_exists('gold_shpcrt_display_gallery')) {
        ?>
					<tr>
						<th scope="row">
					<?php 
        _e('Show Thumbnail Gallery', 'wpsc');
        ?>
:
						</th>
						<td>
<?php 
        $display_pnp = get_option('show_gallery');
        $show_gallery1 = "";
        $show_gallery2 = "";
        switch ($display_pnp) {
            case 0:
                $show_gallery2 = "checked ='checked'";
                break;
            case 1:
                $show_gallery1 = "checked ='checked'";
                break;
        }
        ?>
									<input type='radio' value='1' name='wpsc_options[show_gallery]' id='show_gallery1' <?php 
        echo $show_gallery1;
        ?>
 /> <label for='show_gallery1'><?php 
        _e('Yes', 'wpsc');
        ?>
</label> &nbsp;
									<input type='radio' value='0' name='wpsc_options[show_gallery]' id='show_gallery2' <?php 
        echo $show_gallery2;
        ?>
 /> <label for='show_gallery2'><?php 
        _e('No', 'wpsc');
        ?>
</label>
								</td>
							</tr>

							<tr>
								<th scope="row">
									<?php 
        _e("Gallery Thumbnail Image Size", 'wpsc');
        ?>
:
								</th>
								<td>
									<?php 
        _e('Width', 'wpsc');
        ?>
:<input type='text' size='6' name='wpsc_options[wpsc_gallery_image_width]' value='<?php 
        esc_attr_e(get_option('wpsc_gallery_image_width'));
        ?>
' /> 
									<?php 
        _e('Height', 'wpsc');
        ?>
:<input type='text' size='6' name='wpsc_options[wpsc_gallery_image_height]' value='<?php 
        esc_attr_e(get_option('wpsc_gallery_image_height'));
        ?>
' /><br />

								</td>
							</tr>
					
					<?php 
    }
    ?>
						</table>


			<h3 class="form_group"><?php 
    _e('Pagination settings', 'wpsc');
    ?>
</h3>
			<table class='wpsc_options form-table'>
				<tr>
					<th scope="row">
					<?php 
    _e('Use Pagination', 'wpsc');
    ?>
:
					</th>
					<td>
<?php 
    $use_pagination = get_option('use_pagination');
    $use_pagination1 = "";
    $use_pagination2 = "";
    switch ($use_pagination) {
        case 0:
            $use_pagination2 = "checked ='checked'";
            $page_count_display_state = 'style=\'display: none;\'';
            break;
        case 1:
            $use_pagination1 = "checked ='checked'";
            $page_count_display_state = '';
            break;
    }
    ?>
						<input onclick='jQuery("#wpsc_products_per_page").show()'  type='radio' value='1' name='wpsc_options[use_pagination]' id='use_pagination1' <?php 
    echo $use_pagination1;
    ?>
 /> <label for='use_pagination1'><?php 
    _e('Yes', 'wpsc');
    ?>
</label> &nbsp;
						<input onclick='jQuery("#wpsc_products_per_page").hide()' type='radio' value='0' name='wpsc_options[use_pagination]' id='use_pagination2' <?php 
    echo $use_pagination2;
    ?>
 /> <label for='use_pagination2'><?php 
    _e('No', 'wpsc');
    ?>
</label><br />
						<div id='wpsc_products_per_page' <?php 
    echo $page_count_display_state;
    ?>
 >
							<input type='text' size='6' name='wpsc_options[wpsc_products_per_page]' value='<?php 
    echo get_option('wpsc_products_per_page');
    ?>
' /> <?php 
    _e('number of products to show per page', 'wpsc');
    ?>
						</div>
					</td>
				</tr>

				<tr>
					<th scope="row">
					<?php 
    _e('Page Number position', 'wpsc');
    ?>
:
					</th>
					<td>
						<input type='radio' value='1' name='wpsc_options[wpsc_page_number_position]' id='wpsc_page_number_position1' <?php 
    if (get_option('wpsc_page_number_position') == 1) {
        echo "checked='checked'";
    }
    ?>
 />&nbsp;<label for='wpsc_page_number_position1'><?php 
    _e('Top', 'wpsc');
    ?>
</label> &nbsp;
						<input type='radio' value='2' name='wpsc_options[wpsc_page_number_position]' id='wpsc_page_number_position2' <?php 
    if (get_option('wpsc_page_number_position') == 2) {
        echo "checked='checked'";
    }
    ?>
 />&nbsp;<label for='wpsc_page_number_position2'><?php 
    _e('Bottom', 'wpsc');
    ?>
</label>&nbsp;
						<input type='radio' value='3' name='wpsc_options[wpsc_page_number_position]' id='wpsc_page_number_position3' <?php 
    if (get_option('wpsc_page_number_position') == 3) {
        echo "checked='checked'";
    }
    ?>
 />&nbsp;<label for='wpsc_page_number_position3'><?php 
    _e('Both', 'wpsc');
    ?>
</label>
						<br />
					</td>
				</tr>
			</table>


			<h3 class="form_group"><?php 
    _e('Comment Settings', 'wpsc');
    ?>
</h3>
			<table class='wpsc_options form-table'>
				<tr>
					<th scope="row">
						<?php 
    _e('Use IntenseDebate Comments', 'wpsc');
    ?>
:
						<a href="http://intensedebate.com/" title="IntenseDebate comments enhance and encourage conversation on your blog or website" target="_blank"><img src="<?php 
    echo WPSC_CORE_IMAGES_URL;
    ?>
/intensedebate-logo.png" alt="intensedebate-logo" title="IntenseDebate"/></a>
					</th>
					<td>
<?php 
    $enable_comments = get_option('wpsc_enable_comments');
    $enable_comments1 = "";
    $enable_comments2 = "";
    switch ($enable_comments) {
        case 1:
            $enable_comments1 = "checked ='checked'";
            $intense_debate_account_id_display_state = '';
            break;
        default:
        case 0:
            $enable_comments2 = "checked ='checked'";
            $intense_debate_account_id_display_state = 'style=\'display: none;\'';
            break;
    }
    ?>
					<input onclick='jQuery("#wpsc_enable_comments,.wpsc_comments_details").show()'  type='radio' value='1' name='wpsc_options[wpsc_enable_comments]' id='wpsc_enable_comments1' <?php 
    echo $enable_comments1;
    ?>
 /> <label for='wpsc_enable_comments1'><?php 
    _e('Yes', 'wpsc');
    ?>
</label> &nbsp;
					<input onclick='jQuery("#wpsc_enable_comments,.wpsc_comments_details").hide()' type='radio' value='0' name='wpsc_options[wpsc_enable_comments]' id='wpsc_enable_comments2' <?php 
    echo $enable_comments2;
    ?>
 /> <label for='wpsc_enable_comments1'><?php 
    _e('No', 'wpsc');
    ?>
</label><br />
					<div id='wpsc_enable_comments' <?php 
    echo $intense_debate_account_id_display_state;
    ?>
 >
						<?php 
    _e('IntenseDebate Account ID', 'wpsc');
    ?>
:<br/>
						<input type='text' size='30' name='wpsc_options[wpsc_intense_debate_account_id]' value='<?php 
    esc_attr_e(get_option('wpsc_intense_debate_account_id'));
    ?>
' /><br/>
						<small><a href='http://intensedebate.com/sitekey/' title='Help finding the Account ID'><?php 
    _e('Help on finding the Account ID', 'wpsc');
    ?>
</a></small>
					</div>
				</td>
			</tr>

			<tr>

				<th scope="row">
					<div class='wpsc_comments_details' <?php 
    echo $intense_debate_account_id_display_state;
    ?>
 >
						<?php 
    _e('By Default Display Comments on', 'wpsc');
    ?>
:
					</div>
				</th>
				<td>
					<div class='wpsc_comments_details' <?php 
    echo $intense_debate_account_id_display_state;
    ?>
 >
									<input type='radio' value='1' name='wpsc_options[wpsc_comments_which_products]' id='wpsc_comments_which_products1' <?php 
    if (get_option('wpsc_comments_which_products') == 1 || !get_option('wpsc_comments_which_products')) {
        echo "checked='checked'";
    }
    ?>
 /><label for='wpsc_comments_which_products1'><?php 
    _e('All Products', 'wpsc');
    ?>
</label>&nbsp;
									<input type='radio' value='2' name='wpsc_options[wpsc_comments_which_products]' id='wpsc_comments_which_products2' <?php 
    if (get_option('wpsc_comments_which_products') == 2) {
        echo "checked='checked'";
    }
    ?>
 /><label for='wpsc_comments_which_products2'><?php 
    _e('Per Product', 'wpsc');
    ?>
</label>&nbsp;
						<br />
					</div>
				</td>

			</tr>
		</table>

		<?php 
    do_action('wpsc_presentation_settings_page');
    ?>
		<div class="submit">
			<input type='hidden' name='wpsc_admin_action' value='submit_options' />
			<?php 
    wp_nonce_field('update-options', 'wpsc-update-options');
    ?>
			<input type="submit" value="<?php 
    _e('Update &raquo;', 'wpsc');
    ?>
" name="updateoption" />
		</div>
	</div>
</form>
<?php 
}
Пример #2
0
function wpsc_options_presentation()
{
    global $wpdb;
    ?>
<form name='cart_options' id='cart_options' method='post' action=''>
	<div id="options_presentation">
		<h2><?php 
    echo TXT_WPSC_OPTIONS_PRESENTATION_HEADER;
    ?>
</h2>
		<?php 
    /* wpsc_setting_page_update_notification displays the wordpress styled notifications */
    wpsc_settings_page_update_notification();
    ?>
		
		<div class='product_and_button_settings'>
			<h3 class="form_group"><?php 
    echo TXT_WPSC_BUTTON_SETTINGS;
    ?>
</h3>
			
			<table class='wpsc_options form-table'>		
				<tr>
				<th scope="row"><?php 
    echo TXT_WPSC_BUTTONTYPE;
    ?>
:</th>
				<td>
				<?php 
    $addtocart_or_buynow = get_option('addtocart_or_buynow');
    $addtocart_or_buynow1 = "";
    $addtocart_or_buynow2 = "";
    switch ($addtocart_or_buynow) {
        case 0:
            $addtocart_or_buynow1 = "checked ='checked'";
            break;
        case 1:
            $addtocart_or_buynow2 = "checked ='checked'";
            break;
    }
    ?>
					<input type='radio' value='0' name='wpsc_options[addtocart_or_buynow]' id='addtocart_or_buynow1' <?php 
    echo $addtocart_or_buynow1;
    ?>
 /> 
					<label for='addtocart_or_buynow1'><?php 
    echo TXT_WPSC_ADDTOCART;
    ?>
</label> &nbsp;<br />
					<input type='radio' value='1' name='wpsc_options[addtocart_or_buynow]' id='addtocart_or_buynow2' <?php 
    echo $addtocart_or_buynow2;
    ?>
 /> 
					<label for='addtocart_or_buynow2'><?php 
    echo TXT_WPSC_BUYNOW;
    ?>
</label>
				</td>
			</tr>
			
			<tr>      
				<th scope="row"><?php 
    echo TXT_WPSC_HIDEADDTOCARTBUTTON;
    ?>
:	</th>
				<td>
				<?php 
    $hide_addtocart_button = get_option('hide_addtocart_button');
    $hide_addtocart_button1 = "";
    $hide_addtocart_button2 = "";
    switch ($hide_addtocart_button) {
        case 0:
            $hide_addtocart_button2 = "checked ='checked'";
            break;
        case 1:
            $hide_addtocart_button1 = "checked ='checked'";
            break;
    }
    ?>
					<input type='radio' value='1' name='wpsc_options[hide_addtocart_button]' id='hide_addtocart_button1' <?php 
    echo $hide_addtocart_button1;
    ?>
 /> 				<label for='hide_addtocart_button1'><?php 
    echo TXT_WPSC_YES;
    ?>
</label> &nbsp;
					<input type='radio' value='0' name='wpsc_options[hide_addtocart_button]' id='hide_addtocart_button2' <?php 
    echo $hide_addtocart_button2;
    ?>
 /> 				<label for='hide_addtocart_button2'><?php 
    echo TXT_WPSC_NO;
    ?>
</label>
				</td>
			</tr>
			</table>
			
			
			
			
			<h3 class="form_group"><?php 
    echo TXT_WPSC_PRODUCT_DISPLAY_SETTINGS;
    ?>
</h3>
			
			<table class='wpsc_options form-table'>		
						
				<tr>
					<th scope="row"><?php 
    echo TXT_WPSC_SHOWPRODUCTRATINGS;
    ?>
:</th>
					<td>
					<?php 
    $display_pnp = get_option('product_ratings');
    $product_ratings1 = "";
    $product_ratings2 = "";
    switch ($display_pnp) {
        case 0:
            $product_ratings2 = "checked ='checked'";
            break;
        case 1:
            $product_ratings1 = "checked ='checked'";
            break;
    }
    ?>
					<input type='radio' value='1' name='wpsc_options[product_ratings]' id='product_ratings1' <?php 
    echo $product_ratings1;
    ?>
 /> <label for='product_ratings1'><?php 
    echo TXT_WPSC_YES;
    ?>
</label> &nbsp;
					<input type='radio' value='0' name='wpsc_options[product_ratings]' id='product_ratings2' <?php 
    echo $product_ratings2;
    ?>
 /> <label for='product_ratings2'><?php 
    echo TXT_WPSC_NO;
    ?>
</label>
					</td>
				</tr>
			
				<tr>
					<th scope="row">
					<?php 
    echo TXT_WPSC_DISPLAY_FANCY_NOTIFICATIONS;
    ?>
:
					</th>
					<td>
					<?php 
    $fancy_notifications = get_option('fancy_notifications');
    $fancy_notifications1 = "";
    $fancy_notifications2 = "";
    switch ($fancy_notifications) {
        case 0:
            $fancy_notifications2 = "checked ='checked'";
            break;
        case 1:
            $fancy_notifications1 = "checked ='checked'";
            break;
    }
    ?>
					<input type='radio' value='1' name='wpsc_options[fancy_notifications]' id='fancy_notifications1' <?php 
    echo $fancy_notifications1;
    ?>
 /> <label for='fancy_notifications1'><?php 
    echo TXT_WPSC_YES;
    ?>
</label> &nbsp;
					<input type='radio' value='0' name='wpsc_options[fancy_notifications]' id='fancy_notifications2' <?php 
    echo $fancy_notifications2;
    ?>
 /> <label for='fancy_notifications2'><?php 
    echo TXT_WPSC_NO;
    ?>
</label>
					</td>
				</tr>  
			
						
				<tr>
					<th scope="row"><?php 
    echo TXT_WPSC_SHOWPOSTAGEANDPACKAGING;
    ?>
:</th>
					<td>
					<?php 
    $display_pnp = get_option('display_pnp');
    $display_pnp1 = "";
    $display_pnp2 = "";
    switch ($display_pnp) {
        case 0:
            $display_pnp2 = "checked ='checked'";
            break;
        case 1:
            $display_pnp1 = "checked ='checked'";
            break;
    }
    ?>
					<input type='radio' value='1' name='wpsc_options[display_pnp]' id='display_pnp1' <?php 
    echo $display_pnp1;
    ?>
 /> <label for='display_pnp1'><?php 
    echo TXT_WPSC_YES;
    ?>
</label> &nbsp;
					<input type='radio' value='0' name='wpsc_options[display_pnp]' id='display_pnp2' <?php 
    echo $display_pnp2;
    ?>
 /> <label for='display_pnp2'><?php 
    echo TXT_WPSC_NO;
    ?>
</label>
					</td>
				</tr>
						
				<tr>      
					<th scope="row"><?php 
    echo TXT_WPSC_HIDEADDNAMELINK;
    ?>
:	</th>
					<td>
					<?php 
    $hide_name_link = get_option('hide_name_link');
    $hide_name_link1 = "";
    $hide_name_link2 = "";
    switch ($hide_name_link) {
        case 0:
            $hide_name_link2 = "checked ='checked'";
            break;
        case 1:
            $hide_name_link1 = "checked ='checked'";
            break;
    }
    ?>
						<input type='radio' value='1' name='wpsc_options[hide_name_link]' id='hide_name_link1' <?php 
    echo $hide_name_link1;
    ?>
 /> 
						<label for='hide_name_link1'><?php 
    echo TXT_WPSC_YES;
    ?>
</label> &nbsp;
						<input type='radio' value='0' name='wpsc_options[hide_name_link]' id='hide_name_link2' <?php 
    echo $hide_name_link2;
    ?>
 /> 
						<label for='hide_name_link2'><?php 
    echo TXT_WPSC_NO;
    ?>
</label>
					</td>
				</tr>
			
				<tr>
					<th scope="row"><?php 
    echo TXT_WPSC_MULTIPLE_ADDING_PRODUCTS;
    ?>
:</th>
					<td>
						<?php 
    $multi_adding = get_option('multi_add');
    switch ($multi_adding) {
        case 1:
            $multi_adding1 = "checked ='checked'";
            break;
        case 0:
            $multi_adding2 = "checked ='checked'";
            break;
    }
    ?>
						<input type='radio' value='1' name='wpsc_options[multi_add]' id='multi_adding1' <?php 
    echo $multi_adding1;
    ?>
 /> 
						<label for='multi_adding1'><?php 
    echo TXT_WPSC_YES;
    ?>
</label> &nbsp;
						<input type='radio' value='0' name='wpsc_options[multi_add]' id='multi_adding2' <?php 
    echo $multi_adding2;
    ?>
 /> 
						<label for='multi_adding2'><?php 
    echo TXT_WPSC_NO;
    ?>
</label>
					</td>
				</tr>
			</table>
		</div>


		<div class='themes_and_appearance'>
			<h4><?php 
    _e("Theme Customisation", 'wpsc');
    ?>
</h4>
			  <?php 
    if ($_SESSION['wpsc_themes_copied'] == true) {
        ?>
					<div class="updated fade below-h2" id="message" style="background-color: rgb(255, 251, 204);">
						<p><?php 
        _e("Thanks, the themes have been copied.");
        ?>
</p>
					</div>
					<?php 
        $_SESSION['wpsc_themes_copied'] = false;
    }
    ?>
			<?php 
    if (wpsc_count_themes_in_uploads_directory() > 0) {
        ?>
					<p><?php 
        _e("Theming your stores appearance is easy.");
        ?>
</p>
					<p>
						<?php 
        _e("You just need to edit the appropriate files in the following location.", 'wpsc');
        ?>
<br /><br />
						<span class='display-path'><strong><?php 
        _e("Path:", 'wpsc');
        ?>
</strong> <?php 
        echo str_replace(ABSPATH, "", WPSC_THEMES_PATH) . WPSC_THEME_DIR . "/";
        ?>
 </span>
					</p>
					<p><strong><?php 
        _e("To create a new theme:", 'wpsc');
        ?>
</strong></p>
					<ol>
						<li><?php 
        _e("Copy the default directory and rename it 'newTheme'");
        ?>
</li>
						<li><?php 
        _e("Rename the default.css file inside the 'newTheme' directory to 'newTheme.css'");
        ?>
</li>
					</ol>
				<?php 
    } else {
        if (!is_writable(WPSC_THEMES_PATH)) {
            ?>
					<p><?php 
            _e("The permissions on your themes directory are incorrect.", 'wpsc');
            ?>
 </p>
					<p><?php 
            _e("Please set the permissions to 775 on the following directory.", 'wpsc');
            ?>
<br /><br />
					<span class='display-path'><strong><?php 
            _e("Path:", 'wpsc');
            ?>
</strong> <?php 
            echo str_replace(ABSPATH, "", WPSC_THEMES_PATH) . WPSC_THEME_DIR . "/";
            ?>
 </span></p>
				<?php 
        } else {
            ?>
					<p><?php 
            _e("Your theme files have not been moved. Until your theme files have been moved, we have disabled automatic upgrades.", 'wpsc');
            ?>
					<p><?php 
            printf(__("Click here to <a href='%s'>Move your files</a> to a safe place", 'wpsc'), wp_nonce_url("admin.php?wpsc_admin_action=copy_themes", 'copy_themes'));
            ?>
 </p>
				<?php 
        }
    }
    ?>
			<p><a href='http://www.instinct.co.nz/e-commerce/docs/'><?php 
    _e("Read Tutorials", 'wpsc');
    ?>
</a></p>
		</div>
		
		<div style='clear:both;'></div>
		
		<h3 class="form_group"><?php 
    echo TXT_WPSC_PRODUCTS_PAGE_SETTINGS;
    ?>
</h3>
		<table class='wpsc_options form-table'>		
		<tr>
			<th scope="row"><?php 
    echo TXT_WPSC_PRODUCT_DISPLAY;
    ?>
:</th>
			<td>
			<?php 
    $display_pnp = get_option('product_view');
    $product_view1 = null;
    $product_view2 = null;
    $product_view3 = null;
    switch ($display_pnp) {
        case "grid":
            if (function_exists('product_display_grid')) {
                $product_view3 = "selected ='selected'";
                break;
            }
        case "list":
            if (function_exists('product_display_list')) {
                $product_view2 = "selected ='selected'";
                break;
            }
        default:
            $product_view1 = "selected ='selected'";
            break;
    }
    if (get_option('list_view_quantity') == 1) {
        $list_view_quantity_value = "checked='checked'";
    } else {
        $list_view_quantity_value = '';
    }
    if (get_option('show_images_only') == 1) {
        $show_images_only_value = "checked='checked'";
    } else {
        $show_images_only_value = '';
    }
    if (get_option('display_variations') == 1) {
        $display_variations = "checked='checked'";
    } else {
        $display_variations = '';
    }
    if (get_option('display_description') == 1) {
        $display_description = "checked='checked'";
    } else {
        $display_description = '';
    }
    if (get_option('display_addtocart') == 1) {
        $display_addtocart = "checked='checked'";
    } else {
        $display_addtocart = '';
    }
    if (get_option('display_moredetails') == 1) {
        $display_moredetails = "checked='checked'";
    } else {
        $display_moredetails = '';
    }
    ?>
			<select name='wpsc_options[product_view]' onchange="toggle_display_options(this.options[this.selectedIndex].value)">
				<option value='default' <?php 
    echo $product_view1;
    ?>
><?php 
    echo TXT_WPSC_DEFAULT;
    ?>
</option>
				<?php 
    if (function_exists('product_display_list')) {
        ?>
					<option value='list' <?php 
        echo $product_view2;
        ?>
><?php 
        echo TXT_WPSC_LIST;
        ?>
</option>
					<?php 
    } else {
        ?>
					<option value='list' disabled='disabled' <?php 
        echo $product_view2;
        ?>
><?php 
        echo TXT_WPSC_LIST;
        ?>
</option>
					<?php 
    }
    if (function_exists('product_display_grid')) {
        ?>
				<option value='grid' <?php 
        echo $product_view3;
        ?>
><?php 
        echo TXT_WPSC_GRID;
        ?>
</option>
					<?php 
    } else {
        ?>
				<option value='grid' disabled='disabled' <?php 
        echo $product_view3;
        ?>
><?php 
        echo TXT_WPSC_GRID;
        ?>
</option>
					<?php 
    }
    ?>
				</select>
				<?php 
    if (!function_exists('product_display_grid')) {
        ?>
<a href='http://www.instinct.co.nz/e-commerce/shop/'><?php 
        echo TXT_WPSC_PURCHASE_UNAVAILABLE;
        ?>
</a> <?php 
    }
    ?>
					<div id='list_view_options' <?php 
    if (is_null($product_view2)) {
        echo "style='display:none;'";
    }
    ?>
 >
						<input type='checkbox' value='1' name='wpsc_options[list_view_quantity]' id='list_view_quantity' <?php 
    echo $list_view_quantity_value;
    ?>
 />
						<label for='list_view_options'><?php 
    echo TXT_WPSC_ADJUSTABLE_QUANTITY;
    ?>
</label>
					</div>
					<div id='grid_view_options' <?php 
    echo $list_view_quantity_style;
    ?>
 <?php 
    if (is_null($product_view3)) {
        echo "style='display:none;'";
    }
    ?>
>
					
						<input type='text'  name='wpsc_options[grid_number_per_row]' id='grid_number_per_row' size='1' value='<?php 
    echo get_option('grid_number_per_row');
    ?>
' />
						<label for='grid_number_per_row'><?php 
    echo TXT_SHOW_GRID_PER_ROW;
    ?>
</label><br />
						
						
						<input type='hidden' value='0' name='wpsc_options[show_images_only]' />
						<input type='checkbox' value='1' name='wpsc_options[show_images_only]' id='show_images_only' <?php 
    echo $show_images_only_value;
    ?>
 />
						<label for='show_images_only'><?php 
    echo TXT_SHOW_IMAGES_ONLY;
    ?>
</label><br />
						
						
						<input type='hidden' value='0' name='wpsc_options[display_variations]' />
						<input type='checkbox' value='1' name='wpsc_options[display_variations]' id='display_variations' <?php 
    echo $display_variations;
    ?>
 />
						<label for='display_variations'><?php 
    echo TXT_DISPLAY_VARIATIONS;
    ?>
</label><br />
						
						
						<input type='hidden' value='0' name='wpsc_options[display_description]' />
						<input type='checkbox' value='1' name='wpsc_options[display_description]' id='display_description' <?php 
    echo $display_description;
    ?>
 />
						<label for='display_description'><?php 
    echo TXT_DISPLAY_DESCRIPTION;
    ?>
</label><br />
						
						
						<input type='hidden' value='0' name='wpsc_options[display_addtocart]' />
						<input type='checkbox' value='1' name='wpsc_options[display_addtocart]' id='display_addtocart' <?php 
    echo $display_addtocart;
    ?>
 />
						<label for='display_addtocart'><?php 
    echo TXT_DISPLAY_ADDTOCART;
    ?>
</label><br />
						
						<input type='hidden' value='0' name='wpsc_options[display_moredetails]' />
						<input type='checkbox' value='1' name='wpsc_options[display_moredetails]' id='display_moredetails' <?php 
    echo $display_moredetails;
    ?>
 />
						<label for='display_moredetails'><?php 
    echo TXT_DISPLAY_MOREDETAILS;
    ?>
</label>

					</div>
				</td>
			</tr>
			<?php 
    //  }
    ?>
			
								
			<tr>
				<th scope="row"><?php 
    echo TXT_WPSC_SELECT_THEME;
    ?>
:</th>
				<td>
				<?php 
    echo wpsc_list_product_themes();
    ?>
				</td>
			</tr>

			<tr>
				<th scope="row"><?php 
    echo TXT_WPSC_DEFAULTCATEGORY;
    ?>
:</th>
				<td>
				<?php 
    echo options_categorylist();
    ?>
				</td>
			</tr>
			<?php 
    $wpsc_sort_by = get_option('wpsc_sort_by');
    switch ($wpsc_sort_by) {
        case 'name':
            $wpsc_sort_by1 = "selected ='selected'";
            break;
        case 'price':
            $wpsc_sort_by2 = "selected ='selected'";
            break;
        case 'id':
        default:
            $wpsc_sort_by3 = "selected ='selected'";
            break;
    }
    ?>
			<tr>
				<th scope="row">
					<?php 
    echo TXT_WPSC_SORT_PRODUCT_BY;
    ?>
:
				</th>
				<td>
					<select name='wpsc_options[wpsc_sort_by]'>
					<option <?php 
    echo $wpsc_sort_by1;
    ?>
 value='name'><?php 
    echo TXT_WPSC_NAME;
    ?>
</option>
					<option <?php 
    echo $wpsc_sort_by2;
    ?>
 value='price'><?php 
    echo TXT_WPSC_PRICE;
    ?>
</option>
					<option <?php 
    echo $wpsc_sort_by3;
    ?>
 value='id'><?php 
    echo TXT_WPSC_TIME_UPLOADED;
    ?>
</option>
					</select>
				</td>
			</tr>

			<tr>
				<th scope="row"><?php 
    echo TXT_WPSC_SHOW_BREADCRUMBS;
    ?>
:</th>
				<td>
				<?php 
    $show_breadcrumbs = get_option('show_breadcrumbs');
    $show_breadcrumbs1 = "";
    $show_breadcrumbs2 = "";
    switch ($show_breadcrumbs) {
        case 0:
            $show_breadcrumbs2 = "checked ='checked'";
            break;
        case 1:
            $show_breadcrumbs1 = "checked ='checked'";
            break;
    }
    ?>
				<input type='radio' value='1' name='wpsc_options[show_breadcrumbs]' id='show_breadcrumbs1' <?php 
    echo $show_breadcrumbs1;
    ?>
 /> <label for='show_breadcrumbs1'><?php 
    echo TXT_WPSC_YES;
    ?>
</label> &nbsp;
				<input type='radio' value='0' name='wpsc_options[show_breadcrumbs]' id='show_breadcrumbs2' <?php 
    echo $show_breadcrumbs2;
    ?>
 /> <label for='show_breadcrumbs2'><?php 
    echo TXT_WPSC_NO;
    ?>
</label>
				</td>
			</tr>							
	

				
			<tr>
				<th scope="row">
				<?php 
    echo TXT_WPSC_CATSPRODS_DISPLAY_TYPE;
    ?>
:
				</th>
				<td>
				<?php 
    $display_pnp = get_option('catsprods_display_type');
    $catsprods_display_type1 = "";
    $catsprods_display_type2 = "";
    switch ($display_pnp) {
        case 0:
            $catsprods_display_type1 = "checked ='checked'";
            break;
        case 1:
            $catsprods_display_type2 = "checked ='checked'";
            break;
    }
    ?>
				<input type='radio' value='0' name='wpsc_options[catsprods_display_type]' id='catsprods_display_type1' <?php 
    echo $catsprods_display_type1;
    ?>
 /> <label for='catsprods_display_type1'><?php 
    echo TXT_WPSC_CATSPRODS_TYPE_CATONLY;
    ?>
</label> &nbsp;
				<input type='radio' value='1' name='wpsc_options[catsprods_display_type]' id='catsprods_display_type2' <?php 
    echo $catsprods_display_type2;
    ?>
 /> <label for='catsprods_display_type2'><?php 
    echo TXT_WPSC_CATSPRODS_TYPE_SLIDEPRODS;
    ?>
</label>
				</td>
			</tr>
				
	<?php 
    if (function_exists('gold_shpcrt_search_form')) {
        ?>
			<tr>
				<th scope="row"><?php 
        echo TXT_WPSC_SHOW_SEARCH;
        ?>
:</th>
				<td>
				<?php 
        $display_pnp = get_option('show_search');
        $show_search1 = "";
        $show_search2 = "";
        switch ($display_pnp) {
            case 0:
                $show_search2 = "checked ='checked'";
                break;
            case 1:
                $show_search1 = "checked ='checked'";
                break;
        }
        $display_advanced_search = get_option('show_advanced_search');
        $show_advanced_search = "";
        if ($display_advanced_search == 1) {
            $show_advanced_search = "checked ='checked'";
        }
        $display_live_search = get_option('show_live_search');
        if ($display_live_search == 1) {
            $show_live_search = "checked ='checked'";
        }
        if ($show_search1 != "checked ='checked'") {
            $dis = "style='display:none;'";
        }
        ?>
				<input type='radio' onclick='jQuery("#wpsc_advanced_search").show()' value='1' name='wpsc_options[show_search]' id='show_search1' <?php 
        echo $show_search1;
        ?>
 /> <label for='show_search1'><?php 
        echo TXT_WPSC_YES;
        ?>
</label> &nbsp;
				<input type='radio' onclick='jQuery("#wpsc_advanced_search").hide()' value='0' name='wpsc_options[show_search]' id='show_search2' <?php 
        echo $show_search2;
        ?>
 /> <label for='show_search2'><?php 
        echo TXT_WPSC_NO;
        ?>
</label>
				
			<div <?php 
        echo $dis;
        ?>
 id='wpsc_advanced_search'>
				<input  type='hidden' name='wpsc_options[show_advanced_search]' value='0' />
				<input  type='checkbox' name='wpsc_options[show_advanced_search]' id='show_advanced_search' <?php 
        echo $show_advanced_search;
        ?>
  value='1' />
				<?php 
        echo TXT_WPSC_SHOWADVANCEDSEARCH;
        ?>
<br />
				<input type='hidden' name='wpsc_options[show_live_search]' value='0' />
				<input type='checkbox' name='wpsc_options[show_live_search]' id='show_live_search' <?php 
        echo $show_live_search;
        ?>
 value='1' />
				<?php 
        echo TXT_WPSC_SHOWLIVESEARCH;
        ?>
			</div>
			
				</td>
			</tr>
		<?php 
    }
    ?>

	
			<tr>
				<th scope="row"><?php 
    echo TXT_WPSC_REPLACE_PAGE_TITLE;
    ?>
:</th>
				<td>
				<?php 
    $wpsc_replace_page_title = get_option('wpsc_replace_page_title');
    $wpsc_replace_page_title1 = "";
    $wpsc_replace_page_title2 = "";
    switch ($wpsc_replace_page_title) {
        case 0:
            $wpsc_replace_page_title2 = "checked ='checked'";
            break;
        case 1:
            $wpsc_replace_page_title1 = "checked ='checked'";
            break;
    }
    ?>
				<input type='radio' value='1' name='wpsc_options[wpsc_replace_page_title]' id='wpsc_replace_page_title1' <?php 
    echo $wpsc_replace_page_title1;
    ?>
 /> <label for='wpsc_replace_page_title1'><?php 
    echo TXT_WPSC_YES;
    ?>
</label> &nbsp;
				<input type='radio' value='0' name='wpsc_options[wpsc_replace_page_title]' id='wpsc_replace_page_title2' <?php 
    echo $wpsc_replace_page_title2;
    ?>
 /> <label for='wpsc_replace_page_title2'><?php 
    echo TXT_WPSC_NO;
    ?>
</label>
				</td>
			</tr>	
		</table> 
		
		<h3 class="form_group"><?php 
    echo TXT_WPSC_CARTSETTINGS;
    ?>
</h3>
		<table class='wpsc_options form-table'>
			<tr>
				<th scope="row"><?php 
    echo TXT_WPSC_CARTLOCATION;
    ?>
:</th>
				<td>
				<?php 
    $cart_location = get_option('cart_location');
    $cart1 = "";
    $cart2 = "";
    switch ($cart_location) {
        case 1:
            $cart1 = "checked ='checked'";
            break;
        case 2:
            $cart2 = "checked ='checked'";
            break;
        case 3:
            $cart3 = "checked ='checked'";
            break;
        case 4:
            $cart4 = "checked ='checked'";
            break;
        case 5:
            $cart5 = "checked ='checked'";
            break;
    }
    if (function_exists('register_sidebar_widget')) {
        ?>
					<input type='radio' value='1' onclick='hideelement1("dropshop_option", this.value)' disabled='disabled'  name='wpsc_options[cart_location]' id='cart1' <?php 
        echo $cart1;
        ?>
 /> <label style='color: #666666;' for='cart1'><?php 
        echo TXT_WPSC_SIDEBAR;
        ?>
</label> &nbsp;
					<?php 
    } else {
        ?>
					<input type='radio' value='1' name='wpsc_options[cart_location]' id='cart1' <?php 
        echo $cart1;
        ?>
 /> <label for='cart1'><?php 
        echo TXT_WPSC_SIDEBAR;
        ?>
</label> &nbsp;
					<?php 
    }
    ?>
				<input type='radio' onclick='hideelement1("dropshop_option", this.value)' value='2' name='wpsc_options[cart_location]' id='cart2' <?php 
    echo $cart2;
    ?>
 /> <label for='cart2'><?php 
    echo TXT_WPSC_PAGE;
    ?>
</label> &nbsp;
				<?php 
    if (function_exists('register_sidebar_widget')) {
        ?>
					<input type='radio' value='4' onclick='hideelement1("dropshop_option", this.value)' name='wpsc_options[cart_location]' id='cart4' <?php 
        echo $cart4;
        ?>
 /> <label for='cart4'><?php 
        echo TXT_WPSC_WIDGET;
        ?>
</label> &nbsp;
					<?php 
    } else {
        ?>
					<input type='radio'  disabled='disabled' value='4' name='wpsc_options[cart_location]' id='cart4' alt='<?php 
        echo TXT_WPSC_NEEDTOENABLEWIDGET;
        ?>
' title='<?php 
        echo TXT_WPSC_NEEDTOENABLEWIDGET;
        ?>
' <?php 
        echo $cart4;
        ?>
 /> <label style='color: #666666;' for='cart4' title='<?php 
        echo TXT_WPSC_NEEDTOENABLEWIDGET;
        ?>
'><?php 
        echo TXT_WPSC_WIDGET;
        ?>
</label> &nbsp;
					<?php 
    }
    if (function_exists('drag_and_drop_cart')) {
        ?>
					<input type='radio' onclick='hideelement1("dropshop_option", this.value)' value='5' name='wpsc_options[cart_location]' id='cart5' <?php 
        echo $cart5;
        ?>
 /> <label for='cart5'><?php 
        echo TXT_WPSC_GOLD_DROPSHOP;
        ?>
</label> &nbsp;
					<?php 
    } else {
        ?>
					<input type='radio' disabled='disabled' value='5' name='wpsc_options[cart_location]' id='cart5' alt='<?php 
        echo TXT_WPSC_NEEDTOENABLEWIDGET;
        ?>
' title='<?php 
        echo TXT_WPSC_NEEDTOENABLEDROPSHOP;
        ?>
' <?php 
        echo $cart5;
        ?>
 /> <label style='color: #666666;' for='cart5' title='<?php 
        echo TXT_WPSC_NEEDTOENABLEDROPSHOP;
        ?>
'><?php 
        echo TXT_WPSC_GOLD_DROPSHOP;
        ?>
</label> &nbsp;
					<?php 
    }
    ?>
				<input type='radio' onclick='hideelement1("dropshop_option", this.value)' value='3' name='wpsc_options[cart_location]' id='cart3' <?php 
    echo $cart3;
    ?>
 /> <label for='cart3'><?php 
    echo TXT_WPSC_MANUAL;
    ?>
 <span style='font-size: 7pt;'>(PHP code: &lt;?php echo nzshpcrt_shopping_basket(); ?&gt; )</span></label>
		<div  style='display: <?php 
    if (isset($cart5)) {
        echo "block";
    } else {
        echo "none";
    }
    ?>
;'  id='dropshop_option'>
		<p>
		<input type="radio" id="drop1" value="all" <?php 
    if (get_option('dropshop_display') == 'all') {
        echo "checked='checked'";
    }
    ?>
 name="wpsc_options[dropshop_display]" /><label for="drop1"><?php 
    echo TXT_WPSC_SHOW_DROPSHOP_ALL;
    ?>
</label>
		<input type="radio" id="drop2" value="product" <?php 
    if (get_option('dropshop_display') == 'product') {
        echo "checked='checked'";
    }
    ?>
 name="wpsc_options[dropshop_display]"/><label for="drop2"><?php 
    echo TXT_WPSC_SHOW_DROPSHOP_PRODUCT;
    ?>
</label>
		</p>
		<p>
		<input type="radio" id="wpsc_dropshop_theme1" value="light" <?php 
    if (get_option('wpsc_dropshop_theme') != 'dark') {
        echo "checked='checked'";
    }
    ?>
 name="wpsc_options[wpsc_dropshop_theme]" /><label for="wpsc_dropshop_theme1"><?php 
    echo TXT_WPSC_DROPSHOP_LIGHT;
    ?>
</label>
		<input type="radio" id="wpsc_dropshop_theme2" value="dark" <?php 
    if (get_option('wpsc_dropshop_theme') == 'dark') {
        echo "checked='checked'";
    }
    ?>
 name="wpsc_options[wpsc_dropshop_theme]"/><label for="wpsc_dropshop_theme2"><?php 
    echo TXT_WPSC_DROPSHOP_DARK;
    ?>
</label>
		<input type="radio" id="wpsc_dropshop_theme3" value="craftyc" <?php 
    if (get_option('wpsc_dropshop_theme') == 'craftyc') {
        echo "checked='checked'";
    }
    ?>
 name="wpsc_options[wpsc_dropshop_theme]"/><label for="wpsc_dropshop_theme2"><?php 
    echo TXT_WPSC_DROPSHOP_CRAFTYC;
    ?>
</label>
		
		</p>
		</div>
				</td>
			</tr>
			
			
<tr>
					<th scope="row">
					<?php 
    echo TXT_WPSC_SHOW_SLIDING_CART;
    ?>
:
					</th>
					<td>
					<?php 
    $display_pnp = get_option('show_sliding_cart');
    $show_sliding_cart1 = "";
    $show_sliding_cart2 = "";
    switch ($display_pnp) {
        case 0:
            $show_sliding_cart2 = "checked ='checked'";
            break;
        case 1:
            $show_sliding_cart1 = "checked ='checked'";
            break;
    }
    ?>
					<input type='radio' value='1' name='wpsc_options[show_sliding_cart]' id='show_sliding_cart1' <?php 
    echo $show_sliding_cart1;
    ?>
 /> <label for='show_sliding_cart1'><?php 
    echo TXT_WPSC_YES;
    ?>
</label> &nbsp;
					<input type='radio' value='0' name='wpsc_options[show_sliding_cart]' id='show_sliding_cart2' <?php 
    echo $show_sliding_cart2;
    ?>
 /> <label for='show_sliding_cart2'><?php 
    echo TXT_WPSC_NO;
    ?>
</label>
					</td>
				</tr>
				
			<tr>
				<th scope="row">
				<?php 
    echo TXT_WPSC_DISPLAY_PLUSTAX;
    ?>
:
				</th>
				<td>
				<?php 
    $add_plustax = get_option('add_plustax');
    $add_plustax1 = "";
    $add_plustax2 = "";
    switch ($add_plustax) {
        case 0:
            $add_plustax2 = "checked ='checked'";
            break;
        case 1:
            $add_plustax1 = "checked ='checked'";
            break;
    }
    ?>
				<input type='radio' value='1' name='wpsc_options[add_plustax]' id='add_plustax1' <?php 
    echo $add_plustax1;
    ?>
 /> <label for='add_plustax1'><?php 
    echo TXT_WPSC_YES;
    ?>
</label> &nbsp;
				<input type='radio' value='0' name='wpsc_options[add_plustax]' id='add_plustax2' <?php 
    echo $add_plustax2;
    ?>
 /> <label for='add_plustax2'><?php 
    echo TXT_WPSC_NO;
    ?>
</label>
				</td>
			</tr>
			
			</table> 
			
			
			
			<h3 class="form_group"><?php 
    echo TXT_WPSC_GROUP_SETTINGS;
    ?>
</h3>
			<table class='wpsc_options form-table'>
				
				<tr>
					<th scope="row"><?php 
    echo TXT_WPSC_SHOW_CATEGORY_DESCRIPTION;
    ?>
:</th>
					<td>
					<?php 
    $wpsc_category_description = get_option('wpsc_category_description');
    $wpsc_category_description1 = "";
    $wpsc_category_description2 = "";
    switch ($wpsc_category_description) {
        case '1':
            $wpsc_category_description1 = "checked ='checked'";
            break;
        case '0':
        default:
            $wpsc_category_description2 = "checked ='checked'";
            break;
    }
    ?>
					<input type='radio' value='1' name='wpsc_options[wpsc_category_description]' id='wpsc_category_description1' <?php 
    echo $wpsc_category_description1;
    ?>
 /> <label for='wpsc_category_description1'><?php 
    echo TXT_WPSC_YES;
    ?>
</label> &nbsp;
					<input type='radio' value='0' name='wpsc_options[wpsc_category_description]' id='wpsc_category_description2' <?php 
    echo $wpsc_category_description2;
    ?>
 /> <label for='wpsc_category_description2'><?php 
    echo TXT_WPSC_NO;
    ?>
</label>
					</td>
				</tr>
				
				<tr>
					<th scope="row">
					<?php 
    echo TXT_WPSC_SHOWCATEGORYTHUMBNAILS;
    ?>
:
					</th>
					<td>
					<?php 
    $show_category_thumbnails = get_option('show_category_thumbnails');
    $show_category_thumbnails1 = "";
    $show_category_thumbnails2 = "";
    switch ($show_category_thumbnails) {
        case 0:
            $show_category_thumbnails2 = "checked ='checked'";
            break;
        case 1:
            $show_category_thumbnails1 = "checked ='checked'";
            break;
    }
    ?>
					<input type='radio' value='1' name='wpsc_options[show_category_thumbnails]' id='show_category_thumbnails1' <?php 
    echo $show_category_thumbnails1;
    ?>
 /> <label for='show_category_thumbnails1'><?php 
    echo TXT_WPSC_YES;
    ?>
</label> &nbsp;
					<input type='radio' value='0' name='wpsc_options[show_category_thumbnails]' id='show_category_thumbnails2' <?php 
    echo $show_category_thumbnails2;
    ?>
 /> <label for='show_category_thumbnails2'><?php 
    echo TXT_WPSC_NO;
    ?>
</label>
					</td>
				</tr>
				
				<!-- // Adrian - options for displaying number of products per category -->      
					
				<tr>
					<th scope="row">
					<?php 
    echo TXT_WPSC_SHOW_CATEGORY_COUNT;
    ?>
:
					</th>
					<td>
					<?php 
    $display_pnp = get_option('show_category_count');
    $show_category_count1 = "";
    $show_category_count2 = "";
    switch ($display_pnp) {
        case 0:
            $show_category_count2 = "checked ='checked'";
            break;
        case 1:
            $show_category_count1 = "checked ='checked'";
            break;
    }
    ?>
					<input type='radio' value='1' name='wpsc_options[show_category_count]' id='show_category_count1' <?php 
    echo $show_category_count1;
    ?>
 /> <label for='show_category_count1'><?php 
    echo TXT_WPSC_YES;
    ?>
</label> &nbsp;
					<input type='radio' value='0' name='wpsc_options[show_category_count]' id='show_category_count2' <?php 
    echo $show_category_count2;
    ?>
 /> <label for='show_category_count2'><?php 
    echo TXT_WPSC_NO;
    ?>
</label>
					</td>
				</tr>
					
				<!-- // Adrian - options for displaying category display type -->      
				
				<tr>
					<th scope="row"><?php 
    _e("Use Category Grid View", 'wpsc');
    ?>
:</th>
					<td>
					<?php 
    $wpsc_category_grid_view = get_option('wpsc_category_grid_view');
    $wpsc_category_grid_view1 = "";
    $wpsc_category_grid_view2 = "";
    switch ($wpsc_category_grid_view) {
        case '1':
            $wpsc_category_grid_view1 = "checked ='checked'";
            break;
        case '0':
        default:
            $wpsc_category_grid_view2 = "checked ='checked'";
            break;
    }
    ?>
					<input type='radio' value='1' name='wpsc_options[wpsc_category_grid_view]' id='wpsc_category_grid_view1' <?php 
    echo $wpsc_category_grid_view1;
    ?>
 /> <label for='wpsc_category_grid_view1'><?php 
    echo TXT_WPSC_YES;
    ?>
</label> &nbsp;
					<input type='radio' value='0' name='wpsc_options[wpsc_category_grid_view]' id='wpsc_category_grid_view2' <?php 
    echo $wpsc_category_grid_view2;
    ?>
 /> <label for='wpsc_category_grid_view2'><?php 
    echo TXT_WPSC_NO;
    ?>
</label>
					</td>
				</tr>
			</table> 
			
			
			<h3 class="form_group"><a name='thumb_settings'><?php 
    echo TXT_WPSC_THUMBNAILSETTINGS;
    ?>
</a></h3>
			<table class='wpsc_options form-table'>
			<?php 
    if (function_exists("getimagesize")) {
        ?>
					<tr>
						<th scope="row"><?php 
        echo TXT_WPSC_PRODUCTTHUMBNAILSIZE;
        ?>
:</th>
						<td>
							<?php 
        echo TXT_WPSC_HEIGHT;
        ?>
:<input type='text' size='6' name='wpsc_options[product_image_height]' class='wpsc_prod_thumb_option' value='<?php 
        echo get_option('product_image_height');
        ?>
' />
							<?php 
        echo TXT_WPSC_WIDTH;
        ?>
:<input type='text' size='6' name='wpsc_options[product_image_width]' class='wpsc_prod_thumb_option' value='<?php 
        echo get_option('product_image_width');
        ?>
' />
							<a href="<?php 
        echo wp_nonce_url("admin.php?wpsc_admin_action=mass_resize_thumbnails", 'mass_resize');
        ?>
" style='visibility:hidden;' class='wpsc_mass_resize' ><?php 
        _e("Resize Existing Thumbnails", 'wpsc');
        ?>
</a>
						<br />
						</td>
					</tr>
					<tr>
						<th scope="row">
						<?php 
        echo TXT_WPSC_CATEGORYTHUMBNAILSIZE;
        ?>
:
						</th>
						<td>
						<?php 
        echo TXT_WPSC_HEIGHT;
        ?>
:<input type='text' size='6' name='wpsc_options[category_image_height]' value='<?php 
        echo get_option('category_image_height');
        ?>
' /> <?php 
        echo TXT_WPSC_WIDTH;
        ?>
:<input type='text' size='6' name='wpsc_options[category_image_width]' value='<?php 
        echo get_option('category_image_width');
        ?>
' /> 
						</td>
					</tr>
					
					<tr>
						<th scope="row">
						<?php 
        echo TXT_WPSC_SINGLE_PRODUCTTHUMBNAILSIZE;
        ?>
:
						</th>
						<td>
						<?php 
        echo TXT_WPSC_HEIGHT;
        ?>
:<input type='text' size='6' name='wpsc_options[single_view_image_height]' value='<?php 
        echo get_option('single_view_image_height');
        ?>
' /> <?php 
        echo TXT_WPSC_WIDTH;
        ?>
:<input type='text' size='6' name='wpsc_options[single_view_image_width]' value='<?php 
        echo get_option('single_view_image_width');
        ?>
' /> 
						</td>
					</tr>
					<?php 
    }
    ?>
            
		
				<tr>
					<th scope="row"><?php 
    echo TXT_WPSC_SHOWTHUMBNAILS;
    ?>
:</th>
					<td>
					<?php 
    $show_thumbnails = get_option('show_thumbnails');
    $show_thumbnails1 = "";
    $show_thumbnails2 = "";
    switch ($show_thumbnails) {
        case 0:
            $show_thumbnails2 = "checked ='checked'";
            break;
        case 1:
            $show_thumbnails1 = "checked ='checked'";
            break;
    }
    ?>
					<input type='radio' value='1' name='wpsc_options[show_thumbnails]' id='show_thumbnails1' <?php 
    echo $show_thumbnails1;
    ?>
 /> <label for='show_thumbnails1'><?php 
    echo TXT_WPSC_YES;
    ?>
</label> &nbsp;
					<input type='radio' value='0' name='wpsc_options[show_thumbnails]' id='show_thumbnails2' <?php 
    echo $show_thumbnails2;
    ?>
 /> <label for='show_thumbnails2'><?php 
    echo TXT_WPSC_NO;
    ?>
</label>
					</td>
				</tr>
				<?php 
    if (function_exists('gold_shpcrt_display_gallery')) {
        ?>
						<tr>
							<th scope="row">
							<?php 
        echo TXT_WPSC_SHOW_GALLERY;
        ?>
:
							</th>
							<td>
							<?php 
        $display_pnp = get_option('show_gallery');
        $show_gallery1 = "";
        $show_gallery2 = "";
        switch ($display_pnp) {
            case 0:
                $show_gallery2 = "checked ='checked'";
                break;
            case 1:
                $show_gallery1 = "checked ='checked'";
                break;
        }
        ?>
							<input type='radio' value='1' name='wpsc_options[show_gallery]' id='show_gallery1' <?php 
        echo $show_gallery1;
        ?>
 /> <label for='show_gallery1'><?php 
        echo TXT_WPSC_YES;
        ?>
</label> &nbsp;
							<input type='radio' value='0' name='wpsc_options[show_gallery]' id='show_gallery2' <?php 
        echo $show_gallery2;
        ?>
 /> <label for='show_gallery2'><?php 
        echo TXT_WPSC_NO;
        ?>
</label>
							</td>
						</tr>
						
						<tr>
							<th scope="row">
								<?php 
        _e("Gallery Thumbnail Image Size");
        ?>
:
							</th>
							<td>
								<?php 
        echo TXT_WPSC_HEIGHT;
        ?>
:<input type='text' size='6' name='wpsc_options[wpsc_gallery_image_height]' value='<?php 
        echo get_option('wpsc_gallery_image_height');
        ?>
' />
								<?php 
        echo TXT_WPSC_WIDTH;
        ?>
:<input type='text' size='6' name='wpsc_options[wpsc_gallery_image_width]' value='<?php 
        echo get_option('wpsc_gallery_image_width');
        ?>
' /> <br />
								
							</td>
						</tr>
						<?php 
    }
    ?>
			</table>
			
					
			<h3 class="form_group"><?php 
    echo TXT_WPSC_PAGESETTINGS;
    ?>
</h3>
			<table class='wpsc_options form-table'>
				<tr>
					<th scope="row">
					<?php 
    echo TXT_WPSC_USE_PAGINATION;
    ?>
:
					</th>
					<td>
					<?php 
    $use_pagination = get_option('use_pagination');
    $use_pagination1 = "";
    $use_pagination2 = "";
    switch ($use_pagination) {
        case 0:
            $use_pagination2 = "checked ='checked'";
            $page_count_display_state = 'style=\'display: none;\'';
            break;
        case 1:
            $use_pagination1 = "checked ='checked'";
            $page_count_display_state = '';
            break;
    }
    ?>
					<input onclick='jQuery("#wpsc_products_per_page").show()'  type='radio' value='1' name='wpsc_options[use_pagination]' id='use_pagination1' <?php 
    echo $use_pagination1;
    ?>
 /> <label for='use_pagination1'><?php 
    echo TXT_WPSC_YES;
    ?>
</label> &nbsp;
					<input onclick='jQuery("#wpsc_products_per_page").hide()' type='radio' value='0' name='wpsc_options[use_pagination]' id='use_pagination2' <?php 
    echo $use_pagination2;
    ?>
 /> <label for='use_pagination2'><?php 
    echo TXT_WPSC_NO;
    ?>
</label><br />
					<div id='wpsc_products_per_page' <?php 
    echo $page_count_display_state;
    ?>
 >
					<input type='text' size='6' name='wpsc_options[wpsc_products_per_page]' value='<?php 
    echo get_option('wpsc_products_per_page');
    ?>
' /> <?php 
    echo TXT_WPSC_OPTION_PRODUCTS_PER_PAGE;
    ?>
					</div>
					</td>
				</tr>
				
				<tr>
					<th scope="row">
						<?php 
    echo TXT_WPSC_PAGE_NUMBER_POSITION;
    ?>
:
					</th>
					<td>
						<input type='radio' value='1' name='wpsc_options[wpsc_page_number_position]' id='wpsc_page_number_position1' <?php 
    if (get_option('wpsc_page_number_position') == 1) {
        echo "checked='checked'";
    }
    ?>
 /><label for='wpsc_page_number_position1'><?php 
    echo TXT_WPSC_PAGENUMBER_POSITION_TOP;
    ?>
</label>&nbsp;
						<input type='radio' value='2' name='wpsc_options[wpsc_page_number_position]' id='wpsc_page_number_position2' <?php 
    if (get_option('wpsc_page_number_position') == 2) {
        echo "checked='checked'";
    }
    ?>
 /><label for='wpsc_page_number_position2'><?php 
    echo TXT_WPSC_PAGENUMBER_POSITION_BOTTOM;
    ?>
</label>&nbsp;
						<input type='radio' value='3' name='wpsc_options[wpsc_page_number_position]' id='wpsc_page_number_position3' <?php 
    if (get_option('wpsc_page_number_position') == 3) {
        echo "checked='checked'";
    }
    ?>
 /><label for='wpsc_page_number_position3'><?php 
    echo TXT_WPSC_PAGENUMBER_POSITION_BOTH;
    ?>
</label>
						<br />
					</td>
				</tr>    
			</table>
	
				
			<h3 class="form_group"><?php 
    echo TXT_WPSC_COMMENTSETTINGS;
    ?>
</h3>
			<table class='wpsc_options form-table'>
				<tr>
					<th scope="row">
					<?php 
    echo TXT_WPSC_ENABLE_COMMENTS;
    ?>
:
					<a href="http://intensedebate.com/" title="IntenseDebate comments enhance and encourage conversation on your blog or website" target="_blank"><img src="<?php 
    echo WPSC_URL;
    ?>
/images/intensedebate-logo.png" alt="intensedebate-logo" title="IntenseDebate"/></a>
					</th>
					<td>
					<?php 
    $enable_comments = get_option('wpsc_enable_comments');
    $enable_comments1 = "";
    $enable_comments2 = "";
    switch ($enable_comments) {
        case 1:
            $enable_comments1 = "checked ='checked'";
            $intense_debate_account_id_display_state = '';
            break;
        default:
        case 0:
            $enable_comments2 = "checked ='checked'";
            $intense_debate_account_id_display_state = 'style=\'display: none;\'';
            break;
    }
    ?>
					<input onclick='jQuery("#wpsc_enable_comments,.wpsc_comments_details").show()'  type='radio' value='1' name='wpsc_options[wpsc_enable_comments]' id='wpsc_enable_comments1' <?php 
    echo $enable_comments1;
    ?>
 /> <label for='wpsc_enable_comments1'><?php 
    echo TXT_WPSC_YES;
    ?>
</label> &nbsp;
					<input onclick='jQuery("#wpsc_enable_comments,.wpsc_comments_details").hide()' type='radio' value='0' name='wpsc_options[wpsc_enable_comments]' id='wpsc_enable_comments2' <?php 
    echo $enable_comments2;
    ?>
 /> <label for='wpsc_enable_comments1'><?php 
    echo TXT_WPSC_NO;
    ?>
</label><br />
					<div id='wpsc_enable_comments' <?php 
    echo $intense_debate_account_id_display_state;
    ?>
 >
					<?php 
    echo TXT_WPSC_INTENSE_DEBATE_ACCOUNT_ID;
    ?>
:<br/>
					<input type='text' size='30' name='wpsc_options[wpsc_intense_debate_account_id]' value='<?php 
    echo get_option('wpsc_intense_debate_account_id');
    ?>
' /><br/>
					<small><a href='http://intensedebate.com/sitekey/' title='Help finding the Account ID'><?php 
    _e('Help on finding the Account ID');
    ?>
</a></small>
					</div>
					</td>
				</tr>
		
				<tr>
					
					<th scope="row">
					<div class='wpsc_comments_details' <?php 
    echo $intense_debate_account_id_display_state;
    ?>
 >
						<?php 
    echo TXT_WPSC_COMMENTS_WHICH_PRODUCTS;
    ?>
:
					</div>
					</th>
					<td>
					<div class='wpsc_comments_details' <?php 
    echo $intense_debate_account_id_display_state;
    ?>
 >
						<input type='radio' value='1' name='wpsc_options[wpsc_comments_which_products]' id='wpsc_comments_which_products1' <?php 
    if (get_option('wpsc_comments_which_products') == 1 || !get_option('wpsc_comments_which_products')) {
        echo "checked='checked'";
    }
    ?>
 /><label for='wpsc_comments_which_products1'>All Products</label>&nbsp;
						<input type='radio' value='2' name='wpsc_options[wpsc_comments_which_products]' id='wpsc_comments_which_products2' <?php 
    if (get_option('wpsc_comments_which_products') == 2) {
        echo "checked='checked'";
    }
    ?>
 /><label for='wpsc_comments_which_products2'>Per Product</label>&nbsp;
						<br />
					</div>
					</td>
					
				</tr>
			</table> 
			
			<?php 
    /* here end the presentation options */
    ?>
			<div class="submit">
				<input type='hidden' name='wpsc_admin_action' value='submit_options' />
				<?php 
    wp_nonce_field('update-options', 'wpsc-update-options');
    ?>
				<input type="submit" value="<?php 
    echo TXT_WPSC_UPDATE_BUTTON;
    ?>
" name="updateoption" />
			</div>
		</div>
		</form>				
<?php 
}
Пример #3
0
							
							</p>
							</div>
									</td>
								</tr>
 
								<tr>
									<th scope="row">
									<?php 
    echo TXT_WPSC_DEFAULTCATEGORY;
    ?>
:
									</th>
									<td>
									<?php 
    echo options_categorylist();
    ?>
									</td>
								</tr>
								
								
								<tr>
									<th scope="row">
									<?php 
    echo TXT_WPSC_SHOW_CATEGORY_DESCRIPTION;
    ?>
:
									</th>
									<td>
									<?php 
    $wpsc_category_description = get_option('wpsc_category_description');
Пример #4
0
function wpsc_options_presentation()
{
    global $wpdb;
    ?>
<form name='cart_options' id='cart_options' method='post' action=''>
	<div id="options_presentation">
		<h2><?php 
    echo __('Presentation Settings', 'wpsc');
    ?>
</h2>
		<?php 
    /* wpsc_setting_page_update_notification displays the wordpress styled notifications */
    wpsc_settings_page_update_notification();
    ?>
		
		<div class='product_and_button_settings'>
			<h3 class="form_group"><?php 
    echo __('Button Settings', 'wpsc');
    ?>
</h3>
			
			<table class='wpsc_options form-table'>		
				<tr>
				<th scope="row"><?php 
    echo __('Button Type', 'wpsc');
    ?>
:</th>
				<td>
				<?php 
    $addtocart_or_buynow = get_option('addtocart_or_buynow');
    $addtocart_or_buynow1 = "";
    $addtocart_or_buynow2 = "";
    switch ($addtocart_or_buynow) {
        case 0:
            $addtocart_or_buynow1 = "checked ='checked'";
            break;
        case 1:
            $addtocart_or_buynow2 = "checked ='checked'";
            break;
    }
    ?>
					<input type='radio' value='0' name='wpsc_options[addtocart_or_buynow]' id='addtocart_or_buynow1' <?php 
    echo $addtocart_or_buynow1;
    ?>
 /> 
					<label for='addtocart_or_buynow1'><?php 
    echo __('Add To Cart', 'wpsc');
    ?>
</label> &nbsp;<br />
					<input type='radio' value='1' name='wpsc_options[addtocart_or_buynow]' id='addtocart_or_buynow2' <?php 
    echo $addtocart_or_buynow2;
    ?>
 /> 
					<label for='addtocart_or_buynow2'><?php 
    echo __('Buy Now', 'wpsc');
    ?>
</label>
				</td>
			</tr>
			
			<tr>      
				<th scope="row"><?php 
    echo __('Hide "Add to cart" button', 'wpsc');
    ?>
:	</th>
				<td>
				<?php 
    $hide_addtocart_button = get_option('hide_addtocart_button');
    $hide_addtocart_button1 = "";
    $hide_addtocart_button2 = "";
    switch ($hide_addtocart_button) {
        case 0:
            $hide_addtocart_button2 = "checked ='checked'";
            break;
        case 1:
            $hide_addtocart_button1 = "checked ='checked'";
            break;
    }
    ?>
					<input type='radio' value='1' name='wpsc_options[hide_addtocart_button]' id='hide_addtocart_button1' <?php 
    echo $hide_addtocart_button1;
    ?>
 /> 				<label for='hide_addtocart_button1'><?php 
    echo __('Yes', 'wpsc');
    ?>
</label> &nbsp;
					<input type='radio' value='0' name='wpsc_options[hide_addtocart_button]' id='hide_addtocart_button2' <?php 
    echo $hide_addtocart_button2;
    ?>
 /> 				<label for='hide_addtocart_button2'><?php 
    echo __('No', 'wpsc');
    ?>
</label>
				</td>
			</tr>
			</table>
			
			
			
			
			<h3 class="form_group"><?php 
    echo __('Product Settings', 'wpsc');
    ?>
</h3>
			
			<table class='wpsc_options form-table'>		
						
				<tr>
					<th scope="row"><?php 
    echo __('Show Product Ratings', 'wpsc');
    ?>
:</th>
					<td>
					<?php 
    $display_pnp = get_option('product_ratings');
    $product_ratings1 = "";
    $product_ratings2 = "";
    switch ($display_pnp) {
        case 0:
            $product_ratings2 = "checked ='checked'";
            break;
        case 1:
            $product_ratings1 = "checked ='checked'";
            break;
    }
    ?>
					<input type='radio' value='1' name='wpsc_options[product_ratings]' id='product_ratings1' <?php 
    echo $product_ratings1;
    ?>
 /> <label for='product_ratings1'><?php 
    echo __('Yes', 'wpsc');
    ?>
</label> &nbsp;
					<input type='radio' value='0' name='wpsc_options[product_ratings]' id='product_ratings2' <?php 
    echo $product_ratings2;
    ?>
 /> <label for='product_ratings2'><?php 
    echo __('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>
			
				<tr>
					<th scope="row">
					<?php 
    echo __('Display Fancy Purchase Notifications', 'wpsc');
    ?>
:
					</th>
					<td>
					<?php 
    $fancy_notifications = get_option('fancy_notifications');
    $fancy_notifications1 = "";
    $fancy_notifications2 = "";
    switch ($fancy_notifications) {
        case 0:
            $fancy_notifications2 = "checked ='checked'";
            break;
        case 1:
            $fancy_notifications1 = "checked ='checked'";
            break;
    }
    ?>
					<input type='radio' value='1' name='wpsc_options[fancy_notifications]' id='fancy_notifications1' <?php 
    echo $fancy_notifications1;
    ?>
 /> <label for='fancy_notifications1'><?php 
    echo __('Yes', 'wpsc');
    ?>
</label> &nbsp;
					<input type='radio' value='0' name='wpsc_options[fancy_notifications]' id='fancy_notifications2' <?php 
    echo $fancy_notifications2;
    ?>
 /> <label for='fancy_notifications2'><?php 
    echo __('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>  
			
						
				<tr>
					<th scope="row"><?php 
    echo __('Show Postage and Packaging', 'wpsc');
    ?>
:</th>
					<td>
					<?php 
    $display_pnp = get_option('display_pnp');
    $display_pnp1 = "";
    $display_pnp2 = "";
    switch ($display_pnp) {
        case 0:
            $display_pnp2 = "checked ='checked'";
            break;
        case 1:
            $display_pnp1 = "checked ='checked'";
            break;
    }
    ?>
					<input type='radio' value='1' name='wpsc_options[display_pnp]' id='display_pnp1' <?php 
    echo $display_pnp1;
    ?>
 /> <label for='display_pnp1'><?php 
    echo __('Yes', 'wpsc');
    ?>
</label> &nbsp;
					<input type='radio' value='0' name='wpsc_options[display_pnp]' id='display_pnp2' <?php 
    echo $display_pnp2;
    ?>
 /> <label for='display_pnp2'><?php 
    echo __('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>
						
				<tr>      
					<th scope="row"><?php 
    echo __('Disable link in Title', 'wpsc');
    ?>
:	</th>
					<td>
					<?php 
    $hide_name_link = get_option('hide_name_link');
    $hide_name_link1 = "";
    $hide_name_link2 = "";
    switch ($hide_name_link) {
        case 0:
            $hide_name_link2 = "checked ='checked'";
            break;
        case 1:
            $hide_name_link1 = "checked ='checked'";
            break;
    }
    ?>
						<input type='radio' value='1' name='wpsc_options[hide_name_link]' id='hide_name_link1' <?php 
    echo $hide_name_link1;
    ?>
 /> 
						<label for='hide_name_link1'><?php 
    echo __('Yes', 'wpsc');
    ?>
</label> &nbsp;
						<input type='radio' value='0' name='wpsc_options[hide_name_link]' id='hide_name_link2' <?php 
    echo $hide_name_link2;
    ?>
 /> 
						<label for='hide_name_link2'><?php 
    echo __('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>
			
				<tr>
					<th scope="row"><?php 
    echo __('Add quantity field to each product description', 'wpsc');
    ?>
:</th>
					<td>
						<?php 
    $multi_adding = get_option('multi_add');
    switch ($multi_adding) {
        case 1:
            $multi_adding1 = "checked ='checked'";
            break;
        case 0:
            $multi_adding2 = "checked ='checked'";
            break;
    }
    ?>
						<input type='radio' value='1' name='wpsc_options[multi_add]' id='multi_adding1' <?php 
    echo $multi_adding1;
    ?>
 /> 
						<label for='multi_adding1'><?php 
    echo __('Yes', 'wpsc');
    ?>
</label> &nbsp;
						<input type='radio' value='0' name='wpsc_options[multi_add]' id='multi_adding2' <?php 
    echo $multi_adding2;
    ?>
 /> 
						<label for='multi_adding2'><?php 
    echo __('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>
			</table>
		</div>


		<div class='themes_and_appearance'>
			<h4><?php 
    _e("Theme Customisation", 'wpsc');
    ?>
</h4>
			  <?php 
    if ($_SESSION['wpsc_themes_copied'] == true) {
        ?>
					<div class="updated fade below-h2" id="message" style="background-color: rgb(255, 251, 204);">
						<p><?php 
        _e("Thanks, the themes have been copied.");
        ?>
</p>
					</div>
					<?php 
        $_SESSION['wpsc_themes_copied'] = false;
    }
    ?>
			<?php 
    if (wpsc_count_themes_in_uploads_directory() > 0) {
        ?>
					<p><?php 
        _e("Theming your stores appearance is easy.");
        ?>
</p>
					<p>
						<?php 
        _e("You just need to edit the appropriate files in the following location.", 'wpsc');
        ?>
<br /><br />
						<span class='display-path'><strong><?php 
        _e("Path:", 'wpsc');
        ?>
</strong> <?php 
        echo str_replace(ABSPATH, "", WPSC_THEMES_PATH) . WPSC_THEME_DIR . "/";
        ?>
 </span>
					</p>
					<p><strong><?php 
        _e("To create a new theme:", 'wpsc');
        ?>
</strong></p>
					<ol>
						<li><?php 
        _e("Copy the default directory and rename it 'newTheme'");
        ?>
</li>
						<li><?php 
        _e("Rename the default.css file inside the 'newTheme' directory to 'newTheme.css'");
        ?>
</li>
					</ol>
				<?php 
    } else {
        if (!is_writable(WPSC_THEMES_PATH)) {
            ?>
					<p><?php 
            _e("The permissions on your themes directory are incorrect.", 'wpsc');
            ?>
 </p>
					<p><?php 
            _e("Please set the permissions to 775 on the following directory.", 'wpsc');
            ?>
<br /><br />
					<span class='display-path'><strong><?php 
            _e("Path:", 'wpsc');
            ?>
</strong> <?php 
            echo str_replace(ABSPATH, "", WPSC_THEMES_PATH) . WPSC_THEME_DIR . "/";
            ?>
 </span></p>
				<?php 
        } else {
            ?>
					<p><?php 
            _e("Your theme files have not been moved. Until your theme files have been moved, we have disabled automatic upgrades.", 'wpsc');
            ?>
					<p><?php 
            printf(__("Click here to <a href='%s'>Move your files</a> to a safe place", 'wpsc'), wp_nonce_url("admin.php?wpsc_admin_action=copy_themes", 'copy_themes'));
            ?>
 </p>
				<?php 
        }
    }
    ?>
			<p><a href='http://www.instinct.co.nz/e-commerce/docs/'><?php 
    _e("Read Tutorials", 'wpsc');
    ?>
</a></p>
		</div>
		
		<div style='clear:both;'></div>
		
		<h3 class="form_group"><?php 
    echo __('Product Page Settings', 'wpsc');
    ?>
</h3>
		<table class='wpsc_options form-table'>		
		<tr>
			<th scope="row"><?php 
    echo __('Catalog View', 'wpsc');
    ?>
:</th>
			<td>
			<?php 
    $display_pnp = get_option('product_view');
    $product_view1 = null;
    $product_view2 = null;
    $product_view3 = null;
    switch ($display_pnp) {
        case "grid":
            if (function_exists('product_display_grid')) {
                $product_view3 = "selected ='selected'";
                break;
            }
        case "list":
            if (function_exists('product_display_list')) {
                $product_view2 = "selected ='selected'";
                break;
            }
        default:
            $product_view1 = "selected ='selected'";
            break;
    }
    if (get_option('list_view_quantity') == 1) {
        $list_view_quantity_value = "checked='checked'";
    } else {
        $list_view_quantity_value = '';
    }
    if (get_option('show_images_only') == 1) {
        $show_images_only_value = "checked='checked'";
    } else {
        $show_images_only_value = '';
    }
    if (get_option('display_variations') == 1) {
        $display_variations = "checked='checked'";
    } else {
        $display_variations = '';
    }
    if (get_option('display_description') == 1) {
        $display_description = "checked='checked'";
    } else {
        $display_description = '';
    }
    if (get_option('display_addtocart') == 1) {
        $display_addtocart = "checked='checked'";
    } else {
        $display_addtocart = '';
    }
    if (get_option('display_moredetails') == 1) {
        $display_moredetails = "checked='checked'";
    } else {
        $display_moredetails = '';
    }
    ?>
			<select name='wpsc_options[product_view]' onchange="toggle_display_options(this.options[this.selectedIndex].value)">
				<option value='default' <?php 
    echo $product_view1;
    ?>
><?php 
    echo __('Default View', 'wpsc');
    ?>
</option>
				<?php 
    if (function_exists('product_display_list')) {
        ?>
					<option value='list' <?php 
        echo $product_view2;
        ?>
><?php 
        echo __('List View', 'wpsc');
        ?>
</option>
					<?php 
    } else {
        ?>
					<option value='list' disabled='disabled' <?php 
        echo $product_view2;
        ?>
><?php 
        echo __('List View', 'wpsc');
        ?>
</option>
					<?php 
    }
    if (function_exists('product_display_grid')) {
        ?>
				<option value='grid' <?php 
        echo $product_view3;
        ?>
><?php 
        echo __('Grid View', 'wpsc');
        ?>
</option>
					<?php 
    } else {
        ?>
				<option value='grid' disabled='disabled' <?php 
        echo $product_view3;
        ?>
><?php 
        echo __('Grid View', 'wpsc');
        ?>
</option>
					<?php 
    }
    ?>
				</select>
				<?php 
    if (!function_exists('product_display_grid')) {
        ?>
<a href='http://getshopped.org/extend/premium-upgrades/'><?php 
        echo __('Purchase unavailable options', 'wpsc');
        ?>
</a> <?php 
    }
    ?>
					<div id='list_view_options' <?php 
    if (is_null($product_view2)) {
        echo "style='display:none;'";
    }
    ?>
 >
						<input type='checkbox' value='1' name='wpsc_options[list_view_quantity]' id='list_view_quantity' <?php 
    echo $list_view_quantity_value;
    ?>
 />
						<label for='list_view_options'><?php 
    echo __('Show quantity form in list view', 'wpsc');
    ?>
</label>
					</div>
					<div id='grid_view_options' <?php 
    echo $list_view_quantity_style;
    ?>
 <?php 
    if (is_null($product_view3)) {
        echo "style='display:none;'";
    }
    ?>
>
					
						<input type='text'  name='wpsc_options[grid_number_per_row]' id='grid_number_per_row' size='1' value='<?php 
    echo get_option('grid_number_per_row');
    ?>
' />
						<label for='grid_number_per_row'><?php 
    echo __('Products Per Row', 'wpsc');
    ?>
</label><br />
						
						
						<input type='hidden' value='0' name='wpsc_options[show_images_only]' />
						<input type='checkbox' value='1' name='wpsc_options[show_images_only]' id='show_images_only' <?php 
    echo $show_images_only_value;
    ?>
 />
						<label for='show_images_only'><?php 
    echo __('Show images only', 'wpsc');
    ?>
</label><br />
						
						
						<input type='hidden' value='0' name='wpsc_options[display_variations]' />
						<input type='checkbox' value='1' name='wpsc_options[display_variations]' id='display_variations' <?php 
    echo $display_variations;
    ?>
 />
						<label for='display_variations'><?php 
    echo __('Display Variations', 'wpsc');
    ?>
</label><br />
						
						
						<input type='hidden' value='0' name='wpsc_options[display_description]' />
						<input type='checkbox' value='1' name='wpsc_options[display_description]' id='display_description' <?php 
    echo $display_description;
    ?>
 />
						<label for='display_description'><?php 
    echo __('Display Description', 'wpsc');
    ?>
</label><br />
						
						
						<input type='hidden' value='0' name='wpsc_options[display_addtocart]' />
						<input type='checkbox' value='1' name='wpsc_options[display_addtocart]' id='display_addtocart' <?php 
    echo $display_addtocart;
    ?>
 />
						<label for='display_addtocart'><?php 
    echo __('Display "Add To Cart" Button', 'wpsc');
    ?>
</label><br />
						
						<input type='hidden' value='0' name='wpsc_options[display_moredetails]' />
						<input type='checkbox' value='1' name='wpsc_options[display_moredetails]' id='display_moredetails' <?php 
    echo $display_moredetails;
    ?>
 />
						<label for='display_moredetails'><?php 
    echo __('Display "More Details" Button', 'wpsc');
    ?>
</label>

					</div>
				</td>
			</tr>
			<?php 
    //  }
    ?>
			
								
			<tr>
				<th scope="row"><?php 
    echo __('Theme', 'wpsc');
    ?>
:</th>
				<td>
				<?php 
    echo wpsc_list_product_themes();
    ?>
				</td>
			</tr>

			<tr>
				<th scope="row"><?php 
    echo __('Product page displays', 'wpsc');
    ?>
:</th>
				<td>
				<?php 
    echo options_categorylist();
    ?>
				</td>
			</tr>
			<?php 
    $wpsc_sort_by = get_option('wpsc_sort_by');
    switch ($wpsc_sort_by) {
        case 'name':
            $wpsc_sort_by1 = "selected ='selected'";
            break;
        case 'price':
            $wpsc_sort_by2 = "selected ='selected'";
            break;
        case 'dragndrop':
            $wpsc_sort_by4 = "selected='selected'";
            break;
        case 'id':
        default:
            $wpsc_sort_by3 = "selected ='selected'";
            break;
    }
    ?>
			<tr>
				<th scope="row">
					<?php 
    echo __('Sort Products By', 'wpsc');
    ?>
:
				</th>
				<td>
					<select name='wpsc_options[wpsc_sort_by]'>
					<option <?php 
    echo $wpsc_sort_by1;
    ?>
 value='name'><?php 
    echo __('Name', 'wpsc');
    ?>
</option>
					<option <?php 
    echo $wpsc_sort_by2;
    ?>
 value='price'><?php 
    echo __('Price', 'wpsc');
    ?>
</option>
					<option <?php 
    echo $wpsc_sort_by4;
    ?>
 value='dragndrop'><?php 
    echo __('Drag &amp; Drop', 'wpsc');
    ?>
</option>
					<option <?php 
    echo $wpsc_sort_by3;
    ?>
 value='id'><?php 
    echo __('Time Uploaded', 'wpsc');
    ?>
</option>
					</select><br />
					<?php 
    _e('If you have used the drag-drop interface on the edit-products page to order your products then you must use the Drag &amp; Drop option.', 'wpsc');
    ?>
				</td>
			</tr>
			<tr>
				<th scope="row"><?php 
    echo __('Show Breadcrumbs', 'wpsc');
    ?>
:</th>
				<td>
				<?php 
    $show_breadcrumbs = get_option('show_breadcrumbs');
    $show_breadcrumbs1 = "";
    $show_breadcrumbs2 = "";
    switch ($show_breadcrumbs) {
        case 0:
            $show_breadcrumbs2 = "checked ='checked'";
            break;
        case 1:
            $show_breadcrumbs1 = "checked ='checked'";
            break;
    }
    ?>
				<input type='radio' value='1' name='wpsc_options[show_breadcrumbs]' id='show_breadcrumbs1' <?php 
    echo $show_breadcrumbs1;
    ?>
 /> <label for='show_breadcrumbs1'><?php 
    echo __('Yes', 'wpsc');
    ?>
</label> &nbsp;
				<input type='radio' value='0' name='wpsc_options[show_breadcrumbs]' id='show_breadcrumbs2' <?php 
    echo $show_breadcrumbs2;
    ?>
 /> <label for='show_breadcrumbs2'><?php 
    echo __('No', 'wpsc');
    ?>
</label>
				</td>
			</tr>							
	

				
			<tr>
				<th scope="row">
				<?php 
    echo __('Product Groups/Products Display', 'wpsc');
    ?>
:
				</th>
				<td>
				<?php 
    $display_pnp = get_option('catsprods_display_type');
    $catsprods_display_type1 = "";
    $catsprods_display_type2 = "";
    switch ($display_pnp) {
        case 0:
            $catsprods_display_type1 = "checked ='checked'";
            break;
        case 1:
            $catsprods_display_type2 = "checked ='checked'";
            break;
    }
    ?>
				<input type='radio' value='0' name='wpsc_options[catsprods_display_type]' id='catsprods_display_type1' <?php 
    echo $catsprods_display_type1;
    ?>
 /> <label for='catsprods_display_type1'><?php 
    echo __('Product Groups Only (All products displayed)', 'wpsc');
    ?>
</label> &nbsp;
				<input type='radio' value='1' name='wpsc_options[catsprods_display_type]' id='catsprods_display_type2' <?php 
    echo $catsprods_display_type2;
    ?>
 /> <label for='catsprods_display_type2'><?php 
    echo __('Sliding Product Groups (1 product per page)', 'wpsc');
    ?>
</label>
				</td>
			</tr>
			
			
			<tr>
				<th scope="row">
					<?php 
    echo __('Show Subcategory Products in Parent Category', 'wpsc');
    ?>
:
				</th>
				<td>
					<?php 
    $show_subcatsprods_in_cat = get_option('show_subcatsprods_in_cat');
    $show_subcatsprods_in_cat_on = '';
    $show_subcatsprods_in_cat_off = '';
    switch ($show_subcatsprods_in_cat) {
        case 1:
            $show_subcatsprods_in_cat_on = 'checked="checked"';
            break;
        case 0:
            $show_subcatsprods_in_cat_off = 'checked="checked"';
            break;
    }
    ?>
					<input type="radio" value="1" name="wpsc_options[show_subcatsprods_in_cat]" id="show_subcatsprods_in_cat_on" <?php 
    echo $show_subcatsprods_in_cat_on;
    ?>
 /> <label for="show_subcatsprods_in_cat_on"><?php 
    echo __('Yes', 'wpsc');
    ?>
</label> &nbsp;
					<input type="radio" value="0" name="wpsc_options[show_subcatsprods_in_cat]" id="show_subcatsprods_in_cat_off" <?php 
    echo $show_subcatsprods_in_cat_off;
    ?>
 /> <label for="show_subcatsprods_in_cat_off"><?php 
    echo __('No', 'wpsc');
    ?>
</label>
				</td>
			</tr>
			
			
	<?php 
    if (function_exists('gold_shpcrt_search_form')) {
        ?>
			<tr>
				<th scope="row"><?php 
        echo __('Show Search', 'wpsc');
        ?>
:</th>
				<td>
				<?php 
        $display_pnp = get_option('show_search');
        $show_search1 = "";
        $show_search2 = "";
        switch ($display_pnp) {
            case 0:
                $show_search2 = "checked ='checked'";
                break;
            case 1:
                $show_search1 = "checked ='checked'";
                break;
        }
        $display_advanced_search = get_option('show_advanced_search');
        $show_advanced_search = "";
        if ($display_advanced_search == 1) {
            $show_advanced_search = "checked ='checked'";
        }
        $display_live_search = get_option('show_live_search');
        if ($display_live_search == 1) {
            $show_live_search = "checked ='checked'";
        }
        if ($show_search1 != "checked ='checked'") {
            $dis = "style='display:none;'";
        }
        ?>
				<input type='radio' onclick='jQuery("#wpsc_advanced_search").show()' value='1' name='wpsc_options[show_search]' id='show_search1' <?php 
        echo $show_search1;
        ?>
 /> <label for='show_search1'><?php 
        echo __('Yes', 'wpsc');
        ?>
</label> &nbsp;
				<input type='radio' onclick='jQuery("#wpsc_advanced_search").hide()' value='0' name='wpsc_options[show_search]' id='show_search2' <?php 
        echo $show_search2;
        ?>
 /> <label for='show_search2'><?php 
        echo __('No', 'wpsc');
        ?>
</label>
				
			<div <?php 
        echo $dis;
        ?>
 id='wpsc_advanced_search'>
				<input  type='hidden' name='wpsc_options[show_advanced_search]' value='0' />
				<input  type='checkbox' name='wpsc_options[show_advanced_search]' id='show_advanced_search' <?php 
        echo $show_advanced_search;
        ?>
  value='1' />
				<?php 
        echo __('Show Advanced Search', 'wpsc');
        ?>
<br />
				<input type='hidden' name='wpsc_options[show_live_search]' value='0' />
				<input type='checkbox' name='wpsc_options[show_live_search]' id='show_live_search' <?php 
        echo $show_live_search;
        ?>
 value='1' />
				<?php 
        echo __('Use Live Search', 'wpsc');
        ?>
			</div>
			
				</td>
			</tr>
		<?php 
    }
    ?>

	
			<tr>
				<th scope="row"><?php 
    echo __('Replace Page Title With Product/Category Name', 'wpsc');
    ?>
:</th>
				<td>
				<?php 
    $wpsc_replace_page_title = get_option('wpsc_replace_page_title');
    $wpsc_replace_page_title1 = "";
    $wpsc_replace_page_title2 = "";
    switch ($wpsc_replace_page_title) {
        case 0:
            $wpsc_replace_page_title2 = "checked ='checked'";
            break;
        case 1:
            $wpsc_replace_page_title1 = "checked ='checked'";
            break;
    }
    ?>
				<input type='radio' value='1' name='wpsc_options[wpsc_replace_page_title]' id='wpsc_replace_page_title1' <?php 
    echo $wpsc_replace_page_title1;
    ?>
 /> <label for='wpsc_replace_page_title1'><?php 
    echo __('Yes', 'wpsc');
    ?>
</label> &nbsp;
				<input type='radio' value='0' name='wpsc_options[wpsc_replace_page_title]' id='wpsc_replace_page_title2' <?php 
    echo $wpsc_replace_page_title2;
    ?>
 /> <label for='wpsc_replace_page_title2'><?php 
    echo __('No', 'wpsc');
    ?>
</label>
				</td>
			</tr>	
		</table> 
		
		<h3 class="form_group"><?php 
    echo __('Shopping Cart Settings', 'wpsc');
    ?>
</h3>
		<table class='wpsc_options form-table'>
			<tr>
				<th scope="row"><?php 
    echo __('Cart Location', 'wpsc');
    ?>
:</th>
				<td>
				<?php 
    $cart_location = get_option('cart_location');
    $cart1 = "";
    $cart2 = "";
    switch ($cart_location) {
        case 1:
            $cart1 = "checked ='checked'";
            break;
        case 2:
            $cart2 = "checked ='checked'";
            break;
        case 3:
            $cart3 = "checked ='checked'";
            break;
        case 4:
            $cart4 = "checked ='checked'";
            break;
        case 5:
            $cart5 = "checked ='checked'";
            break;
    }
    if (function_exists('register_sidebar_widget')) {
        ?>
					<input type='radio' value='1' onclick='hideelement1("dropshop_option", this.value)' disabled='disabled'  name='wpsc_options[cart_location]' id='cart1' <?php 
        echo $cart1;
        ?>
 /> <label style='color: #666666;' for='cart1'><?php 
        echo __('Sidebar', 'wpsc');
        ?>
</label> &nbsp;
					<?php 
    } else {
        ?>
					<input type='radio' value='1' name='wpsc_options[cart_location]' id='cart1' <?php 
        echo $cart1;
        ?>
 /> <label for='cart1'><?php 
        echo __('Sidebar', 'wpsc');
        ?>
</label> &nbsp;
					<?php 
    }
    ?>
				<input type='radio' onclick='hideelement1("dropshop_option", this.value)' value='2' name='wpsc_options[cart_location]' id='cart2' <?php 
    echo $cart2;
    ?>
 /> <label for='cart2'><?php 
    echo __('Page', 'wpsc');
    ?>
</label> &nbsp;
				<?php 
    if (function_exists('register_sidebar_widget')) {
        ?>
					<input type='radio' value='4' onclick='hideelement1("dropshop_option", this.value)' name='wpsc_options[cart_location]' id='cart4' <?php 
        echo $cart4;
        ?>
 /> <label for='cart4'><?php 
        echo __('Widget', 'wpsc');
        ?>
</label> &nbsp;
					<?php 
    } else {
        ?>
					<input type='radio'  disabled='disabled' value='4' name='wpsc_options[cart_location]' id='cart4' alt='<?php 
        echo __('You need to enable the widgets plugin to use this', 'wpsc');
        ?>
' title='<?php 
        echo __('You need to enable the widgets plugin to use this', 'wpsc');
        ?>
' <?php 
        echo $cart4;
        ?>
 /> <label style='color: #666666;' for='cart4' title='<?php 
        echo __('You need to enable the widgets plugin to use this', 'wpsc');
        ?>
'><?php 
        echo __('Widget', 'wpsc');
        ?>
</label> &nbsp;
					<?php 
    }
    if (function_exists('drag_and_drop_cart')) {
        ?>
					<input type='radio' onclick='hideelement1("dropshop_option", this.value)' value='5' name='wpsc_options[cart_location]' id='cart5' <?php 
        echo $cart5;
        ?>
 /> <label for='cart5'><?php 
        echo __('DropShop', 'wpsc');
        ?>
</label> &nbsp;
					<?php 
    } else {
        ?>
					<input type='radio' disabled='disabled' value='5' name='wpsc_options[cart_location]' id='cart5' alt='<?php 
        echo __('You need to enable the widgets plugin to use this', 'wpsc');
        ?>
' title='<?php 
        echo __('You need to install the Gold and DropShop extentions to use this', 'wpsc');
        ?>
' <?php 
        echo $cart5;
        ?>
 /> <label style='color: #666666;' for='cart5' title='<?php 
        echo __('You need to install the Gold and DropShop extentions to use this', 'wpsc');
        ?>
'><?php 
        echo __('DropShop', 'wpsc');
        ?>
</label> &nbsp;
					<?php 
    }
    ?>
				<input type='radio' onclick='hideelement1("dropshop_option", this.value)' value='3' name='wpsc_options[cart_location]' id='cart3' <?php 
    echo $cart3;
    ?>
 /> <label for='cart3'><?php 
    echo __('Manual', 'wpsc');
    ?>
 <span style='font-size: 7pt;'>(PHP code: &lt;?php echo nzshpcrt_shopping_basket(); ?&gt; )</span></label>
		<div  style='display: <?php 
    if (isset($cart5)) {
        echo "block";
    } else {
        echo "none";
    }
    ?>
;'  id='dropshop_option'>
		<p>
		<input type="radio" id="drop1" value="all" <?php 
    if (get_option('dropshop_display') == 'all') {
        echo "checked='checked'";
    }
    ?>
 name="wpsc_options[dropshop_display]" /><label for="drop1"><?php 
    echo __('Show Dropshop on every page', 'wpsc');
    ?>
</label>
		<input type="radio" id="drop2" value="product" <?php 
    if (get_option('dropshop_display') == 'product') {
        echo "checked='checked'";
    }
    ?>
 name="wpsc_options[dropshop_display]"/><label for="drop2"><?php 
    echo __('Show Dropshop only on product page', 'wpsc');
    ?>
</label>
		</p>
		<p>
		<input type="radio" id="wpsc_dropshop_theme1" value="light" <?php 
    if (get_option('wpsc_dropshop_theme') != 'dark') {
        echo "checked='checked'";
    }
    ?>
 name="wpsc_options[wpsc_dropshop_theme]" /><label for="wpsc_dropshop_theme1"><?php 
    echo __('Use light Dropshop style', 'wpsc');
    ?>
</label>
		<input type="radio" id="wpsc_dropshop_theme2" value="dark" <?php 
    if (get_option('wpsc_dropshop_theme') == 'dark') {
        echo "checked='checked'";
    }
    ?>
 name="wpsc_options[wpsc_dropshop_theme]"/><label for="wpsc_dropshop_theme2"><?php 
    echo __('Use dark Dropshop style', 'wpsc');
    ?>
</label>
		<input type="radio" id="wpsc_dropshop_theme3" value="craftyc" <?php 
    if (get_option('wpsc_dropshop_theme') == 'craftyc') {
        echo "checked='checked'";
    }
    ?>
 name="wpsc_options[wpsc_dropshop_theme]"/><label for="wpsc_dropshop_theme2"><?php 
    echo __('Crafty', 'wpsc');
    ?>
</label>
		
		</p>
		</div>
				</td>
			</tr>
			
			
<tr>
					<th scope="row">
					<?php 
    echo __('Use Sliding Cart', 'wpsc');
    ?>
:
					</th>
					<td>
					<?php 
    $display_pnp = get_option('show_sliding_cart');
    $show_sliding_cart1 = "";
    $show_sliding_cart2 = "";
    switch ($display_pnp) {
        case 0:
            $show_sliding_cart2 = "checked ='checked'";
            break;
        case 1:
            $show_sliding_cart1 = "checked ='checked'";
            break;
    }
    ?>
					<input type='radio' value='1' name='wpsc_options[show_sliding_cart]' id='show_sliding_cart1' <?php 
    echo $show_sliding_cart1;
    ?>
 /> <label for='show_sliding_cart1'><?php 
    echo __('Yes', 'wpsc');
    ?>
</label> &nbsp;
					<input type='radio' value='0' name='wpsc_options[show_sliding_cart]' id='show_sliding_cart2' <?php 
    echo $show_sliding_cart2;
    ?>
 /> <label for='show_sliding_cart2'><?php 
    echo __('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>
				
			<tr>
				<th scope="row">
				<?php 
    echo __('Display "+ Postage & Tax"', 'wpsc');
    ?>
:
				</th>
				<td>
				<?php 
    $add_plustax = get_option('add_plustax');
    $add_plustax1 = "";
    $add_plustax2 = "";
    switch ($add_plustax) {
        case 0:
            $add_plustax2 = "checked ='checked'";
            break;
        case 1:
            $add_plustax1 = "checked ='checked'";
            break;
    }
    ?>
				<input type='radio' value='1' name='wpsc_options[add_plustax]' id='add_plustax1' <?php 
    echo $add_plustax1;
    ?>
 /> <label for='add_plustax1'><?php 
    echo __('Yes', 'wpsc');
    ?>
</label> &nbsp;
				<input type='radio' value='0' name='wpsc_options[add_plustax]' id='add_plustax2' <?php 
    echo $add_plustax2;
    ?>
 /> <label for='add_plustax2'><?php 
    echo __('No', 'wpsc');
    ?>
</label>
				</td>
			</tr>
			
			</table> 
			
			
			
			<h3 class="form_group"><?php 
    echo __('Product Group Settings', 'wpsc');
    ?>
</h3>
			<table class='wpsc_options form-table'>
				
				<tr>
					<th scope="row"><?php 
    echo __('Show Product Group Description', 'wpsc');
    ?>
:</th>
					<td>
					<?php 
    $wpsc_category_description = get_option('wpsc_category_description');
    $wpsc_category_description1 = "";
    $wpsc_category_description2 = "";
    switch ($wpsc_category_description) {
        case '1':
            $wpsc_category_description1 = "checked ='checked'";
            break;
        case '0':
        default:
            $wpsc_category_description2 = "checked ='checked'";
            break;
    }
    ?>
					<input type='radio' value='1' name='wpsc_options[wpsc_category_description]' id='wpsc_category_description1' <?php 
    echo $wpsc_category_description1;
    ?>
 /> <label for='wpsc_category_description1'><?php 
    echo __('Yes', 'wpsc');
    ?>
</label> &nbsp;
					<input type='radio' value='0' name='wpsc_options[wpsc_category_description]' id='wpsc_category_description2' <?php 
    echo $wpsc_category_description2;
    ?>
 /> <label for='wpsc_category_description2'><?php 
    echo __('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>
				
				<tr>
					<th scope="row">
					<?php 
    echo __('Show Product Group Thumbnails', 'wpsc');
    ?>
:
					</th>
					<td>
					<?php 
    $show_category_thumbnails = get_option('show_category_thumbnails');
    $show_category_thumbnails1 = "";
    $show_category_thumbnails2 = "";
    switch ($show_category_thumbnails) {
        case 0:
            $show_category_thumbnails2 = "checked ='checked'";
            break;
        case 1:
            $show_category_thumbnails1 = "checked ='checked'";
            break;
    }
    ?>
					<input type='radio' value='1' name='wpsc_options[show_category_thumbnails]' id='show_category_thumbnails1' <?php 
    echo $show_category_thumbnails1;
    ?>
 /> <label for='show_category_thumbnails1'><?php 
    echo __('Yes', 'wpsc');
    ?>
</label> &nbsp;
					<input type='radio' value='0' name='wpsc_options[show_category_thumbnails]' id='show_category_thumbnails2' <?php 
    echo $show_category_thumbnails2;
    ?>
 /> <label for='show_category_thumbnails2'><?php 
    echo __('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>
				
				<!-- // Adrian - options for displaying number of products per category -->      
					
				<tr>
					<th scope="row">
					<?php 
    echo __('Show Product Count per Product Group', 'wpsc');
    ?>
:
					</th>
					<td>
					<?php 
    $display_pnp = get_option('show_category_count');
    $show_category_count1 = "";
    $show_category_count2 = "";
    switch ($display_pnp) {
        case 0:
            $show_category_count2 = "checked ='checked'";
            break;
        case 1:
            $show_category_count1 = "checked ='checked'";
            break;
    }
    ?>
					<input type='radio' value='1' name='wpsc_options[show_category_count]' id='show_category_count1' <?php 
    echo $show_category_count1;
    ?>
 /> <label for='show_category_count1'><?php 
    echo __('Yes', 'wpsc');
    ?>
</label> &nbsp;
					<input type='radio' value='0' name='wpsc_options[show_category_count]' id='show_category_count2' <?php 
    echo $show_category_count2;
    ?>
 /> <label for='show_category_count2'><?php 
    echo __('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>
					
				<!-- // Adrian - options for displaying category display type -->      
				
				<tr>
					<th scope="row"><?php 
    _e("Use Category Grid View", 'wpsc');
    ?>
:</th>
					<td>
					<?php 
    $wpsc_category_grid_view = get_option('wpsc_category_grid_view');
    $wpsc_category_grid_view1 = "";
    $wpsc_category_grid_view2 = "";
    switch ($wpsc_category_grid_view) {
        case '1':
            $wpsc_category_grid_view1 = "checked ='checked'";
            break;
        case '0':
        default:
            $wpsc_category_grid_view2 = "checked ='checked'";
            break;
    }
    ?>
					<input type='radio' value='1' name='wpsc_options[wpsc_category_grid_view]' id='wpsc_category_grid_view1' <?php 
    echo $wpsc_category_grid_view1;
    ?>
 /> <label for='wpsc_category_grid_view1'><?php 
    echo __('Yes', 'wpsc');
    ?>
</label> &nbsp;
					<input type='radio' value='0' name='wpsc_options[wpsc_category_grid_view]' id='wpsc_category_grid_view2' <?php 
    echo $wpsc_category_grid_view2;
    ?>
 /> <label for='wpsc_category_grid_view2'><?php 
    echo __('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>
			</table> 
			
			
			<h3 class="form_group"><a name='thumb_settings'><?php 
    echo __('Thumbnail Settings', 'wpsc');
    ?>
</a></h3>
			<table class='wpsc_options form-table'>
			<?php 
    if (function_exists("getimagesize")) {
        ?>
					<tr>
						<th scope="row"><?php 
        echo __('Default Product Thumbnail Size', 'wpsc');
        ?>
:</th>
						<td>
							<?php 
        echo __('Height', 'wpsc');
        ?>
:<input type='text' size='6' name='wpsc_options[product_image_height]' class='wpsc_prod_thumb_option' value='<?php 
        echo get_option('product_image_height');
        ?>
' />
							<?php 
        echo __('Width', 'wpsc');
        ?>
:<input type='text' size='6' name='wpsc_options[product_image_width]' class='wpsc_prod_thumb_option' value='<?php 
        echo get_option('product_image_width');
        ?>
' />
							<a href="<?php 
        echo wp_nonce_url("admin.php?wpsc_admin_action=mass_resize_thumbnails", 'mass_resize');
        ?>
" style='visibility:hidden;' class='wpsc_mass_resize' ><?php 
        _e("Resize Existing Thumbnails", 'wpsc');
        ?>
</a>
						<br />
						</td>
					</tr>
					<tr>
						<th scope="row">
						<?php 
        echo __('Default Product Group Thumbnail Size', 'wpsc');
        ?>
:
						</th>
						<td>
						<?php 
        echo __('Height', 'wpsc');
        ?>
:<input type='text' size='6' name='wpsc_options[category_image_height]' value='<?php 
        echo get_option('category_image_height');
        ?>
' /> <?php 
        echo __('Width', 'wpsc');
        ?>
:<input type='text' size='6' name='wpsc_options[category_image_width]' value='<?php 
        echo get_option('category_image_width');
        ?>
' /> 
						</td>
					</tr>
					
					<tr>
						<th scope="row">
						<?php 
        echo __('Single Product Image Size', 'wpsc');
        ?>
:
						</th>
						<td>
						<?php 
        echo __('Height', 'wpsc');
        ?>
:<input type='text' size='6' name='wpsc_options[single_view_image_height]' value='<?php 
        echo get_option('single_view_image_height');
        ?>
' /> <?php 
        echo __('Width', 'wpsc');
        ?>
:<input type='text' size='6' name='wpsc_options[single_view_image_width]' value='<?php 
        echo get_option('single_view_image_width');
        ?>
' /> 
						</td>
					</tr>
					<?php 
    }
    ?>
            
		
				<tr>
					<th scope="row"><?php 
    echo __('Show Thumbnails', 'wpsc');
    ?>
:</th>
					<td>
					<?php 
    $show_thumbnails = get_option('show_thumbnails');
    $show_thumbnails1 = "";
    $show_thumbnails2 = "";
    switch ($show_thumbnails) {
        case 0:
            $show_thumbnails2 = "checked ='checked'";
            break;
        case 1:
            $show_thumbnails1 = "checked ='checked'";
            break;
    }
    ?>
					<input type='radio' value='1' name='wpsc_options[show_thumbnails]' id='show_thumbnails1' <?php 
    echo $show_thumbnails1;
    ?>
 /> <label for='show_thumbnails1'><?php 
    echo __('Yes', 'wpsc');
    ?>
</label> &nbsp;
					<input type='radio' value='0' name='wpsc_options[show_thumbnails]' id='show_thumbnails2' <?php 
    echo $show_thumbnails2;
    ?>
 /> <label for='show_thumbnails2'><?php 
    echo __('No', 'wpsc');
    ?>
</label>
					</td>
				</tr>
				<?php 
    if (function_exists('gold_shpcrt_display_gallery')) {
        ?>
						<tr>
							<th scope="row">
							<?php 
        echo __('Show Thumbnail Gallery', 'wpsc');
        ?>
:
							</th>
							<td>
							<?php 
        $display_pnp = get_option('show_gallery');
        $show_gallery1 = "";
        $show_gallery2 = "";
        switch ($display_pnp) {
            case 0:
                $show_gallery2 = "checked ='checked'";
                break;
            case 1:
                $show_gallery1 = "checked ='checked'";
                break;
        }
        ?>
							<input type='radio' value='1' name='wpsc_options[show_gallery]' id='show_gallery1' <?php 
        echo $show_gallery1;
        ?>
 /> <label for='show_gallery1'><?php 
        echo __('Yes', 'wpsc');
        ?>
</label> &nbsp;
							<input type='radio' value='0' name='wpsc_options[show_gallery]' id='show_gallery2' <?php 
        echo $show_gallery2;
        ?>
 /> <label for='show_gallery2'><?php 
        echo __('No', 'wpsc');
        ?>
</label>
							</td>
						</tr>
						
						<tr>
							<th scope="row">
								<?php 
        _e("Gallery Thumbnail Image Size");
        ?>
:
							</th>
							<td>
								<?php 
        echo __('Height', 'wpsc');
        ?>
:<input type='text' size='6' name='wpsc_options[wpsc_gallery_image_height]' value='<?php 
        echo get_option('wpsc_gallery_image_height');
        ?>
' />
								<?php 
        echo __('Width', 'wpsc');
        ?>
:<input type='text' size='6' name='wpsc_options[wpsc_gallery_image_width]' value='<?php 
        echo get_option('wpsc_gallery_image_width');
        ?>
' /> <br />
								
							</td>
						</tr>
						<?php 
    }
    ?>
			</table>
			
					
			<h3 class="form_group"><?php 
    echo __('Pagination settings', 'wpsc');
    ?>
</h3>
			<table class='wpsc_options form-table'>
				<tr>
					<th scope="row">
					<?php 
    echo __('Use Pagination', 'wpsc');
    ?>
:
					</th>
					<td>
					<?php 
    $use_pagination = get_option('use_pagination');
    $use_pagination1 = "";
    $use_pagination2 = "";
    switch ($use_pagination) {
        case 0:
            $use_pagination2 = "checked ='checked'";
            $page_count_display_state = 'style=\'display: none;\'';
            break;
        case 1:
            $use_pagination1 = "checked ='checked'";
            $page_count_display_state = '';
            break;
    }
    ?>
					<input onclick='jQuery("#wpsc_products_per_page").show()'  type='radio' value='1' name='wpsc_options[use_pagination]' id='use_pagination1' <?php 
    echo $use_pagination1;
    ?>
 /> <label for='use_pagination1'><?php 
    echo __('Yes', 'wpsc');
    ?>
</label> &nbsp;
					<input onclick='jQuery("#wpsc_products_per_page").hide()' type='radio' value='0' name='wpsc_options[use_pagination]' id='use_pagination2' <?php 
    echo $use_pagination2;
    ?>
 /> <label for='use_pagination2'><?php 
    echo __('No', 'wpsc');
    ?>
</label><br />
					<div id='wpsc_products_per_page' <?php 
    echo $page_count_display_state;
    ?>
 >
					<input type='text' size='6' name='wpsc_options[wpsc_products_per_page]' value='<?php 
    echo get_option('wpsc_products_per_page');
    ?>
' /> <?php 
    echo __('number of products to show per page', 'wpsc');
    ?>
					</div>
					</td>
				</tr>
				
				<tr>
					<th scope="row">
						<?php 
    echo __('Page Number position', 'wpsc');
    ?>
:
					</th>
					<td>
						<input type='radio' value='1' name='wpsc_options[wpsc_page_number_position]' id='wpsc_page_number_position1' <?php 
    if (get_option('wpsc_page_number_position') == 1) {
        echo "checked='checked'";
    }
    ?>
 /><label for='wpsc_page_number_position1'><?php 
    echo __('Top', 'wpsc');
    ?>
</label>&nbsp;
						<input type='radio' value='2' name='wpsc_options[wpsc_page_number_position]' id='wpsc_page_number_position2' <?php 
    if (get_option('wpsc_page_number_position') == 2) {
        echo "checked='checked'";
    }
    ?>
 /><label for='wpsc_page_number_position2'><?php 
    echo __('Bottom', 'wpsc');
    ?>
</label>&nbsp;
						<input type='radio' value='3' name='wpsc_options[wpsc_page_number_position]' id='wpsc_page_number_position3' <?php 
    if (get_option('wpsc_page_number_position') == 3) {
        echo "checked='checked'";
    }
    ?>
 /><label for='wpsc_page_number_position3'><?php 
    echo __('Both', 'wpsc');
    ?>
</label>
						<br />
					</td>
				</tr>    
			</table>
	
				
			<h3 class="form_group"><?php 
    echo __('Comment Settings', 'wpsc');
    ?>
</h3>
			<table class='wpsc_options form-table'>
				<tr>
					<th scope="row">
					<?php 
    echo __('Use IntenseDebate Comments', 'wpsc');
    ?>
:
					<a href="http://intensedebate.com/" title="IntenseDebate comments enhance and encourage conversation on your blog or website" target="_blank"><img src="<?php 
    echo WPSC_URL;
    ?>
/images/intensedebate-logo.png" alt="intensedebate-logo" title="IntenseDebate"/></a>
					</th>
					<td>
					<?php 
    $enable_comments = get_option('wpsc_enable_comments');
    $enable_comments1 = "";
    $enable_comments2 = "";
    switch ($enable_comments) {
        case 1:
            $enable_comments1 = "checked ='checked'";
            $intense_debate_account_id_display_state = '';
            break;
        default:
        case 0:
            $enable_comments2 = "checked ='checked'";
            $intense_debate_account_id_display_state = 'style=\'display: none;\'';
            break;
    }
    ?>
					<input onclick='jQuery("#wpsc_enable_comments,.wpsc_comments_details").show()'  type='radio' value='1' name='wpsc_options[wpsc_enable_comments]' id='wpsc_enable_comments1' <?php 
    echo $enable_comments1;
    ?>
 /> <label for='wpsc_enable_comments1'><?php 
    echo __('Yes', 'wpsc');
    ?>
</label> &nbsp;
					<input onclick='jQuery("#wpsc_enable_comments,.wpsc_comments_details").hide()' type='radio' value='0' name='wpsc_options[wpsc_enable_comments]' id='wpsc_enable_comments2' <?php 
    echo $enable_comments2;
    ?>
 /> <label for='wpsc_enable_comments1'><?php 
    echo __('No', 'wpsc');
    ?>
</label><br />
					<div id='wpsc_enable_comments' <?php 
    echo $intense_debate_account_id_display_state;
    ?>
 >
					<?php 
    echo __('IntenseDebate Account ID', 'wpsc');
    ?>
:<br/>
					<input type='text' size='30' name='wpsc_options[wpsc_intense_debate_account_id]' value='<?php 
    echo get_option('wpsc_intense_debate_account_id');
    ?>
' /><br/>
					<small><a href='http://intensedebate.com/sitekey/' title='Help finding the Account ID'><?php 
    _e('Help on finding the Account ID');
    ?>
</a></small>
					</div>
					</td>
				</tr>
		
				<tr>
					
					<th scope="row">
					<div class='wpsc_comments_details' <?php 
    echo $intense_debate_account_id_display_state;
    ?>
 >
						<?php 
    echo __('By Default Display Comments on', 'wpsc');
    ?>
:
					</div>
					</th>
					<td>
					<div class='wpsc_comments_details' <?php 
    echo $intense_debate_account_id_display_state;
    ?>
 >
						<input type='radio' value='1' name='wpsc_options[wpsc_comments_which_products]' id='wpsc_comments_which_products1' <?php 
    if (get_option('wpsc_comments_which_products') == 1 || !get_option('wpsc_comments_which_products')) {
        echo "checked='checked'";
    }
    ?>
 /><label for='wpsc_comments_which_products1'>All Products</label>&nbsp;
						<input type='radio' value='2' name='wpsc_options[wpsc_comments_which_products]' id='wpsc_comments_which_products2' <?php 
    if (get_option('wpsc_comments_which_products') == 2) {
        echo "checked='checked'";
    }
    ?>
 /><label for='wpsc_comments_which_products2'>Per Product</label>&nbsp;
						<br />
					</div>
					</td>
					
				</tr>
			</table> 
			
			<?php 
    /* here end the presentation options */
    ?>
			<div class="submit">
				<input type='hidden' name='wpsc_admin_action' value='submit_options' />
				<?php 
    wp_nonce_field('update-options', 'wpsc-update-options');
    ?>
				<input type="submit" value="<?php 
    echo __('Update &raquo;', 'wpsc');
    ?>
" name="updateoption" />
			</div>
		</div>
		</form>				
<?php 
}