File "shop-sidebar.php"

Full Path: /home/arielcor/public_html/wp-content/plugins/pisces-demo-data/presets/shop-sidebar.php
File size: 1.84 KB
MIME-type: text/x-php
Charset: utf-8

<?php
// Do not allow directly accessing this file.
if ( ! defined( 'ABSPATH' ) ) {
    exit( 'Direct script access denied.' );
}

function la_pisces_preset_shop_sidebar(){
    return array(

        /**
         * Settings
         */

        array(
            'key' => 'layout_archive_product',
            'value' => 'col-2cl'
        ),
        array(
            'key' => 'main_full_width',
            'value' => 'yes'
        ),
        array(
            'key' => 'active_shop_filter',
            'value' => 'off'
        ),
        array(
            'key' => 'la_custom_css',
            'value' => '
                @media (min-width: 1300px) {
                    .enable-main-fullwidth .site-main > .container{
                        padding-left: 40px;
                        padding-right: 40px;
                    }
                }
                @media (min-width: 1400px) {
                    .enable-main-fullwidth .site-main > .container{
                        padding-left: 60px;
                        padding-right: 60px;
                    }
                }
                @media (min-width: 1500px) {
                    .enable-main-fullwidth .site-main > .container{
                        padding-left: 80px;
                        padding-right: 80px;
                    }
                }
            '
        ),


        array(
            'key' => 'enable_page_title_subtext',
            'value' => 'yes'
        ),

        array(
            'key' => 'page_title_custom_subtext',
            'value' => 'Nullam varius porttitor augue id rutrum duis vehicula'
        ),
        /**
         * Filters
         */

        array(
            'filter_name' => 'pisces/filter/page_title',
            'value' => '<header><h3 class="page-title">Shop Sidebar</h3></header>'
        )

        /**
         * Colors
         */

    );
}