Great things are on the horizon
Something big is brewing! Our store is in the works and will be launching soon!
// Force left sidebar on WooCommerce shop page // Step 1: Remove Elementor edit mode from shop page (one-shot) add_action('init', function() { $shop_id = wc_get_page_id('shop'); if ($shop_id > 0 && get_post_meta($shop_id, '_elementor_edit_mode', true)) { delete_post_meta($shop_id, '_elementor_edit_mode'); } $s = get_option('astra-settings', array()); if (($s['woocommerce-sidebar-layout'] ?? '') !== 'left-sidebar') { $s['woocommerce-sidebar-layout'] = 'left-sidebar'; update_option('astra-settings', $s); } }, 1);// Step 2: Filter Astra layout at runtime add_filter('astra_page_layout', function($layout) { if (function_exists('is_shop') && is_shop()) { return 'left-sidebar'; } return $layout; }, 999);
Skip to contentSomething big is brewing! Our store is in the works and will be launching soon!