Submit
Path:
~
/
home
/
getwphos
/
public_html
/
deerguard
/
wp-content
/
plugins
/
garland-addon
/
inc
/
File Content:
woo-functions.php
<?php /** * Custom Woo Function */ function garland_get_woo_merge_config( $garland_options ){ $woo_default_config = '{"shop-title":"1","shop-title-items":{"center":{"title":"Title","breadcrumb":"Breadcrumb"},"disabled":{"description":"Description"}},"shop-title-color":"","shop-title-desc-color":"","shop-title-link-color":{"regular":"","hover":"","active":""},"shop-title-padding":{"top":"","right":"","bottom":"","left":""},"shop-title-bg":{"bg_color":"","bg_repeat":"","bg_size":"","bg_attachment":"","bg_position":"","image":{"id":"","url":""}},"shop-sidebar-layout":"right-sidebar","shop-right-sidebar":"","shop-left-sidebar":"","product-title":"1","product-title-items":{"center":{"title":"Title","breadcrumb":"Breadcrumb"},"disabled":{"description":"Description"}},"product-title-color":"","product-title-desc-color":"","product-title-link-color":{"regular":"","hover":"","active":""},"product-title-padding":{"top":"","right":"","bottom":"","left":""},"product-title-bg":{"bg_color":"","bg_repeat":"","bg_size":"","bg_attachment":"","bg_position":"","image":{"id":"","url":""}},"product-sidebar-layout":"right-sidebar","product-right-sidebar":"","product-left-sidebar":""}'; $garland_options = array(); $woo_default_arr = json_decode( $woo_default_config, true ); $garland_options = array_merge( $garland_options, $woo_default_arr ); return $garland_options; } function garland_define_page_custom_template( $template ){ if( is_shop() ){ return 'shop'; } return $template; } add_filter( 'garland_define_page_template', 'garland_define_page_custom_template', 10 ); function garland_define_single_product_template( $template ){ if( is_product('product') ){ return 'product'; } return $template; } add_filter( 'garland_define_custom_single_template', 'garland_define_single_product_template', 10 ); // define the woocommerce_show_page_title callback function garland_filter_woocommerce_show_page_title() { if( is_shop() ){ return false; } }; add_filter( 'woocommerce_show_page_title', 'garland_filter_woocommerce_show_page_title', 10, 2 );
Submit
FILE
FOLDER
Name
Size
Permission
Action
class.mega-menu.php
3263 bytes
0644
class.theme-options.php
2675 bytes
0644
class.widgets-register.php
3261 bytes
0644
cpt.elements.php
31075 bytes
0644
woo-functions.php
2111 bytes
0644
wp-actions.php
3324 bytes
0644
N4ST4R_ID | Naxtarrr