Make WordPress Themes

Changeset 201647


Ignore:
Timestamp:
09/09/2023 02:52:37 PM (2 years ago)
Author:
themedropbox
Message:

New version of LuxuryConceptFree - 1.0.1

Location:
luxuryconceptfree/1.0.1
Files:
13 added
23 edited
1 copied

Legend:

Unmodified
Added
Removed
  • luxuryconceptfree/1.0.1/404.php

    r201434 r201647  
    1010<div class="primary-sidebar"><?php get_sidebar( 'primary' ); ?></div>   
    1111
    12     <main id="content" class="main-content" role="main">   
     12    <main id="content" class="main-content">   
    1313            <article>
    1414                    <h1 class=""><?php esc_html_e( 'Oops! That page can&rsquo;t be found.', 'luxuryconceptfree' ); ?></h1>
  • luxuryconceptfree/1.0.1/footer.php

    r201434 r201647  
    3333   
    3434    <div class="footer__copyright">
    35             <p class="sma-text-center">&copy;<?php echo date("o");?> - <?php bloginfo('name'); ?> - <a href="<?php echo esc_url( __('https://luxuryconceptfree.website','luxuryconceptfree') ); ?>">Luxury Concept</a> - Developed By <a href="esc_url( __('https://stefanofattori.it','luxuryconceptfree') ); ">Stefano Fattori</a> </p>
     35            <?php
     36            $default_footer_copyright = sprintf( __( '- Powered By <a href="%s" target="_blank">Wordpress</a> | ', 'luxuryconceptfree' ), 'https://wordpress.org' );
     37            $default_footer_copyright .= sprintf( __( 'Theme: <a href="%s" target="_blank"><b>Luxury Concept</b></a> - ', 'luxuryconceptfree' ), 'https://luxuryconcept.website' );
     38            $default_footer_copyright .= sprintf( __( 'Developed By <a href="%s" target="_blank">Stefano Fattori</a> ', 'luxuryconceptfree' ), 'https://stefanofattori.it' );
     39            ?>         
     40            <p class="sma-text-center"><?php esc_html_e('&copy; ', 'luxuryconceptfree'); ?><?php echo date("o") . ' - ';?><?php bloginfo('name'); ?> <?php echo (esc_attr(get_theme_mod( 'luxuryconceptfree_footer_copyright_text', '')) != '') ? esc_attr(get_theme_mod( 'luxuryconceptfree_footer_copyright_text', '')) : $default_footer_copyright; ?> </p>
    3641            <p class="alignright sma-text-center"> <a href="#top"><?php esc_html_e('Top', 'luxuryconceptfree'); ?><i class="icon-arrow-up"></i></a></p>
    3742    </div>
  • luxuryconceptfree/1.0.1/functions.php

    r201434 r201647  
    1919/*  Theme setup
    2020/* ------------------------------------ */
    21 if ( ! function_exists( 'luxuryconcept_free_setup' ) ) {
    22 
    23     function luxuryconcept_free_setup() {
     21if ( ! function_exists( 'luxuryconceptfree_setup' ) ) {
     22
     23    function luxuryconceptfree_setup() {
    2424
    2525        $luxuryconceptfree_bg_color_defaults = array(
    26             'default-color'          => 'E4E4E4',
     26            'default-color'          => '#FFFFFF',
    2727        );
    2828        add_theme_support( 'custom-background', $luxuryconceptfree_bg_color_defaults );
     
    4141        );
    4242        add_theme_support( 'custom-logo', $luxuryconceptfree_logo_defaults );
    43        
     43
    4444        //custom header
    45         $defaults = array(
     45        $luxuryconceptfree_header_defaults = array(
    4646            'default-image'          => '',
    4747            'width'                  => 1920,
     
    4949            'flex-height'            => false,
    5050            'flex-width'             => false,
    51             'uploads'                => false,
    5251            'random-default'         => false,
    5352            'header-text'            => true,
    54             'default-text-color'     => '',
     53            'default-text-color'     => '#000000',
    5554            'wp-head-callback'       => '',
    5655            'admin-head-callback'    => '',
    5756            'admin-preview-callback' => '',
    5857        );
    59         add_theme_support( 'custom-header', $defaults );
     58        add_theme_support( 'custom-header', $luxuryconceptfree_header_defaults );
    6059
    6160        // Enable automatic feed links
     
    8584        add_image_size( 'luxuryconceptfree_single', 675, 450, true ); //(cropped)
    8685        add_image_size( 'luxuryconceptfree_big', 1400, 928, true );     //(cropped)
    87 
     86       
     87        // Post Formats
     88        //add_theme_support( 'post-formats', array( 'aside', 'gallery' ) );
     89       
    8890       
    8991        // Custom menu areas
    9092        register_nav_menus( array(
    9193            'headermenu' => esc_html__( 'Header Menu', 'luxuryconceptfree' ),
    92             'quickmenu' => esc_html__( 'Quick Menu', 'luxuryconceptfree' ),
    93             'footermenu' => esc_html__( 'Footer Menu', 'luxuryconceptfree' )
     94            'quickmenu' => esc_html__( 'Quick Menu', 'luxuryconceptfree' )
    9495        ) );
    9596
     
    145146
    146147}
    147 add_action( 'after_setup_theme', 'luxuryconcept_free_setup' );
     148add_action( 'after_setup_theme', 'luxuryconceptfree_setup' );
     149
     150/**
     151 * Provides a default menu featuring the 'Home' link, if not other menu has been provided.
     152 *
     153 */
     154function header_default_menu() {
     155
     156    $html = '<ul id="header-default-menu" class="menu">';
     157        $html .= '<li class="menu-item menu-item-type-post_type menu-item-object-page">';
     158            $html .= '<a href="' . esc_url( home_url() ) . '" title="' . esc_attr( 'Home', 'luxuryconceptfree' ) . '">';
     159                $html .= __( 'Home', 'luxuryconceptfree' );
     160            $html .= '</a>';
     161        $html .= '</li>';
     162    $html .= '</ul>';
     163
     164    echo $html;
     165
     166} // end header_default_menu
     167
    148168
    149169
     
    155175
    156176        // all script
    157         wp_enqueue_script( 'luxuryconceptfree-script', get_template_directory_uri() . '/js/script.js', array(),'', array('strategy'  => 'defer',) );
     177        wp_enqueue_script( 'luxuryconceptfree-script', get_template_directory_uri() . '/js/script.js', array(), wp_get_theme()->get( 'Version' ), array('strategy'  => 'defer',) );
    158178
    159179        if ( is_singular() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); }
     
    169189
    170190    function luxuryconceptfree_styles() {
    171         wp_enqueue_style( 'luxuryconceptfree-google-font','https://fonts.googleapis.com/css?family='.esc_attr(get_theme_mod( "luxuryconceptfree_google_font", "Quicksand")).':'.esc_attr(get_theme_mod( "luxuryconceptfree_google_font_weight", "300,400,700")));
    172         wp_enqueue_style( 'luxuryconceptfree', get_template_directory_uri().'/style.css');
    173 
     191        wp_enqueue_style( 'luxuryconceptfree-google-font','https://fonts.googleapis.com/css?family='.esc_attr(get_theme_mod( "luxuryconceptfree_google_font", "Quicksand")).':'.esc_attr(get_theme_mod( "luxuryconceptfree_google_font_weight", "300,400,700")),  array(), wp_get_theme()->get( 'Version' ), 'all');
     192        wp_enqueue_style( 'luxuryconceptfree-main', get_template_directory_uri().'/style.css', array(), wp_get_theme()->get( 'Version' ), 'all');
     193        //wp_enqueue_style( 'luxuryconceptfree-main', get_template_directory_uri().'/style.min.css', array(), wp_get_theme()->get( 'Version' ), 'all');
    174194    }
    175195
     
    177197add_action( 'wp_enqueue_scripts', 'luxuryconceptfree_styles' );
    178198
    179 /*  Enqueue google font backend css
     199/*  Enqueue backend css
    180200/* ------------------------------------ */
    181201if ( ! function_exists( 'luxuryconceptfree_admin_google_font' ) ) {
     
    184204        wp_register_style( 'luxuryconceptfree-admin-google-font', 'https://fonts.googleapis.com/css?family='.esc_attr(get_theme_mod( "luxuryconceptfree_google_font", "Quicksand")).':'.esc_attr(get_theme_mod( "luxuryconceptfree_google_font_weight", "300,400,700")));
    185205        wp_enqueue_style( 'luxuryconceptfree-admin-google-font' );
    186     }
    187 }
    188 
     206        wp_enqueue_style( 'luxuryconceptfree-admin-style', get_stylesheet_directory_uri() . '/css/admin-style.css' );
     207    }
     208}
    189209add_action( 'admin_enqueue_scripts', 'luxuryconceptfree_admin_google_font');
    190210
    191211
     212
    192213/*  Register sidebars
    193214/* ------------------------------------ */
     
    200221        register_sidebar(array( 'name' => esc_html__( 'Footer', 'luxuryconceptfree' ),'id' => 'footer','description' => esc_html__( 'Footer full width sidebar.', 'luxuryconceptfree' ), 'before_widget' => '<div id="%1$s">','after_widget' => '</div>','before_title' => '<h3>','after_title' => '</h3>'));
    201222       
    202        
    203         if ( is_woocommerce_activated() ) {
    204             register_sidebar(array( 'name' => esc_html__( 'Woocommerce Sidebar', 'luxuryconceptfree' ),'id' => 'shop','description' => esc_html__( 'Woocommerce Sidebar on shop page.', 'luxuryconceptfree' ), 'before_widget' => '<div id="%1$s">','after_widget' => '</div>','before_title' => '<h3>','after_title' => '</h3>'));
    205         }
     223
    206224    }
    207225
    208226}
    209227add_action( 'widgets_init', 'luxuryconceptfree_sidebars' );
     228
     229
    210230
    211231
     
    228248
    229249    $luxuryconceptfree_bg_color = get_background_color();
    230     echo '<style type="text/css">';
    231    
     250    $luxuryconceptfree_header_text_color = get_header_textcolor();
     251    echo '<style>';
    232252    echo ':root {';
    233     echo '--site-bg: #'.$luxuryconceptfree_bg_color.';';
    234     echo '--link-color: '.esc_attr(get_theme_mod( 'luxuryconceptfree_link_color', '#048ea0')).';';
    235     echo '--link-color-hover: '.esc_attr(get_theme_mod( 'luxuryconceptfree_link_color_hover', '#105862')).';';
    236     echo '--header-bg: '.esc_attr(get_theme_mod( 'luxuryconceptfree_header_color', '#E4E4E4')).';';
     253    echo '--site-bg: '.$luxuryconceptfree_bg_color.';';
     254    echo '--link-color: '.esc_attr(get_theme_mod( 'luxuryconceptfree_link_color', '#45cfbe')).';';
     255    echo '--link-color-hover: '.esc_attr(get_theme_mod( 'luxuryconceptfree_link_color_hover', '#3eb2bc')).';';
     256    echo '--header-bg: '.esc_attr(get_theme_mod( 'luxuryconceptfree_header_bg_color', '#FFFFFF')).';';
    237257    echo '--topbar-bg: '.esc_attr(get_theme_mod( 'luxuryconceptfree_topbar_background_color', '#45cfbe')).';';
    238     echo '--topbar-text-color: '.esc_attr(get_theme_mod( 'luxuryconceptfree_topbar_text_color', '#000000')).';';
    239    
    240     echo '--borders-color: '.esc_attr(get_theme_mod( 'luxuryconceptfree_border_color', '#222222')).';';
     258    echo '--topbar-text-color: '.esc_attr(get_theme_mod( 'luxuryconceptfree_topbar_text_color', '#FFFFFF')).';';
     259   
     260    echo '--borders-color: '.esc_attr(get_theme_mod( 'luxuryconceptfree_border_color', '#45cfbe')).';';
    241261    echo '--site-text-color: '.esc_attr(get_theme_mod( 'luxuryconceptfree_site_text_color', '#000000')).';';
    242     echo '--header-text-color: '.esc_attr(get_theme_mod( 'luxuryconceptfree_header_text_color', '#000000')).';';
     262    echo '--header-text-color: '. $luxuryconceptfree_header_text_color .';';
    243263    echo '--header-transparent-text-color: '.esc_attr(get_theme_mod( 'luxuryconceptfree_header_transparent_text_color', '#FFFFFF')).';';
    244     echo '--posts-color: '.esc_attr(get_theme_mod( 'luxuryconceptfree_posts_background_color', '#eee')).';';
     264    echo '--posts-color: '.esc_attr(get_theme_mod( 'luxuryconceptfree_posts_background_color', '#f4f4f4')).';';
    245265    echo '--site-font-size: '.esc_attr(get_theme_mod( 'luxuryconceptfree_site_font_size', '16px')).';';
    246266    echo '--body-font-family: '.esc_attr(get_theme_mod( 'luxuryconceptfree_google_font', 'Quicksand')).';';
    247267    echo (esc_attr(get_theme_mod( 'luxuryconceptfree_sticky_header', '')) == 1) ? '--sticky-header: sticky;' : '--sticky-header: static;';
    248     echo '--number-col-masonry: '.esc_attr(get_theme_mod( 'luxuryconceptfree_number_col_blog', '2')).';';
    249     echo '--h1-font-size: '.esc_attr(get_theme_mod( 'luxuryconceptfree_title1_font_size', '3.4rem')).';';
    250     echo '--h2-font-size: '.esc_attr(get_theme_mod( 'luxuryconceptfree_title2_font_size', '2.2rem')).';';
    251     echo '--h3-font-size: '.esc_attr(get_theme_mod( 'luxuryconceptfree_title3_font_size', '1.5rem')).';';
    252     echo '--h4-font-size: '.esc_attr(get_theme_mod( 'luxuryconceptfree_title4_font_size', '1rem')).';';
     268    echo '--number-col-masonry: '.esc_attr(get_theme_mod( 'luxuryconceptfree_number_col_blog', '3')).';';
     269    echo '--h1-font-size: '.esc_attr(get_theme_mod( 'luxuryconceptfree_title1_font_size', '2.4rem')).';';
     270    echo '--h2-font-size: '.esc_attr(get_theme_mod( 'luxuryconceptfree_title2_font_size', '1.5rem')).';';
     271    echo '--h3-font-size: '.esc_attr(get_theme_mod( 'luxuryconceptfree_title3_font_size', '1.0rem')).';';
     272    echo '--h4-font-size: '.esc_attr(get_theme_mod( 'luxuryconceptfree_title4_font_size', '0.8rem')).';';
    253273   
    254274    echo (esc_attr(get_theme_mod( 'luxuryconceptfree_logo_invert_color', '')) == 1) ? '--logo-invert-color: invert(1);' : '--logo-invert-color: none;';
     
    256276   
    257277   
    258     echo (esc_attr(get_theme_mod( 'luxuryconceptfree_header_footer_borders', '')) == 1) ? '--show-footer-header-borders: 1px solid;' : '--show-footer-header-borders: none;';
     278    echo (esc_attr(get_theme_mod( 'luxuryconceptfree_header_footer_borders', '1')) == 1) ? '--show-footer-header-borders: 1px solid var(--borders-color);' : '--show-footer-header-borders: none;';
    259279   
    260280   
     
    278298    }
    279299       
     300   
     301    if ( get_header_image() ) : ?>
     302        .header{background-image:url('<?php header_image(); ?>');}
     303    <?php endif;
    280304   
    281305    echo '</style>';
     
    324348if ( ! function_exists( 'luxuryconceptfree_custom_breadcrumb' ) ) {
    325349
    326     function luxuryconceptfree_custom_breadcrumbs() { ?>
    327 
    328         <nav class="breadcrumbs" itemprop="breadcrumb">
    329                          
    330         <?php                                       
     350    function luxuryconceptfree_custom_breadcrumbs() {                                           
    331351            get_template_part( 'inc/content/custom-breadcrumb' );       
    332             luxuryconceptfree_breadcrumb('','');   
    333        
    334         ?></nav><?php
     352            luxuryconceptfree_breadcrumb('','');
    335353    }
    336354}
     
    351369
    352370
     371
    353372function buy_premium_theme_notice() {
    354373    ?>
    355     <div class="notice notice-info is-dismissible">
    356         <p><?php _e( 'Would you like more features? Buy premium theme on ', 'luxuryconceptfree' ); ?> <a href="<?php echo esc_url( __('https://luxuryconceptfree.website','luxuryconceptfree') ); ?>" target="_blank">Luxury Concept Theme</a></p>
    357     </div>
     374    <div class="notice notice-info is-dismissible notice-luxuryconcept">
     375       
     376            <h2><?php _e( 'Howdy!', 'luxuryconceptfree' ); ?></h2>
     377            <p><?php _e( 'Luxury Concept Free Theme was successfully installed!', 'luxuryconceptfree' ); ?></p>
     378            <p><?php _e( 'Would you like more features? <b>Buy PREMIUM THEME</b> on ', 'luxuryconceptfree' ); ?> <a href="<?php echo esc_url( __('https://luxuryconcept.website','luxuryconceptfree') ); ?>" target="_blank">Luxury Concept Theme</a><?php _e( ' - Today on sale at a <b>DISCOUNTED PRICE!</b> ', 'luxuryconceptfree' ); ?></p>
     379       
     380       
     381        <div class="notice-luxuryconcept-flex-container">
     382             <div class="notice-luxuryconcept-col-1">
     383                 
     384                    <img src="<?php echo esc_url('https://luxuryconcept.website/wp-content/uploads/luxuryconceptthemescreenshot.png'); ?>" title="<?php echo esc_attr('Luxury Concept Theme'); ?>">
     385               
     386             </div>
     387            <div class="notice-luxuryconcept-col-2">
     388                    <div class="notice-luxuryconcept-grid-table">
     389   
     390                            <div class="cell-grid-heading">FREE</div>
     391                            <div class="cell-grid-heading">PRO</div>
     392                            <div class="cell-grid icon-checked">Base Engine</div>
     393                            <div class="cell-grid icon-checked">Base Engine</div>
     394                            <div class="cell-grid icon-checked">Posts and Pages template</div>
     395                            <div class="cell-grid icon-checked">Posts and Pages template</div>
     396                            <div class="cell-grid icon-x">2 menus</div>
     397                            <div class="cell-grid icon-checked">3 menus</div>
     398                            <div class="cell-grid icon-x">Only Full Width Layout</div>
     399                            <div class="cell-grid icon-checked">Full width and Boxed Layout</div>
     400                            <div class="cell-grid icon-x">Basic WP Customizer Settings</div>
     401                            <div class="cell-grid icon-checked">WP Customizer Settings (more customisations)</div>
     402                            <div class="cell-grid icon-x">Only 2 typography font size</div>
     403                            <div class="cell-grid icon-checked">More typography font size (global,h1,h2,h3,h4)</div>
     404                            <div class="cell-grid icon-checked">Custom logo</div>
     405                            <div class="cell-grid icon-checked">Custom logo</div>
     406                            <div class="cell-grid icon-x">Only Left logo and menu centered</div>
     407                            <div class="cell-grid icon-checked">Logo Left / Menu center OR Menu left / Logo center</div>
     408                            <div class="cell-grid icon-x">Only support YOAST Beadcrumb</div>
     409                            <div class="cell-grid icon-checked">Yoast, Custom and Woocommerce breadcrumbs</div>
     410                            <div class="cell-grid icon-x">Featured article image (no / after title)</div>
     411                            <div class="cell-grid icon-checked">Featured article image (no / before title / after title)</div>
     412                            <div class="cell-grid icon-x">No</div>
     413                            <div class="cell-grid icon-checked">Custom Header</div>
     414                            <div class="cell-grid icon-x">No</div>
     415                            <div class="cell-grid icon-checked">WooCommerce Support</div>
     416                            <div class="cell-grid icon-x">No</div>
     417                            <div class="cell-grid icon-checked">WooCommerce Ajax Mini Cart Header</div>
     418                            <div class="cell-grid icon-x">No</div>
     419                            <div class="cell-grid icon-checked">Shop Sidebar</div>
     420                            <div class="cell-grid icon-x">No</div>
     421                            <div class="cell-grid icon-checked">Whatsapp Icon</div>
     422                            <div class="cell-grid icon-x">No</div>
     423                            <div class="cell-grid icon-checked">TOP BAR MESSAGGE / LINK</div>
     424                            <div class="cell-grid icon-x">No</div>
     425                            <div class="cell-grid icon-checked">Custom footer copyright text</div>
     426                            <div class="cell-grid icon-x">Fast and Light</div>
     427                            <div class="cell-grid icon-checked">More optimized Super Fast and light</div>
     428
     429                    </div>
     430            </div>
     431            <div class="notice-luxuryconcept-col-3">
     432                    <h3> <span class="dashicons dashicons-images-alt2"></span> <?php esc_html_e('General Info','luxuryconceptfree');?></h3>
     433                    <p><?php esc_html_e('A lightweight, fast and responsive WordPress theme: outstanding performance, modern design, and intuitive customization. Optimized for mobile devices, it delivers a seamless user experience. Choose efficiency without compromises!','luxuryconceptfree');?></p>
     434                    <a href="<?php echo esc_url('https://luxuryconcept.website');?>" target="_blank" title="<?php esc_attr('Luxury Concept Pro Theme');?>"><span class="dashicons dashicons-external notice-luxuryconcept-url"></span>Buy Pro Theme</a>
     435            </div>
     436       
     437        </div>
     438       
     439    </div>
    358440    <?php
    359441}
  • luxuryconceptfree/1.0.1/header.php

    r201434 r201647  
    1414    <!-- Meta for IE support -->
    1515    <meta http-equiv="X-UA-Compatible" content="IE=edge">
     16   
    1617
    1718    <?php wp_head(); ?>
     
    2324   
    2425<div class="wrapper-grid">
    25    
    26     <?php if(esc_attr(get_theme_mod( 'luxuryconceptfree_topbar_message')) != ''){ ?>
    27         <section class="topbar">
    28             <div class="topbar__content">
    29                 <?php if(esc_attr(get_theme_mod( 'luxuryconceptfree_topbar_message')) != '' && esc_attr(get_theme_mod( 'luxuryconceptfree_topbar_link')) == ''){
    30                         echo esc_attr(get_theme_mod( 'luxuryconceptfree_topbar_message'));
    31                 }
    32                 elseif(esc_attr(get_theme_mod( 'luxuryconceptfree_topbar_message')) != '' && esc_attr(get_theme_mod( 'luxuryconceptfree_topbar_link')) != ''){
    33                     ?>
    34                     <a href="<?php echo esc_attr(get_theme_mod( 'luxuryconceptfree_topbar_link')); ?>" rel="nofollow"><?php echo esc_html(get_theme_mod( 'luxuryconceptfree_topbar_message')); ?></a>
    35                 <?php } ?>
    3626
    37             </div>
    38         </section>
    39     <?php } ?>
    4027    <header id="header" class="header">
    4128       
     
    5946     
    6047    <!-- <nav Header Menu -->
    61     <nav class="header__menu" role="navigation">   
     48    <nav class="header__menu"
    6249     <?php // insert custom menu header
    6350        wp_nav_menu(array(
     
    6552          'container' => false,
    6653          'depth' => 5,
     54          'fallback_cb' => 'header_default_menu',
    6755          'items_wrap' => '<ul class="menu">%3$s</ul>'
    6856        ));
     
    7866              'theme_location' => 'quickmenu',
    7967              'container' => false,
    80               'depth' => 1,
    81               //'items_wrap' => '%3$s'//'<ul>%3$s</ul>'
     68              'depth' => 1
    8269            ));
    8370            ?>   
     
    8673      <!--</nav>-->
    8774       
     75      <!-- Widget Cart menu -->
     76        <?php do_action('luxuryconceptfree_show_header_cart'); ?>
     77      <!-- / Widget Cart menu -->
    8878   
    8979  </header>
  • luxuryconceptfree/1.0.1/inc/block-patterns.php

    r201434 r201647  
    5858
    5959    $block_patterns = array(
     60        'buttons',
    6061        'hero-cover',
     62        'info',
     63        'keypoint',
     64        'media-content',
     65        'testimonial',
     66        'hero-media-content',
     67        'content-images',
     68        'features',
     69        'contacts',
     70        'team',
     71        'cta-cover',
     72        'faq',
    6173       
    6274
  • luxuryconceptfree/1.0.1/inc/content/custom-breadcrumb.php

    r201434 r201647  
    2121    'id'          =>  'luxuryconceptfree_breadcrumb',
    2222    'classes'     =>  'luxuryconceptfree_breadcrumb_items',
    23     'home_title'  =>  esc_html__( 'Home', 'luxuryconceptfree' )
     23    'home_title'  =>  esc_html__( 'Home', 'luxuryconceptfree' ),
     24    'wrapper_classes' => 'breadcrumbs'
    2425  );
    2526
    2627  $sep  = '<li class="separator">'. esc_html( $defaults['separator'] ) .'</li>';
    2728
    28   if( ! is_woocommerce() ){
     29  echo '<nav class="' . $defaults['wrapper_classes'] . '" itemprop="breadcrumb">';
     30
     31  if( ! is_woocommerce_activated() || ! is_woocommerce() ){
    2932      // Start the breadcrumb with a link to your homepage
    3033      echo '<ul id="'. esc_attr( $defaults['id'] ) .'" class="'. esc_attr( $defaults['classes'] ) .'">';
     
    3336      echo '<li class="breadcrumb_item"><a href="'. get_home_url() .'">'. esc_html( $defaults['home_title'] ) .'</a></li>' . $sep;
    3437  }
     38
    3539   
    36   if( is_woocommerce() ){
     40
     41  if( is_woocommerce_activated() && is_woocommerce() ){
    3742         $args = array(
    3843             'delimiter' => $defaults['separator'],
     
    4045              'wrap_after'  => ''
    4146          );
    42           woocommerce_breadcrumb( $args );
    43           //return;
    44   }
    45    
     47          woocommerce_breadcrumb( $args ); //INSERT WOOCOMMERCE BREADCRUMB
     48  }
    4649  elseif ( is_single() ) {
    4750
     
    250253  // End breadcrumb
    251254  echo '</ul>';
     255  echo '</nav>';
    252256}
  • luxuryconceptfree/1.0.1/inc/customizer/customizer.php

    r201434 r201647  
    99/* ------------------------------------ */
    1010function luxuryconceptfree_customize_register( $wp_customize ) {
     11   
     12            /* Invert color logo when using transparent header  */
     13            $wp_customize->add_setting( 'luxuryconceptfree_logo_invert_color' , array(
     14                'default'   => 0,
     15                'transport' => 'refresh',
     16                'sanitize_callback' => 'luxuryconceptfree_sanitize_callback_checkbox',
     17            ));
     18
     19            $wp_customize->add_control( new Customizer_Toggle_Control( $wp_customize, 'luxuryconceptfree_logo_invert_color_control', array(
     20                'label'      => __( 'Invert color logo', 'luxuryconceptfree' ),
     21                'description'  => __( '<br>You can invert the color logo (ex. from black to white)', 'luxuryconceptfree' ),
     22                'section'    => 'title_tagline',
     23                'settings'   => 'luxuryconceptfree_logo_invert_color'
     24            )) );   
     25   
    1126   
    1227    $wp_customize->add_panel( 'luxuryconceptfree_main', array(
     
    7085            /* TITLE 1 (h1) Font Size */
    7186            $wp_customize->add_setting( 'luxuryconceptfree_title1_font_size' , array(
    72                 'default'   => '3.4rem',
     87                'default'   => '2.4rem',
    7388                'transport' => 'refresh',
    7489                'sanitize_callback' => 'luxuryconceptfree_sanitize_callback_text',
     
    8297            )));
    8398           /* --- End Typography Section --- */
     99   
     100            /* TITLE 2 (h2) Font Size */
     101            $wp_customize->add_setting( 'luxuryconceptfree_title2_font_size' , array(
     102                'default'   => '1.5rem',
     103                'transport' => 'refresh',
     104                'sanitize_callback' => 'luxuryconceptfree_sanitize_callback_text',
     105            ));
     106
     107            $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'luxuryconceptfree_title2_font_size_control', array(
     108                'label'      => __( 'Title 2 Font Size - h2 (ex. 16px, 2rem, 80%)', 'luxuryconceptfree' ),
     109                'section'    => 'luxuryconceptfree_typography',
     110                'settings'   => 'luxuryconceptfree_title2_font_size',
     111                'type'   => 'text'         
     112            )));
     113           /* --- End Typography Section --- */
    84114
    85115           /* --- End Typography Section --- */
     
    90120            /* Link color */
    91121            $wp_customize->add_setting( 'luxuryconceptfree_link_color' , array(
    92                 'default'   => '#048ea0',
     122                'default'   => '#45cfbe',
    93123                'transport' => 'refresh',
    94124                'sanitize_callback' => 'sanitize_hex_color',
     
    104134            /* Link color hover */
    105135            $wp_customize->add_setting( 'luxuryconceptfree_link_color_hover' , array(
    106                 'default'   => '#105862',
     136                'default'   => '#3eb2bc',
    107137                'transport' => 'refresh',
    108138                'sanitize_callback' => 'sanitize_hex_color',
     
    115145            )));
    116146
    117             /* Header Color */
    118             $wp_customize->add_setting( 'luxuryconceptfree_header_color' , array(
    119                 'default'   => '#E4E4E4',
    120                 'transport' => 'refresh',
    121                 'sanitize_callback' => 'sanitize_hex_color',
    122             ));
    123 
    124             $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'luxuryconceptfree_header_color_control', array(
     147            /* Header Background Color */
     148            $wp_customize->add_setting( 'luxuryconceptfree_header_bg_color' , array(
     149                'default'   => '#FFFFFF',
     150                'transport' => 'refresh',
     151                'sanitize_callback' => 'sanitize_hex_color',
     152            ));
     153
     154            $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'luxuryconceptfree_header_bg_color_control', array(
    125155                'label'      => __( 'Header Color', 'luxuryconceptfree' ),
    126156                'section'    => 'colors',
    127                 'settings'   => 'luxuryconceptfree_header_color',
     157                'settings'   => 'luxuryconceptfree_header_bg_color',
    128158            )));
    129159   
     
    143173            /* TOPBAR text Color */
    144174            $wp_customize->add_setting( 'luxuryconceptfree_topbar_text_color' , array(
    145                 'default'   => '#000000',
     175                'default'   => '#FFFFFF',
    146176                'transport' => 'refresh',
    147177                'sanitize_callback' => 'sanitize_hex_color',
     
    156186            /* Border Color */
    157187            $wp_customize->add_setting( 'luxuryconceptfree_border_color' , array(
    158                 'default'   => '#222222',
     188                'default'   => '#45cfbe',
    159189                'transport' => 'refresh',
    160190                'sanitize_callback' => 'sanitize_hex_color',
     
    180210            )));
    181211   
    182             /* Header Text Color */
    183             $wp_customize->add_setting( 'luxuryconceptfree_header_text_color' , array(
    184                 'default'   => '#000000',
    185                 'transport' => 'refresh',
    186                 'sanitize_callback' => 'sanitize_hex_color',
    187             ));
    188 
    189             $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'luxuryconceptfree_header_text_color_control', array(
    190                 'label'      => __( 'Header Text Color', 'luxuryconceptfree' ),
    191                 'section'    => 'colors',
    192                 'settings'   => 'luxuryconceptfree_header_text_color',
    193             )));
    194212   
    195213            /* Header Text Color With Transparent Header */
     
    209227            /* Posts Background Color */
    210228            $wp_customize->add_setting( 'luxuryconceptfree_posts_background_color' , array(
    211                 'default'   => '#eee',
     229                'default'   => '#f4f4f4',
    212230                'transport' => 'refresh',
    213231                'sanitize_callback' => 'sanitize_hex_color',
     
    245263                'choices' => array(
    246264                        'full' => __( 'Full width layout', 'luxuryconceptfree' ),
    247                         'boxed' => __( 'Boxed layout', 'luxuryconceptfree' ),
     265                        'disabled' => __( 'PRO FEATURE - Boxed layout', 'luxuryconceptfree' ),
    248266                )
    249267            )) );
     
    251269            /* Content Padding with Full Layout */
    252270            $wp_customize->add_setting( 'luxuryconceptfree_content_padding' , array(
    253                 'default'   => '25px',
     271                'default'   => '5%',
    254272                'transport' => 'refresh',
    255273                'sanitize_callback' => 'luxuryconceptfree_sanitize_callback_text',
     
    268286            /* Sticky Header */
    269287            $wp_customize->add_setting( 'luxuryconceptfree_sticky_header' , array(
    270                 'default'   => '',
     288                'default'   => 0,
    271289                'transport' => 'refresh',
    272290                'sanitize_callback' => 'luxuryconceptfree_sanitize_callback_checkbox',
     
    280298   
    281299   
     300
     301            /* Center Logo */
     302            $wp_customize->add_setting( 'luxuryconceptfree_center_logo_menu_left' , array(
     303                'default'   => 'no',
     304                'transport' => 'refresh',
     305                'sanitize_callback' => 'luxuryconceptfree_sanitize_callback_text',
     306            ));
     307
     308            $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'luxuryconceptfree_center_logo_menu_left_control', array(
     309                'label'      => __( 'Logo and Menu Position', 'luxuryconceptfree' ),
     310                'section'    => 'luxuryconceptfree_layouts',
     311                'settings'   => 'luxuryconceptfree_center_logo_menu_left',
     312                'type'   => 'select',
     313                'choices' => array(
     314                        'no' => __( 'Left Logo / Center Menu', 'luxuryconceptfree' ),
     315                        'disabled' => __( 'PRO FEATURE - Left Menu / Center Logo', 'luxuryconceptfree' ),
     316                )               
     317            )) );
     318   
     319   
     320            /* Article Image After Title */
     321            $wp_customize->add_setting( 'luxuryconceptfree_article_img' , array(
     322                'default'   => 'no',
     323                'transport' => 'refresh',
     324                'sanitize_callback' => 'luxuryconceptfree_sanitize_callback_text',
     325            ));
     326           
     327            $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'luxuryconceptfree_article_img_control', array(
     328                'label'      => __( 'Article list image', 'luxuryconceptfree' ),
     329                'section'    => 'luxuryconceptfree_layouts',
     330                'settings'   => 'luxuryconceptfree_article_img',
     331                'type'   => 'select',
     332                'choices' => array(
     333                        'no' => __( 'Don\'t Show Image', 'luxuryconceptfree' ),
     334                        'disabled' => __( 'PRO FEATURE - Before Title', 'luxuryconceptfree' ),
     335                        'after' => __( 'After Title', 'luxuryconceptfree' ),
     336                )
     337            )) );
     338   
     339   
     340            /* Blog numbers column */   
     341            $wp_customize->add_setting( 'luxuryconceptfree_number_col_blog' , array(
     342                'default'   => 3,
     343                'transport' => 'refresh',
     344                'sanitize_callback' => 'luxuryconceptfree_sanitize_callback_number_range',
     345            ));         
     346
     347   
     348            $wp_customize->add_control( new Customizer_Range_Control( $wp_customize, 'luxuryconceptfree_number_col_blog_control', array(
     349               'type' => 'range',
     350               'section' => 'luxuryconceptfree_layouts',
     351               'settings' => 'luxuryconceptfree_number_col_blog',
     352               'label' => __( 'Blog Number Columns', 'luxuryconceptfree' ),
     353               'input_attrs' => array(
     354                                 'min' => 1,
     355                                 'max' => 6,
     356                                 'step' => 1,
     357              ),
     358            ) ) );
    282359   
    283360       
    284361            /* Show Header and Footer Borders */
    285362            $wp_customize->add_setting( 'luxuryconceptfree_header_footer_borders' , array(
    286                 'default'   => '',
     363                'default'   => 1,
    287364                'transport' => 'refresh',
    288365                'sanitize_callback' => 'luxuryconceptfree_sanitize_callback_checkbox',
     
    309386                'type'       => 'select',
    310387                'choices' => array(
    311                         'no' => __( 'Don\'t show Breadcrumbs', 'luxuryconceptfree' ),                       
     388                        'no' => __( 'Don\'t show Breadcrumbs', 'luxuryconceptfree' ),
     389                        'disabled' => __( 'PRO FEATURE - Show Custom theme Breadcrumbs', 'luxuryconceptfree' ),
    312390                        'yoast' => __( 'Show YOAST SEO Breadcrumbs', 'luxuryconceptfree' ),
    313391                )
     
    320398
    321399   
    322    
     400
     401   
     402
    323403
    324404/* Sanitize function Text */
  • luxuryconceptfree/1.0.1/index.php

    r201434 r201647  
    1919    <div class="primary-sidebar"><?php get_sidebar( 'primary' ); ?></div>   
    2020
    21     <main id="content" class="main-content" role="main">   
     21    <main id="content" class="main-content">   
    2222           
    2323        <?php  /* CONDITIONAL TEMPLATES */ ?>
     
    2727            <h1 class="mb-3"><?php echo single_cat_title(); ?></h1>
    2828        <?php } elseif ( is_front_page() ){ ?>
    29             <h1 class="mb-3"><?php echo get_bloginfo( 'name' ); ?> <span class="text-3 light"><?php echo get_bloginfo( 'description' ); ?></span></h1>
     29            <h1 class="mb-3"><?php esc_html_e('Latest posts ', 'luxuryconceptfree') ?></h1>
    3030        <?php } elseif ( is_home() ){ ?>
    3131            <h1 class="mb-3"><?php echo single_post_title(); ?></span></h1>
  • luxuryconceptfree/1.0.1/js/script.js

    r201434 r201647  
    1717}
    1818
     19/* OPEN MINI CART HEADER */
     20let luxuryconcept_mini_cart_icon = document.querySelector('.li__icon_cart');
     21let luxuryconcept_mini_cart_content = document.querySelector('.widget_shopping_cart');
     22
     23if(luxuryconcept_mini_cart_icon){
     24    luxuryconcept_mini_cart_icon.addEventListener("click", function() {
     25        luxuryconcept_mini_cart_content.classList.toggle('widget_shopping_cart-open');
     26    });
     27}
     28
     29/* Add Body class on scroll */
     30window.addEventListener('scroll', function() {
     31    if(window.scrollY > 100){
     32        document.body.classList.add('scroll-down');
     33    } else {
     34        document.body.classList.remove('scroll-down');
     35    }
     36});
    1937
    2038
  • luxuryconceptfree/1.0.1/languages/it_IT.po

    r201434 r201647  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: Luxury Concept\n"
    4 "POT-Creation-Date: 2023-09-05 14:32+0200\n"
    5 "PO-Revision-Date: 2023-09-06 18:36+0200\n"
     3"Project-Id-Version: LuxuryConceptFree\n"
     4"POT-Creation-Date: 2023-09-08 18:26+0200\n"
     5"PO-Revision-Date: 2023-09-09 10:26+0200\n"
    66"Last-Translator: \n"
    7 "Language-Team: \n"
     7"Language-Team: ste.fattori@gmail.com\n"
    88"Language: it_IT\n"
    99"MIME-Version: 1.0\n"
     
    1414"X-Poedit-Basepath: .\n"
    1515"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;esc_html_e;esc_html__;"
    16 "_nx;esc_attr_e\n"
     16"_nx;esc_attr_e;esc_url;_x\n"
    1717"X-Poedit-SearchPath-0: ..\n"
    1818
     
    3333"Utilizzate i menu o la casella di ricerca per trovare ciò che cercate."
    3434
    35 #: ../comments.php:27 ../index.php:57
     35#: ../comments.php:27 ../index.php:56
    3636msgid "No Responses"
    3737msgstr "Non ci sono commenti"
    3838
    39 #: ../comments.php:27 ../index.php:57
     39#: ../comments.php:27 ../index.php:56
    4040msgid "1 Response"
    4141msgstr "1 Commento"
    4242
    43 #: ../comments.php:27 ../index.php:57
     43#: ../comments.php:27 ../index.php:56
    4444msgid "% Responses"
    4545msgstr "% Commenti"
     
    6161msgstr "I Commenti sono Chiusi."
    6262
    63 #: ../footer.php:35
    64 msgid "&copy; Copyright "
    65 msgstr ""
    66 
    6763#: ../footer.php:36
    68 msgid "Top "
    69 msgstr ""
    70 
    71 #: ../functions.php:92
     64#, fuzzy, php-format
     65#| msgid "Developed By <a href=\"%s\" target=\"_blank\">Stefano Fattori</a> "
     66msgid "- <a href=\"%s\" target=\"_blank\">Luxury Concept Theme</a> - "
     67msgstr "Sviluppato da <a href=\"%s\" target=\"_blank\">Stefano Fattori</a> "
     68
     69#: ../footer.php:37
     70#, php-format
     71msgid "Developed By <a href=\"%s\" target=\"_blank\">Stefano Fattori</a> "
     72msgstr "Sviluppato da <a href=\"%s\" target=\"_blank\">Stefano Fattori</a> "
     73
     74#: ../footer.php:39
     75msgid "&copy; "
     76msgstr ""
     77
     78#: ../footer.php:40
     79msgid "Top"
     80msgstr ""
     81
     82#: ../functions.php:109
    7283msgid "Header Menu"
    7384msgstr ""
    7485
    75 #: ../functions.php:93
     86#: ../functions.php:110
    7687msgid "Quick Menu"
    7788msgstr ""
    7889
    79 #: ../functions.php:94
     90#: ../functions.php:111
    8091msgid "Footer Menu"
    8192msgstr ""
    8293
    83 #: ../functions.php:103
     94#: ../functions.php:120
    8495msgid "Light gray"
    8596msgstr ""
    8697
    87 #: ../functions.php:108
     98#: ../functions.php:125
    8899msgid "Medium gray"
    89100msgstr ""
    90101
    91 #: ../functions.php:113
     102#: ../functions.php:130
    92103msgid "Dark gray"
    93104msgstr ""
    94105
    95 #: ../functions.php:118 ../inc/customizer/customizer.php:141
     106#: ../functions.php:135 ../inc/customizer/customizer.php:156
    96107msgid "Link Color"
    97108msgstr ""
    98109
    99 #: ../functions.php:123 ../inc/customizer/customizer.php:155
     110#: ../functions.php:140 ../inc/customizer/customizer.php:170
    100111msgid "Link Color Hover"
    101112msgstr ""
    102113
    103 #: ../functions.php:134
     114#: ../functions.php:151
    104115msgid "Blue Quote"
    105116msgstr ""
    106117
    107 #: ../functions.php:199
     118#: ../functions.php:216
    108119msgid "Primary"
    109120msgstr ""
    110121
    111 #: ../functions.php:199
     122#: ../functions.php:216
    112123msgid "Left or Right Sidebar near content."
    113124msgstr ""
    114125
    115 #: ../functions.php:201
     126#: ../functions.php:218 ../inc/customizer/customizer.php:483
    116127msgid "Footer"
    117128msgstr ""
    118129
    119 #: ../functions.php:201
     130#: ../functions.php:218
    120131msgid "Footer full width sidebar."
    121132msgstr ""
    122133
    123 #: ../functions.php:205
     134#: ../functions.php:222
    124135msgid "Woocommerce Sidebar"
    125136msgstr ""
    126137
    127 #: ../functions.php:205
     138#: ../functions.php:222
    128139msgid "Woocommerce Sidebar on shop page."
    129140msgstr ""
    130141
    131 #: ../header.php:40
     142#: ../header.php:54
    132143msgid "Menu"
    133144msgstr ""
     
    150161msgstr ""
    151162
    152 #: ../inc/content/custom-breadcrumb.php:237
     163#: ../inc/content/custom-breadcrumb.php:240
    153164msgid "Search result for..."
    154165msgstr "Risultati di ricerca per..."
    155166
    156 #: ../inc/content/custom-breadcrumb.php:242
     167#: ../inc/content/custom-breadcrumb.php:245
    157168msgid "Error 404"
    158169msgstr "Errore 404"
     
    170181msgstr "Navigazione Pagine"
    171182
    172 #: ../inc/customizer/customizer.php:13
     183#: ../inc/customizer/customizer.php:20
     184msgid "Invert color logo"
     185msgstr ""
     186
     187#: ../inc/customizer/customizer.php:21
     188msgid "<br>You can invert the color logo (ex. from black to white)"
     189msgstr ""
     190
     191#: ../inc/customizer/customizer.php:28
    173192msgid "Luxury Concept Settings"
    174193msgstr "Impostazioni di Luxury Concept"
    175194
    176 #: ../inc/customizer/customizer.php:14
     195#: ../inc/customizer/customizer.php:29
    177196msgid "All Theme Settings"
    178197msgstr "Impostazioni del tema"
    179198
    180 #: ../inc/customizer/customizer.php:21
     199#: ../inc/customizer/customizer.php:36
    181200msgid "Typography"
    182201msgstr "Caratteri"
    183202
    184 #: ../inc/customizer/customizer.php:35
     203#: ../inc/customizer/customizer.php:50
    185204msgid "Google Font (ex. Roboto )"
    186205msgstr ""
    187206
    188 #: ../inc/customizer/customizer.php:49
     207#: ../inc/customizer/customizer.php:64
    189208msgid "Font Weight (ex. 300,400,700 )"
    190209msgstr ""
    191210
    192 #: ../inc/customizer/customizer.php:63
     211#: ../inc/customizer/customizer.php:78
    193212msgid "Global Font Size (ex. 16px, 2rem, 80%)"
    194213msgstr ""
    195214
    196 #: ../inc/customizer/customizer.php:78
     215#: ../inc/customizer/customizer.php:93
    197216msgid "Title 1 Font Size - h1 (ex. 16px, 2rem, 80%)"
    198217msgstr ""
    199218
    200 #: ../inc/customizer/customizer.php:93
     219#: ../inc/customizer/customizer.php:108
    201220msgid "Title 2 Font Size - h2 (ex. 16px, 2rem, 80%)"
    202221msgstr ""
    203222
    204 #: ../inc/customizer/customizer.php:108
     223#: ../inc/customizer/customizer.php:123
    205224msgid "Title 3 Font Size - h3 (ex. 16px, 2rem, 80%)"
    206225msgstr ""
    207226
    208 #: ../inc/customizer/customizer.php:123
     227#: ../inc/customizer/customizer.php:138
    209228msgid "Title 4 Font Size - h4 (ex. 16px, 2rem, 80%)"
    210229msgstr ""
    211230
    212 #: ../inc/customizer/customizer.php:168
     231#: ../inc/customizer/customizer.php:183
    213232msgid "Header Color"
    214233msgstr ""
    215234
    216 #: ../inc/customizer/customizer.php:181
     235#: ../inc/customizer/customizer.php:196
     236msgid "Top Bar Background Color"
     237msgstr ""
     238
     239#: ../inc/customizer/customizer.php:209
     240msgid "Top Bar Text Color"
     241msgstr ""
     242
     243#: ../inc/customizer/customizer.php:222
    217244msgid "Border Color"
    218245msgstr ""
    219246
    220 #: ../inc/customizer/customizer.php:194
     247#: ../inc/customizer/customizer.php:235
    221248msgid "Global Site Text Color"
    222249msgstr ""
    223250
    224 #: ../inc/customizer/customizer.php:207
    225 msgid "Header Text Color"
    226 msgstr ""
    227 
    228 #: ../inc/customizer/customizer.php:220
     251#: ../inc/customizer/customizer.php:249
     252msgid "Header Transparent Text Color"
     253msgstr ""
     254
     255#: ../inc/customizer/customizer.php:250
     256msgid ""
     257"Header Text Color when you set Home Page template with transparent header"
     258msgstr ""
     259
     260#: ../inc/customizer/customizer.php:263
    229261msgid "Posts Background Color"
    230262msgstr ""
    231263
    232 #: ../inc/customizer/customizer.php:230
     264#: ../inc/customizer/customizer.php:274
    233265msgid "Layouts & Header"
    234266msgstr ""
    235267
    236 #: ../inc/customizer/customizer.php:243
     268#: ../inc/customizer/customizer.php:287
    237269msgid "Full width or Boxed layout"
    238270msgstr "Layout a Larghezza Massima o Layout Fisso"
    239271
    240 #: ../inc/customizer/customizer.php:248
     272#: ../inc/customizer/customizer.php:292
    241273msgid "Full width layout"
    242274msgstr "Layout a Larghezza Massima"
    243275
    244 #: ../inc/customizer/customizer.php:249
     276#: ../inc/customizer/customizer.php:293
    245277msgid "Boxed layout"
    246278msgstr "Layout Fisso"
    247279
    248 #: ../inc/customizer/customizer.php:261
     280#: ../inc/customizer/customizer.php:305
    249281#, no-php-format
    250282msgid ""
     
    255287"Funziona solo con il Layout a Larghezza Massima selezionato "
    256288
    257 #: ../inc/customizer/customizer.php:278
     289#: ../inc/customizer/customizer.php:322
    258290msgid "Enable Sticky Header"
    259291msgstr "Abilita lo Sticky Header"
    260292
    261 #: ../inc/customizer/customizer.php:293
     293#: ../inc/customizer/customizer.php:337
    262294msgid "Logo and Menu Position"
    263295msgstr "Posizione Logo e Menu"
    264296
    265 #: ../inc/customizer/customizer.php:298
     297#: ../inc/customizer/customizer.php:342
    266298msgid "Left Logo / Center Menu"
    267299msgstr "Logo Centrale / Menu Sinistra"
    268300
    269 #: ../inc/customizer/customizer.php:299
     301#: ../inc/customizer/customizer.php:343
    270302msgid "Left Menu / Center Logo"
    271303msgstr "Menu Sinistra / Logo Centrale"
    272304
    273 #: ../inc/customizer/customizer.php:312
     305#: ../inc/customizer/customizer.php:356
    274306msgid "Article list image"
    275307msgstr "Immagine in evidenza degli articoli del blog"
    276308
    277 #: ../inc/customizer/customizer.php:317
     309#: ../inc/customizer/customizer.php:361
    278310msgid "Don't Show Image"
    279311msgstr "Non visualizzare l'immagine"
    280312
    281 #: ../inc/customizer/customizer.php:318
     313#: ../inc/customizer/customizer.php:362
    282314msgid "Before Title"
    283315msgstr "Prima del titolo"
    284316
    285 #: ../inc/customizer/customizer.php:319
     317#: ../inc/customizer/customizer.php:363
    286318msgid "After Title"
    287319msgstr "Dopo il titolo"
    288320
    289 #: ../inc/customizer/customizer.php:336
     321#: ../inc/customizer/customizer.php:380
    290322msgid "Blog Number Columns"
    291323msgstr "Numero di colonne degli articoli blog"
    292324
    293 #: ../inc/customizer/customizer.php:353
     325#: ../inc/customizer/customizer.php:397
    294326msgid "Show Header and Footer Borders"
    295327msgstr "Visualizza i bordi dell'header e del footer"
    296328
    297 #: ../inc/customizer/customizer.php:367
     329#: ../inc/customizer/customizer.php:411
    298330msgid "Breadcrumbs"
    299331msgstr ""
    300332
    301 #: ../inc/customizer/customizer.php:372
     333#: ../inc/customizer/customizer.php:416
    302334msgid "Don't show Breadcrumbs"
    303335msgstr "Non visualizzare il Breadcrumbs"
    304336
    305 #: ../inc/customizer/customizer.php:373
     337#: ../inc/customizer/customizer.php:417
    306338msgid "Show Custom theme Breadcrumbs"
    307339msgstr "Visualizza Breadcrumbs di sistema"
    308340
    309 #: ../inc/customizer/customizer.php:374
     341#: ../inc/customizer/customizer.php:418
    310342msgid "Show YOAST SEO Breadcrumbs"
    311343msgstr "Visualizza YOAST SEO Breadcrumbs"
    312344
    313 #: ../inc/customizer/customizer.php:388
     345#: ../inc/customizer/customizer.php:432
    314346msgid "WhatsApp Number (ex. 3483333333)"
    315347msgstr "Numero WhatsApp (ex. 3483333333)"
     348
     349#: ../inc/customizer/customizer.php:443
     350msgid "TOP BAR"
     351msgstr ""
     352
     353#: ../inc/customizer/customizer.php:456
     354msgid "Welcome message"
     355msgstr ""
     356
     357#: ../inc/customizer/customizer.php:457
     358msgid "Insert a plain text"
     359msgstr ""
     360
     361#: ../inc/customizer/customizer.php:471
     362msgid "Welcome link"
     363msgstr ""
     364
     365#: ../inc/customizer/customizer.php:472
     366msgid "Insert an URL (ex. https://www.myurl.com)"
     367msgstr ""
     368
     369#: ../inc/customizer/customizer.php:496
     370msgid "Copyright Text"
     371msgstr ""
    316372
    317373#: ../inc/patterns/buttons.php:10
     
    437493msgstr "Risultati per:"
    438494
     495#: ../index.php:29
     496msgid "Latest posts "
     497msgstr "Ultimi articoli "
     498
    439499#: ../index.php:35
    440500msgid "Author: "
    441501msgstr "Autore: "
    442502
    443 #: ../index.php:55
     503#: ../index.php:54
    444504msgid "By"
    445505msgstr "Da"
    446 
    447 #: ../index.php:57
    448 msgid "Comments On "
    449 msgstr "Commenti Su "
    450506
    451507#: ../index.php:82 ../page.php:38 ../single.php:94 ../templates/home.php:25
     
    473529msgstr "Cerca "
    474530
    475 #: ../sidebar.php:21
     531#: ../sidebar-footer.php:21 ../sidebar.php:21
    476532msgid "Archives"
    477533msgstr "Archivi"
    478534
    479 #: ../sidebar.php:28
     535#: ../sidebar-footer.php:28 ../sidebar.php:28
    480536msgid "Meta"
    481537msgstr ""
     
    485541msgid "Related Posts"
    486542msgstr "Articoli Correlati"
     543
     544#~ msgid ""
     545#~ "<a href=\"https://luxuryconcept.website\">Luxury Concept Theme</a> - "
     546#~ "Developed By <a href=\"https://stefanofattori.it\">Stefano Fattori</a>"
     547#~ msgstr ""
     548#~ "<a href=\"https://luxuryconcept.website\">Luxury Concept Theme</a> - "
     549#~ "Sviluppato da <a href=\"https://stefanofattori.it\">Stefano Fattori</a>"
     550
     551#~ msgid "Comments On "
     552#~ msgstr "Commenti Su "
    487553
    488554#~ msgid "Next >>"
  • luxuryconceptfree/1.0.1/languages/luxuryconcept.pot

    r201434 r201647  
     1#, fuzzy
    12msgid ""
    23msgstr ""
    3 "Project-Id-Version: Nextawards\n"
    4 "POT-Creation-Date: 2016-04-10 11:38+0100\n"
     4"Project-Id-Version: LuxuryConceptFree\n"
     5"POT-Creation-Date: 2023-09-09 10:26+0200\n"
    56"PO-Revision-Date: 2016-04-10 11:47+0100\n"
    67"Last-Translator: Andrea Marchetti <afmarchetti@gmail.com>\n"
    7 "Language-Team: \n"
     8"Language-Team: ste.fattori@gmail.com\n"
    89"MIME-Version: 1.0\n"
    910"Content-Type: text/plain; charset=UTF-8\n"
    1011"Content-Transfer-Encoding: 8bit\n"
    11 "X-Generator: Poedit 1.6.7\n"
     12"Plural-Forms: nplurals=2; plural=n != 1;\n"
     13"X-Generator: Poedit 3.3.2\n"
    1214"X-Poedit-Basepath: .\n"
    13 "Plural-Forms: nplurals=2; plural=n != 1;\n"
    14 "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c\n"
     15"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;esc_html_e;esc_html__;"
     16"_nx;esc_attr_e;esc_url;_x\n"
    1517"X-Poedit-SearchPath-0: ..\n"
    1618
    17 #: ../404.php:16
     19#: ../404.php:14
    1820msgid "Oops! That page can&rsquo;t be found."
    1921msgstr ""
    2022
     23#: ../404.php:15
     24msgid "404 Error"
     25msgstr ""
     26
    2127#: ../404.php:17
    22 msgid "404 Error"
    23 msgstr ""
    24 
    25 #: ../404.php:19
    2628msgid ""
    2729"The page you are trying to reach does not exist, or has been moved. Please "
     
    2931msgstr ""
    3032
    31 #: ../comments.php:4
    32 msgid "Please do not load this page directly. Thanks!"
    33 msgstr ""
    34 
    35 #: ../comments.php:6
    36 msgid "This post is password protected. Enter the password to view comments."
    37 msgstr ""
    38 
    39 #: ../comments.php:13
     33#: ../comments.php:27 ../index.php:56
    4034msgid "No Responses"
    4135msgstr ""
    4236
    43 #: ../comments.php:13
     37#: ../comments.php:27 ../index.php:56
    4438msgid "1 Response"
    4539msgstr ""
    4640
    47 #: ../comments.php:13
     41#: ../comments.php:27 ../index.php:56
    4842msgid "% Responses"
    4943msgstr ""
    5044
    51 #: ../comments.php:31 ../comments.php:39
     45#: ../comments.php:47
     46msgid "Comment navigation"
     47msgstr ""
     48
     49#: ../comments.php:48
     50msgid "&larr; Older Comments"
     51msgstr ""
     52
     53#: ../comments.php:49
     54msgid "Newer Comments &rarr;"
     55msgstr ""
     56
     57#: ../comments.php:54
    5258msgid "Comments are closed."
    5359msgstr ""
    5460
    55 #: ../comments.php:50
    56 msgid "Submit Comment"
    57 msgstr ""
    58 
    59 #: ../comments.php:56
    60 msgid "Comments RSS Feed"
    61 msgstr ""
    62 
    63 #: ../footer.php:29
    64 msgid "&copy; Copyright "
    65 msgstr ""
    66 
    67 #: ../index.php:22
     61#: ../footer.php:36
     62#, php-format
     63msgid "- <a href=\"%s\" target=\"_blank\">Luxury Concept Theme</a> - "
     64msgstr ""
     65
     66#: ../footer.php:37
     67#, php-format
     68msgid "Developed By <a href=\"%s\" target=\"_blank\">Stefano Fattori</a> "
     69msgstr ""
     70
     71#: ../footer.php:39
     72msgid "&copy; "
     73msgstr ""
     74
     75#: ../footer.php:40
     76msgid "Top"
     77msgstr ""
     78
     79#: ../functions.php:109
     80msgid "Header Menu"
     81msgstr ""
     82
     83#: ../functions.php:110
     84msgid "Quick Menu"
     85msgstr ""
     86
     87#: ../functions.php:111
     88msgid "Footer Menu"
     89msgstr ""
     90
     91#: ../functions.php:120
     92msgid "Light gray"
     93msgstr ""
     94
     95#: ../functions.php:125
     96msgid "Medium gray"
     97msgstr ""
     98
     99#: ../functions.php:130
     100msgid "Dark gray"
     101msgstr ""
     102
     103#: ../functions.php:135 ../inc/customizer/customizer.php:156
     104msgid "Link Color"
     105msgstr ""
     106
     107#: ../functions.php:140 ../inc/customizer/customizer.php:170
     108msgid "Link Color Hover"
     109msgstr ""
     110
     111#: ../functions.php:151
     112msgid "Blue Quote"
     113msgstr ""
     114
     115#: ../functions.php:216
     116msgid "Primary"
     117msgstr ""
     118
     119#: ../functions.php:216
     120msgid "Left or Right Sidebar near content."
     121msgstr ""
     122
     123#: ../functions.php:218 ../inc/customizer/customizer.php:483
     124msgid "Footer"
     125msgstr ""
     126
     127#: ../functions.php:218
     128msgid "Footer full width sidebar."
     129msgstr ""
     130
     131#: ../functions.php:222
     132msgid "Woocommerce Sidebar"
     133msgstr ""
     134
     135#: ../functions.php:222
     136msgid "Woocommerce Sidebar on shop page."
     137msgstr ""
     138
     139#: ../header.php:54
     140msgid "Menu"
     141msgstr ""
     142
     143#: ../inc/block-patterns.php:29
     144msgid "Luxury Concept"
     145msgstr ""
     146
     147#: ../inc/comments/custom-comments.php:21
     148msgid "Your comment is awaiting moderation."
     149msgstr ""
     150
     151#: ../inc/comments/custom-comments.php:34
     152#, php-format
     153msgid "%1$s - %2$s"
     154msgstr ""
     155
     156#: ../inc/content/custom-breadcrumb.php:23
     157msgid "Home"
     158msgstr ""
     159
     160#: ../inc/content/custom-breadcrumb.php:240
     161msgid "Search result for..."
     162msgstr ""
     163
     164#: ../inc/content/custom-breadcrumb.php:245
     165msgid "Error 404"
     166msgstr ""
     167
     168#: ../inc/content/pagination.php:10
     169msgid "&#10094; Previous"
     170msgstr ""
     171
     172#: ../inc/content/pagination.php:11
     173msgid "Next &#10095;"
     174msgstr ""
     175
     176#: ../inc/content/pagination.php:12
     177msgid "Posts Navigation"
     178msgstr ""
     179
     180#: ../inc/customizer/customizer.php:20
     181msgid "Invert color logo"
     182msgstr ""
     183
     184#: ../inc/customizer/customizer.php:21
     185msgid "<br>You can invert the color logo (ex. from black to white)"
     186msgstr ""
     187
     188#: ../inc/customizer/customizer.php:28
     189msgid "Luxury Concept Settings"
     190msgstr ""
     191
     192#: ../inc/customizer/customizer.php:29
     193msgid "All Theme Settings"
     194msgstr ""
     195
     196#: ../inc/customizer/customizer.php:36
     197msgid "Typography"
     198msgstr ""
     199
     200#: ../inc/customizer/customizer.php:50
     201msgid "Google Font (ex. Roboto )"
     202msgstr ""
     203
     204#: ../inc/customizer/customizer.php:64
     205msgid "Font Weight (ex. 300,400,700 )"
     206msgstr ""
     207
     208#: ../inc/customizer/customizer.php:78
     209msgid "Global Font Size (ex. 16px, 2rem, 80%)"
     210msgstr ""
     211
     212#: ../inc/customizer/customizer.php:93
     213msgid "Title 1 Font Size - h1 (ex. 16px, 2rem, 80%)"
     214msgstr ""
     215
     216#: ../inc/customizer/customizer.php:108
     217msgid "Title 2 Font Size - h2 (ex. 16px, 2rem, 80%)"
     218msgstr ""
     219
     220#: ../inc/customizer/customizer.php:123
     221msgid "Title 3 Font Size - h3 (ex. 16px, 2rem, 80%)"
     222msgstr ""
     223
     224#: ../inc/customizer/customizer.php:138
     225msgid "Title 4 Font Size - h4 (ex. 16px, 2rem, 80%)"
     226msgstr ""
     227
     228#: ../inc/customizer/customizer.php:183
     229msgid "Header Color"
     230msgstr ""
     231
     232#: ../inc/customizer/customizer.php:196
     233msgid "Top Bar Background Color"
     234msgstr ""
     235
     236#: ../inc/customizer/customizer.php:209
     237msgid "Top Bar Text Color"
     238msgstr ""
     239
     240#: ../inc/customizer/customizer.php:222
     241msgid "Border Color"
     242msgstr ""
     243
     244#: ../inc/customizer/customizer.php:235
     245msgid "Global Site Text Color"
     246msgstr ""
     247
     248#: ../inc/customizer/customizer.php:249
     249msgid "Header Transparent Text Color"
     250msgstr ""
     251
     252#: ../inc/customizer/customizer.php:250
     253msgid ""
     254"Header Text Color when you set Home Page template with transparent header"
     255msgstr ""
     256
     257#: ../inc/customizer/customizer.php:263
     258msgid "Posts Background Color"
     259msgstr ""
     260
     261#: ../inc/customizer/customizer.php:274
     262msgid "Layouts & Header"
     263msgstr ""
     264
     265#: ../inc/customizer/customizer.php:287
     266msgid "Full width or Boxed layout"
     267msgstr ""
     268
     269#: ../inc/customizer/customizer.php:292
     270msgid "Full width layout"
     271msgstr ""
     272
     273#: ../inc/customizer/customizer.php:293
     274msgid "Boxed layout"
     275msgstr ""
     276
     277#: ../inc/customizer/customizer.php:305
     278#, no-php-format
     279msgid ""
     280"Content Padding (Left / Right) (ex. 3% or 20px) - Only works With Full "
     281"Width Layout selected "
     282msgstr ""
     283
     284#: ../inc/customizer/customizer.php:322
     285msgid "Enable Sticky Header"
     286msgstr ""
     287
     288#: ../inc/customizer/customizer.php:337
     289msgid "Logo and Menu Position"
     290msgstr ""
     291
     292#: ../inc/customizer/customizer.php:342
     293msgid "Left Logo / Center Menu"
     294msgstr ""
     295
     296#: ../inc/customizer/customizer.php:343
     297msgid "Left Menu / Center Logo"
     298msgstr ""
     299
     300#: ../inc/customizer/customizer.php:356
     301msgid "Article list image"
     302msgstr ""
     303
     304#: ../inc/customizer/customizer.php:361
     305msgid "Don't Show Image"
     306msgstr ""
     307
     308#: ../inc/customizer/customizer.php:362
     309msgid "Before Title"
     310msgstr ""
     311
     312#: ../inc/customizer/customizer.php:363
     313msgid "After Title"
     314msgstr ""
     315
     316#: ../inc/customizer/customizer.php:380
     317msgid "Blog Number Columns"
     318msgstr ""
     319
     320#: ../inc/customizer/customizer.php:397
     321msgid "Show Header and Footer Borders"
     322msgstr ""
     323
     324#: ../inc/customizer/customizer.php:411
     325msgid "Breadcrumbs"
     326msgstr ""
     327
     328#: ../inc/customizer/customizer.php:416
     329msgid "Don't show Breadcrumbs"
     330msgstr ""
     331
     332#: ../inc/customizer/customizer.php:417
     333msgid "Show Custom theme Breadcrumbs"
     334msgstr ""
     335
     336#: ../inc/customizer/customizer.php:418
     337msgid "Show YOAST SEO Breadcrumbs"
     338msgstr ""
     339
     340#: ../inc/customizer/customizer.php:432
     341msgid "WhatsApp Number (ex. 3483333333)"
     342msgstr ""
     343
     344#: ../inc/customizer/customizer.php:443
     345msgid "TOP BAR"
     346msgstr ""
     347
     348#: ../inc/customizer/customizer.php:456
     349msgid "Welcome message"
     350msgstr ""
     351
     352#: ../inc/customizer/customizer.php:457
     353msgid "Insert a plain text"
     354msgstr ""
     355
     356#: ../inc/customizer/customizer.php:471
     357msgid "Welcome link"
     358msgstr ""
     359
     360#: ../inc/customizer/customizer.php:472
     361msgid "Insert an URL (ex. https://www.myurl.com)"
     362msgstr ""
     363
     364#: ../inc/customizer/customizer.php:496
     365msgid "Copyright Text"
     366msgstr ""
     367
     368#: ../inc/patterns/buttons.php:10
     369msgid "Luxuryconcept - Buttons"
     370msgstr ""
     371
     372#: ../inc/patterns/buttons.php:11 ../inc/patterns/content-images.php:11
     373#: ../inc/patterns/media-content.php:11
     374msgctxt "Block pattern description"
     375msgid ""
     376"Two horizontal buttons, the left button is filled in, and the right button "
     377"is outlined."
     378msgstr ""
     379
     380#: ../inc/patterns/buttons.php:14
     381msgid "Button One"
     382msgstr ""
     383
     384#: ../inc/patterns/buttons.php:14
     385msgid "Button Two"
     386msgstr ""
     387
     388#: ../inc/patterns/contacts.php:10
     389msgid "Luxuryconcept - Contacts"
     390msgstr ""
     391
     392#: ../inc/patterns/contacts.php:11
     393msgctxt "Block pattern description"
     394msgid "A contacts section with icons."
     395msgstr ""
     396
     397#: ../inc/patterns/content-images.php:10
     398msgid "Luxuryconcept - Content Images"
     399msgstr ""
     400
     401#: ../inc/patterns/cta-cover.php:10
     402msgid "Luxuryconcept - CTA Cover"
     403msgstr ""
     404
     405#: ../inc/patterns/cta-cover.php:11
     406msgctxt "Block pattern description"
     407msgid "A cta section with, title, descritpion and cta."
     408msgstr ""
     409
     410#: ../inc/patterns/faq.php:10
     411msgid "Luxuryconcept - FAQ"
     412msgstr ""
     413
     414#: ../inc/patterns/faq.php:11
     415msgctxt "Block pattern description"
     416msgid "A faq section with accordion animation."
     417msgstr ""
     418
     419#: ../inc/patterns/features.php:10
     420msgid "Luxuryconcept - Features"
     421msgstr ""
     422
     423#: ../inc/patterns/features.php:11
     424msgctxt "Block pattern description"
     425msgid "A hero section list of features."
     426msgstr ""
     427
     428#: ../inc/patterns/hero-cover.php:11
     429msgid "Luxuryconcept - Hero Cover"
     430msgstr ""
     431
     432#: ../inc/patterns/hero-cover.php:12
     433msgctxt "Block pattern description"
     434msgid "A hero section with two buttons, title and description."
     435msgstr ""
     436
     437#: ../inc/patterns/hero-media-content.php:10
     438msgid "Luxuryconcept - Hero Media Content"
     439msgstr ""
     440
     441#: ../inc/patterns/hero-media-content.php:11
     442msgctxt "Block pattern description"
     443msgid "A hero section with, title, descritpion and cta."
     444msgstr ""
     445
     446#: ../inc/patterns/info.php:10
     447msgid "Luxuryconcept - Info"
     448msgstr ""
     449
     450#: ../inc/patterns/info.php:11
     451msgctxt "Block pattern description"
     452msgid "A info section with gallery, title and description."
     453msgstr ""
     454
     455#: ../inc/patterns/keypoint.php:10
     456msgid "Luxuryconcept - Keypoint"
     457msgstr ""
     458
     459#: ../inc/patterns/keypoint.php:11
     460msgctxt "Block pattern description"
     461msgid "A 3 Keypoints section with icons, title and description."
     462msgstr ""
     463
     464#: ../inc/patterns/media-content.php:10
     465msgid "Luxuryconcept - Media Content"
     466msgstr ""
     467
     468#: ../inc/patterns/team.php:10
     469msgid "Luxuryconcept - Team"
     470msgstr ""
     471
     472#: ../inc/patterns/team.php:11
     473msgctxt "Block pattern description"
     474msgid "A team section with, title, descritpion and social icons."
     475msgstr ""
     476
     477#: ../inc/patterns/testimonial.php:10
     478msgid "Luxuryconcept - Testimonial"
     479msgstr ""
     480
     481#: ../inc/patterns/testimonial.php:11
     482msgctxt "Block pattern description"
     483msgid "A testimonials section with, name, photo and text."
     484msgstr ""
     485
     486#: ../index.php:25
    68487msgid "Result for:"
    69488msgstr ""
    70489
    71 #: ../index.php:67 ../page-templates/home-page.php:57 ../page.php:37
    72 #: ../single.php:42
     490#: ../index.php:29
     491msgid "Latest posts "
     492msgstr ""
     493
     494#: ../index.php:35
     495msgid "Author: "
     496msgstr ""
     497
     498#: ../index.php:54
     499msgid "By"
     500msgstr ""
     501
     502#: ../index.php:82 ../page.php:38 ../single.php:94 ../templates/home.php:25
     503#: ../templates/page-no-sidebar.php:36 ../templates/page-sidebar-right.php:36
     504#: ../templates/single-no-sidebar.php:95
     505#: ../templates/single-sidebar-right.php:96
     506#: ../templates/transparent-header.php:25
    73507msgid "Sorry, no posts matched your criteria."
    74508msgstr ""
    75509
    76 #: ../index.php:68
     510#: ../page.php:30 ../single.php:26 ../templates/home.php:20
     511#: ../templates/page-no-sidebar.php:28 ../templates/page-sidebar-right.php:28
     512#: ../templates/single-no-sidebar.php:27
     513#: ../templates/single-sidebar-right.php:28
     514#: ../templates/transparent-header.php:20
     515msgid "Read More..."
     516msgstr ""
     517
     518#: ../searchform.php:11
    77519msgid "Try to make a search..."
    78520msgstr ""
    79521
    80 #: ../page.php:28
    81 msgid "Read More..."
    82 msgstr ""
    83 
    84 #: ../searchform.php:12
    85 msgid "Search"
    86 msgstr ""
    87 
    88 msgid "Powered by "
    89 msgstr ""
    90 
    91 msgid "Logo"
    92 msgstr ""
    93 
    94 msgid ""
    95 "Upload a logo to replace the default site name and description in the header"
    96 msgstr ""
     522#: ../searchform.php:13
     523msgid "Search "
     524msgstr ""
     525
     526#: ../sidebar-footer.php:21 ../sidebar.php:21
     527msgid "Archives"
     528msgstr ""
     529
     530#: ../sidebar-footer.php:28 ../sidebar.php:28
     531msgid "Meta"
     532msgstr ""
     533
     534#: ../single.php:56 ../templates/single-no-sidebar.php:57
     535#: ../templates/single-sidebar-right.php:58
     536msgid "Related Posts"
     537msgstr ""
  • luxuryconceptfree/1.0.1/page.php

    r201434 r201647  
    1414    <div class="primary-sidebar"><?php get_sidebar( 'primary' ); ?></div>   
    1515
    16     <main id="content" class="main-content" role="main">   
     16    <main id="content" class="main-content">   
    1717       
    1818   
  • luxuryconceptfree/1.0.1/readme.txt

    r201434 r201647  
    1 === Luxury Concept Free Theme ===
    2 Contributors: stefanofattori
    3 Requires at least: 5.3
    4 Tested up to: 6.1
    5 Requires PHP: 5.6
    6 Stable tag: 1.0
    7 License: GPLv3 or later
    8 License URI: http://www.gnu.org/licenses/gpl-3.0.html
     1=== Luxury Concept Theme ===
     2Theme Name:     LuxuryConceptFree
     3Theme URI:  https://www.luxuryconcept.website
     4Author:         Stefano Fattori
     5Author URI: https://www.stefanofattori.it
     6Description:    A Responsive WordPress Theme with Header Styles like trasparent Header Template, 3 Menus, Amazing Block Patterns, Cool animations, light and fast.
     7Requires at least: 6.1
     8Tested up to:   6.3
     9Requires PHP:   5.6
     10Version:        1.0.0
     11License:        GNU General Public License v3.0
     12License URI:    http://www.gnu.org/licenses/gpl-3.0.html
     13Text Domain:    luxuryconcept
     14Tags:           translation-ready, grid-layout, blog, news, custom-menu, featured-images, custom-header, left-sidebar, right-sidebar, one-column, two-columns, block-patterns, wide-blocks, custom-background, custom-colors, custom-logo, footer-widgets, full-width-template, sticky-post
     15Domain Path:    /languages
    916
    1017== Description ==
    1118
    1219Luxury Concept is an innovative Wordpress theme, which respects the Wordpress standards.
    13 It is beautiful and luxurious, it is fully customisable via the wordpress customise menu, it is very light and fast, it doesn't use page builder and no external resources will be loaded.
    14 It's also support Woo Commerce.
     20It is beautiful and luxurious, it is fully customisable via the wordpress customise menu, it is very light and fast, it doesn't use page builder and no external resources will be loaded, except Google Fonts.
    1521
    1622
     
    2935- Add .cta class to a menu element to show a button.
    3036- Add class from this list (.icon-arrow, .icon-check, .icon-angle, .icon-ig, .icon-tw, .icon-yt, .icon-search, .icon-wa, .icon-tk, .icon-plus , .icon-call, .icon-hearth, .icon-reply, .icon-edit, .icon-cart, .icon-linkedin ) to a span or i element to add a system SVG icon.
    31 - Add .accordion class to div to enable accordion effect like FAQ.
    32 
    3337- The Date/Time Format can be set in Wordpress > Settings > General.
    3438- The number of articles per page can be set in Wordpress > Settings > Reading (Blog pages display at maximum).
     
    4448
    4549
     50=== Version Comparison ===
     51   Free:                  Premium:
     52Base Engine             Base Engine
     53Posts and Pages template     Posts and Pages template
     542 menus                 3 menus
     55Only Full Width Layout      Full width and Boxed Layout
     56WP Customizer Setting       WP Customizer Setting (more customisations)
     57Only 2 typography font size More typography font size (global,h1,h2,h3,h4)
     58Custom logo             Custom logo
     59Only Left logo and menu centered Logo Left / Menu center or Menu left / Logo center
     60Only support YOAST Beadcrumb    Yoast, custom and woocommerce breadcrumbs   
     61Featuerd article image (no / after title) Featuerd article image (no / before title /after title)
     62    X                     Custom Header
     63    X              WooCommerce Support
     64    X           WooCommerce Mini Cart Header
     65    X               Shop Sidebar
     66    X               Whatsapp Icon
     67    X             TOP BAR MESSAGGE/LINK
     68    X           Custom footer copyright text
     69Fast and Light          More optimized Super Fast and light
     70   
     71
     72
    4673== Changelog ==
     74
     75= 1.0.1 =
     76
     77* Fix Bugs
     78* Html and CSS W3C Validated
    4779
    4880= 1.0.0 =
    4981
    5082* Added a topbar with welcome message
     83* Added Woocommerce Ajax Mini Cart Header
     84* Added Custom Breadcrumb with Woocommerce support
    5185* Custom control (range number) WP customizer
    5286* Added support to Yoast SEO Breadcrumbs
     
    5690* Add WP Customizer Setting
    5791* Added Menus
     92* Added WooCommerce support (default css style)
    5893* Show Post Author on comments
    5994* Show user role on comments
     
    65100== Copyright ==
    66101
    67 Luxury Concept Free WordPress Theme, © 2023 StefanoFattori.it
     102Luxury Concept WordPress Theme, © 2023 StefanoFattori.it
    68103Luxury Concept is distributed under the terms of the GNU GPL.
    69104
    70105This program is free software: you can redistribute it and/or modify
    71106it under the terms of the GNU General Public License as published by
    72 the Free Software Foundation, either version 2 of the License, or
     107the Free Software Foundation, either version 3 of the License, or
    73108(at your option) any later version.
    74109
  • luxuryconceptfree/1.0.1/sidebar-footer.php

    r201434 r201647  
    1010
    1111    <?php if ( is_active_sidebar( 'footer' ) ) : ?>
    12         <?php dynamic_sidebar( 'footer' ); ?>
     12        <?php dynamic_sidebar( 'footer' ); ?>       
     13       
     14    <?php else : ?>
     15
     16        <aside id="search" class="widget widget_search">
     17            <?php get_search_form(); ?>
     18        </aside><!-- #search -->
     19
     20        <aside id="archives" class"widget">
     21            <h3 class="widget-title"><?php _e( 'Archives', 'luxuryconceptfree' ); ?></h3>
     22            <ul>
     23                <?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
     24            </ul>
     25        </aside><!-- #archives -->
     26
     27        <aside id="meta" class="widget">
     28            <h3 class="widget-title"><?php _e( 'Meta', 'luxuryconceptfree' ); ?></h3>
     29            <ul>
     30                <?php wp_register(); ?>
     31                <li><?php wp_loginout(); ?></li>
     32                <?php wp_meta(); ?>
     33            </ul>
     34        </aside><!-- #meta -->
    1335    <?php endif; ?>
    1436
  • luxuryconceptfree/1.0.1/single.php

    r201434 r201647  
    1212    <div class="primary-sidebar"><?php get_sidebar( 'primary' ); ?></div>   
    1313
    14     <main id="content" class="main-content" role="main">   
     14    <main id="content" class="main-content">   
    1515   
    1616        <?php if (have_posts()) :?><?php while(have_posts()) : the_post(); ?>
  • luxuryconceptfree/1.0.1/style.css

    r201434 r201647  
    11/*
    22Theme Name:     LuxuryConceptFree
    3 Description:    A Responsive Free WordPress Theme with Header Styles, Menus, Amazing Block Patterns, Trasparent Header Template, light and fast.
    4 Version:        1.0.0
     3Theme URI:      https://www.luxuryconcept.website
    54Author:         Stefano Fattori
    6 Text Domain:    luxuryconceptfree
     5Author URI:     https://www.stefanofattori.it
     6Description:    A Responsive WordPress Theme with Header Styles like trasparent Header Template, 3 Menus, 11 Amazing Block Patterns, WhatsApp Chat Icon, Cool animations, light and fast. It supports Woocommerce
    77Requires at least: 6.1
    88Tested up to:   6.3
    99Requires PHP:   5.6
    10 Domain Path:    /languages
    11 Tags:           grid-layout, blog, custom-menu, featured-images, custom-logo, left-sidebar, right-sidebar
     10Version:        1.0.1
    1211License:        GNU General Public License v3.0
    1312License URI:    http://www.gnu.org/licenses/gpl-3.0.html
    14 Theme URI:      https://www.luxuryconcept.website
    15 Author URI:     https://www.stefanofattori.it
     13Text Domain:    luxuryconcept
     14Tags:           translation-ready, grid-layout, blog, news, custom-menu, featured-images, custom-header, left-sidebar, right-sidebar, one-column, two-columns, block-patterns, wide-blocks, custom-background, custom-colors, custom-logo, , footer-widgets, full-width-template, sticky-post
     15Domain Path:    /languages
    1616
    1717
     
    4646
    4747/* VARIABLES CUSTOMIZABLE ON WP CUSTOMIZER */
    48 :root { --site-bg: #eee;
    49         --link-color: #048ea0;
    50         --link-color-hover: #105862;
    51         --header-bg: #eee; 
    52         --borders-color: #048ea0;   
    53    
    54         --show-footer-header-borders: 1px solid;
    55 
    56         --site-text-color: #000;
    57         --header-text-color: #000;
     48:root { --site-bg: #FFFFFF;
     49
     50        --link-color: #45cfbe;
     51        --link-color-hover: #3eb2bc;
     52        --header-bg: #FFFFFF;   
     53        --borders-color: #45cfbe;   
     54   
     55        --show-footer-header-borders: 1px solid var(--borders-color);
     56
     57        --site-text-color: #000000;
     58        --header-text-color: #000000;
    5859        --header-transparent-text-color: #FFFFFF;
    59         --posts-color: #eee;   
     60        --posts-color: #f4f4f4;
    6061   
    6162        --site-font-size: 16px;
    6263        --body-font-family: 'Quicksand';
    6364   
    64         --h1-font-size: 3.4rem;
    65         --h2-font-size: 2.2rem;
    66         --h3-font-size: 1.5rem;
    67         --h4-font-size: 1rem;
    68    
    69    
    70         --number-col-masonry: 2;
     65        --h1-font-size: 2.4rem;
     66        --h2-font-size: 1.5rem;
     67        --h3-font-size: 1.0rem;
     68        --h4-font-size: 0.8rem;
     69   
     70   
     71        --number-col-masonry: 3;
    7172        --wrapper-width: 100%;
    72         --content-padding: 20px 25px;
     73        --content-padding: 20px 5%;
    7374   
    7475   
     
    7879   
    7980        --topbar-bg: #45cfbe;
    80         --topbar-text-color: #000000;
     81        --topbar-text-color: #FFFFFF;
    8182   
    8283        --logo-invert-color: none; /* Invert color logo for transparent header */
     
    8889
    8990/* Typography */
    90 body{font-size: var(--site-font-size); background-color: var(--site-bg); color: var(--site-text-color); font-family: var(--body-font-family); -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: 100%;}
     91body{font-size: var(--site-font-size); background-color: var(--site-bg); color: var(--site-text-color); font-family: var(--body-font-family); }
    9192body.custom-background.dark{background-color: var(--site-bg);}
    9293
     
    106107
    107108/* Input Style */
    108 textarea { padding: 10px; width: 100%; border: 1px solid #949494; background: #fff; -webkit-appearance: none;appearance: none;border-radius: 10px;margin-top:5px}
     109textarea { padding: 10px; width: 100%; border: 1px solid #949494; background: #fff; appearance: none;border-radius: 10px;margin-top:5px}
    109110
    110111input[type=submit],
     
    112113input[type=submit]:active, button[type=submit]:active{transform:scale(0.9);transform: translate(2px,2px)}
    113114
    114 input[type=text],input[type=search]{    width: 100%; padding: 10px; border: 1px solid #949494; background: #fff; margin-top:5px; border-radius: 100px; }
     115input[type=text],input[type=search],input[type=email],input[type=url]{  width: 100%; padding: 10px; border: 1px solid #949494; background: #fff; margin-top:5px; border-radius: 100px; }
    115116
    116117input:focus, textarea:focus{ outline: 0; }
     
    127128
    128129/* Button Link */
    129 .wp-block-button__link{text-decoration: none!important;var(--link-color);}
    130 .wp-block-button__link:hover{text-decoration: none!important;var(--link-color-hover);}
     130.wp-block-button__link{text-decoration: none !important; color: var(--link-color); }
     131.wp-block-button__link:hover{text-decoration: none !important; color: var(--link-color-hover); }
    131132
    132133
     
    160161    padding: var(--content-padding);
    161162    margin: 0;
    162     gap:25px;
     163    gap:55px;
    163164}
    164165
     
    167168.header__logo{order: 1;}
    168169.header__logo-img{height: 120px !important;width: auto !important;}
     170.header__logo h1{font-size: 34px;}
     171.header__logo h2{font-size: 22px;}
     172
     173@media (max-width: 768px) {
     174    .header__logo h1{font-size: 20px;}
     175    .header__logo h2{font-size: 16px;}
     176}
     177
    169178
    170179.topbar{grid-area: topbar; display: grid; grid-template-columns: 1fr; background-color: var(--topbar-bg);padding: var(--content-padding); padding-top: 10px;padding-bottom: 10px;}
     
    265274    0 4px 4px rgba(0,0,0,0.05),
    266275    0 8px 8px rgba(0,0,0,0.05),
    267     0 16px 16px rgba(0,0,0,0.05);
     276    0 3px 15px rgba(0,0,0,0.05);
    268277    padding: 0;
    269278   
     
    336345    padding: 0;
    337346    background: var(--header-bg);       
    338     box-shadow: 0 4px 12px rgba(#000000, .1);
     347    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    339348    text-align: left;
    340349    transition: opacity 0.3s ease, transform 0.3s ease;
     
    355364    /* Menu Dropdown */
    356365    .sub-menu > li{ display:list-item; }
    357     .sub-menu > li a{ display:block; text-wrap: nowrap; }
     366    .sub-menu > li a{ display:block; white-space:nowrap; }
    358367
    359368
     
    582591  height: 0;
    583592}
    584 * html .clearfix            { zoom: 1; } /* IE6 */
    585 *:first-child+html .clearfix { zoom: 1; } /* IE7 */
     593
    586594
    587595
     
    698706
    699707/* Sticky Post */
    700 .sticky { border-right: 3px solid #eee; border-bottom: 3px solid #eee; }
     708.sticky {
     709        position:relative;
     710        border-right: 3px solid var(--borders-color); border-bottom: 3px solid var(--borders-color);
     711        border-top-right-radius: 5px;border-bottom-right-radius: 5px;border-bottom-left-radius: 5px;
     712}
     713.sticky:before {
     714  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="48" viewBox="0 -960 960 960" width="48"><path d="m613.691-447.692 75.384 68.384v43.845H502.269v218.46L480-94.927l-21.576-22.076v-218.46H270.925v-43.845l70.923-68.384v-326.615H294.54v-43.845h366.459v43.845h-47.308v326.615Z"/></svg>');
     715  transform: rotate(35deg);
     716  display: inline-block;
     717  text-align: right;
     718  position:absolute;
     719  top:-25px;
     720  right:0px;
     721  width: 48px;
     722  height: 48px;
     723}
    701724
    702725/* Blockquote */
     
    9911014@keyframes ripple {
    9921015  0% {
    993     box-shadow: 0 0 0 0 rgba($white, 0.1),
    994                 0 0 0 20px rgba($white, 0.1),
    995                 0 0 0 40px rgba($white, 0.1),
    996                 0 0 0 60px rgba($white, 0.1);
     1016    box-shadow: 0 0 0 0 rgba(255,255,255, 0.1),
     1017                0 0 0 20px rgba(255,255,255, 0.1),
     1018                0 0 0 40px rgba(255,255,255, 0.1),
     1019                0 0 0 60px rgba(255,255,255, 0.1);
    9971020  }
    9981021  100% {
    999     box-shadow: 0 0 0 20px rgba($white, 0.1),
    1000                 0 0 0 40px rgba($white, 0.1),
    1001                 0 0 0 60px rgba($white, 0.1),
    1002                 0 0 0 80px rgba($white, 0);
     1022    box-shadow: 0 0 0 20px rgba(255,255,255, 0.1),
     1023                0 0 0 40px rgba(255,255,255, 0.1),
     1024                0 0 0 60px rgba(255,255,255, 0.1),
     1025                0 0 0 80px rgba(255,255,255, 0);
    10031026  }
    10041027}
  • luxuryconceptfree/1.0.1/templates/home.php

    r201434 r201647  
    1313 get_header(); ?>
    1414       
    15     <main id="content" class="main-content" role="main">   
     15    <main id="content" class="main-content">   
    1616
    1717        <?php if (have_posts()) :?><?php while(have_posts()) : the_post(); ?>
  • luxuryconceptfree/1.0.1/templates/page-no-sidebar.php

    r201434 r201647  
    1313 get_header(); ?>
    1414     
    15     <main id="content" class="main-content" role="main">   
     15    <main id="content" class="main-content">   
    1616
    1717        <?php if (have_posts()) :?><?php while(have_posts()) : the_post(); ?>
  • luxuryconceptfree/1.0.1/templates/page-sidebar-right.php

    r201434 r201647  
    1313 get_header(); ?>
    1414
    15     <main id="content" class="main-content" role="main">   
     15    <main id="content" class="main-content">   
    1616
    1717        <?php if (have_posts()) :?><?php while(have_posts()) : the_post(); ?>
  • luxuryconceptfree/1.0.1/templates/single-no-sidebar.php

    r201434 r201647  
    1313get_header(); ?>
    1414     
    15     <main id="content" class="main-content" role="main">   
     15    <main id="content" class="main-content">   
    1616   
    1717        <?php if (have_posts()) :?><?php while(have_posts()) : the_post(); ?>
  • luxuryconceptfree/1.0.1/templates/single-sidebar-right.php

    r201434 r201647  
    1414get_header(); ?>
    1515     
    16     <main id="content" class="main-content" role="main">   
     16    <main id="content" class="main-content">   
    1717   
    1818        <?php if (have_posts()) :?><?php while(have_posts()) : the_post(); ?>
  • luxuryconceptfree/1.0.1/templates/transparent-header.php

    r201434 r201647  
    1313 get_header(); ?>
    1414       
    15     <main id="content" class="main-content" role="main">   
     15    <main id="content" class="main-content">   
    1616
    1717                <?php if (have_posts()) :?><?php while(have_posts()) : the_post(); ?>
Note: See TracChangeset for help on using the changeset viewer.