Copy tweaks for catalog visibility

Ref #15604
This commit is contained in:
Mike Jolley 2017-06-14 12:07:20 +01:00
parent 66259ebff1
commit 4a4e201888
2 changed files with 5 additions and 7 deletions

View File

@ -1830,15 +1830,13 @@ class WC_Admin_Post_Types {
<input type="hidden" name="current_featured" id="current_featured" value="<?php echo esc_attr( $current_featured ); ?>" /> <input type="hidden" name="current_featured" id="current_featured" value="<?php echo esc_attr( $current_featured ); ?>" />
<?php <?php
echo '<p>' . __( 'Choose where this product should be displayed in your catalog. The product will always be accessible directly.', 'woocommerce' ) . '</p>'; echo '<p>' . __( 'This setting determines which shop pages products will be listed on.', 'woocommerce' ) . '</p>';
foreach ( $visibility_options as $name => $label ) { foreach ( $visibility_options as $name => $label ) {
echo '<input type="radio" name="_visibility" id="_visibility_' . esc_attr( $name ) . '" value="' . esc_attr( $name ) . '" ' . checked( $current_visibility, $name, false ) . ' data-label="' . esc_attr( $label ) . '" /> <label for="_visibility_' . esc_attr( $name ) . '" class="selectit">' . esc_html( $label ) . '</label><br />'; echo '<input type="radio" name="_visibility" id="_visibility_' . esc_attr( $name ) . '" value="' . esc_attr( $name ) . '" ' . checked( $current_visibility, $name, false ) . ' data-label="' . esc_attr( $label ) . '" /> <label for="_visibility_' . esc_attr( $name ) . '" class="selectit">' . esc_html( $label ) . '</label><br />';
} }
echo '<p>' . __( 'Enable this option to feature this product.', 'woocommerce' ) . '</p>'; echo '<br /><input type="checkbox" name="_featured" id="_featured" ' . checked( $current_featured, 'yes', false ) . ' /> <label for="_featured">' . __( 'This is a featured product', 'woocommerce' ) . '</label><br />';
echo '<input type="checkbox" name="_featured" id="_featured" ' . checked( $current_featured, 'yes', false ) . ' /> <label for="_featured">' . __( 'Featured product', 'woocommerce' ) . '</label><br />';
?> ?>
<p> <p>
<a href="#catalog-visibility" class="save-post-visibility hide-if-no-js button"><?php _e( 'OK', 'woocommerce' ); ?></a> <a href="#catalog-visibility" class="save-post-visibility hide-if-no-js button"><?php _e( 'OK', 'woocommerce' ); ?></a>

View File

@ -746,9 +746,9 @@ function wc_get_product_attachment_props( $attachment_id = null, $product = fals
*/ */
function wc_get_product_visibility_options() { function wc_get_product_visibility_options() {
return apply_filters( 'woocommerce_product_visibility_options', array( return apply_filters( 'woocommerce_product_visibility_options', array(
'visible' => __( 'Visible', 'woocommerce' ), 'visible' => __( 'Shop and search results', 'woocommerce' ),
'catalog' => __( 'Catalog', 'woocommerce' ), 'catalog' => __( 'Shop only', 'woocommerce' ),
'search' => __( 'Search', 'woocommerce' ), 'search' => __( 'Search results only', 'woocommerce' ),
'hidden' => __( 'Hidden', 'woocommerce' ), 'hidden' => __( 'Hidden', 'woocommerce' ),
) ); ) );
} }