-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
29 lines (23 loc) · 980 Bytes
/
functions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/*-------------------------------------------------------*/
/* Run Theme Blvd framework (required)
/*-------------------------------------------------------*/
require_once( get_template_directory() . '/framework/themeblvd.php' );
/*-------------------------------------------------------*/
/* Start Child Theme
/*-------------------------------------------------------*/
/**
* Maintain options ID for saved options from parent
* theme. (optional)
*
* This allows you to switch between parent and child theme,
* with your theme options remaining saved to the same value
* in your WordPress database.
*/
function jumpstart_option_id( $id ) {
return 'jumpstart';
}
add_filter('themeblvd_option_id', 'jumpstart_option_id');
remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
//This snippet will remove the notice that shows the number of results.
remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering',30 );