Tried again and the entire page goes blank. Here is what my functions.php file looks like in my child Theme:
<?php
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array('parent-style')
);
}
add_filter('storefront_credit_link','custom_remove_footer_credit',10);
function custom_remove_footer_credit(){
return false; //return true to show it.
}
add_filter( 'storefront_menu_toggle_text', 'jk_storefront_menu_toggle_text', 10 );
function jk_storefront_menu_toggle_text( $text ) {
$text = __( 'Menu' );
return $text;
}
<?php
add_action( 'woocommerce_after_shop_loop_item', 'my_custom_quantity_field', 1 );
function my_custom_quantity_field() {
global $product;
if ( ! $product->is_sold_individually() )
woocommerce_quantity_input( array(
'min_value' => apply_filters( 'woocommerce_quantity_input_min', 1, $product ),
'max_value' => apply_filters( 'woocommerce_quantity_input_max', $product->backorders_allowed() ? '' : $product->get_stock_quantity(), $product )
) );
}