Astra_Woocommerce::theme_defaults( array $defaults )
Theme Defaults.
Description
Parameters
- $defaults
-
(array) (Required) Array of options value.
Return
(array)
Source
File: inc/compatibility/woocommerce/class-astra-woocommerce.php
public function theme_defaults( $defaults ) { // Container. $defaults['woocommerce-content-layout'] = 'plain-container'; // Sidebar. $defaults['woocommerce-sidebar-layout'] = 'no-sidebar'; $defaults['single-product-sidebar-layout'] = 'default'; /* Shop */ $defaults['shop-grids'] = array( 'desktop' => 4, 'tablet' => 3, 'mobile' => 2, ); $defaults['shop-no-of-products'] = '12'; $defaults['shop-product-structure'] = array( 'category', 'title', 'ratings', 'price', 'add_cart', ); $defaults['shop-hover-style'] = ''; /* Single */ $defaults['single-product-breadcrumb-disable'] = false; /* Cart */ $defaults['enable-cart-upsells'] = true; $defaults['shop-archive-width'] = 'default'; $defaults['shop-archive-max-width'] = 1200; return $defaults; }
Expand full source code Collapse full source code View on Trac