Changeset 201647
- Timestamp:
- 09/09/2023 02:52:37 PM (2 years ago)
- Location:
- luxuryconceptfree/1.0.1
- Files:
-
- 13 added
- 23 edited
- 1 copied
-
. (copied) (copied from luxuryconceptfree/1.0.0)
-
404.php (modified) (1 diff)
-
css/admin-style.css (added)
-
footer.php (modified) (1 diff)
-
functions.php (modified) (15 diffs)
-
header.php (modified) (6 diffs)
-
inc/block-patterns.php (modified) (1 diff)
-
inc/content/custom-breadcrumb.php (modified) (4 diffs)
-
inc/customizer/customizer.php (modified) (16 diffs)
-
inc/patterns/buttons.php (added)
-
inc/patterns/contacts.php (added)
-
inc/patterns/content-images.php (added)
-
inc/patterns/cta-cover.php (added)
-
inc/patterns/faq.php (added)
-
inc/patterns/features.php (added)
-
inc/patterns/hero-media-content.php (added)
-
inc/patterns/info.php (added)
-
inc/patterns/keypoint.php (added)
-
inc/patterns/media-content.php (added)
-
inc/patterns/team.php (added)
-
inc/patterns/testimonial.php (added)
-
index.php (modified) (2 diffs)
-
js/script.js (modified) (1 diff)
-
languages/it_IT.mo (modified) (previous)
-
languages/it_IT.po (modified) (10 diffs)
-
languages/luxuryconcept.pot (modified) (2 diffs)
-
page.php (modified) (1 diff)
-
readme.txt (modified) (5 diffs)
-
sidebar-footer.php (modified) (1 diff)
-
single.php (modified) (1 diff)
-
style.css (modified) (15 diffs)
-
templates/home.php (modified) (1 diff)
-
templates/page-no-sidebar.php (modified) (1 diff)
-
templates/page-sidebar-right.php (modified) (1 diff)
-
templates/single-no-sidebar.php (modified) (1 diff)
-
templates/single-sidebar-right.php (modified) (1 diff)
-
templates/transparent-header.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
luxuryconceptfree/1.0.1/404.php
r201434 r201647 10 10 <div class="primary-sidebar"><?php get_sidebar( 'primary' ); ?></div> 11 11 12 <main id="content" class="main-content" role="main">12 <main id="content" class="main-content"> 13 13 <article> 14 14 <h1 class=""><?php esc_html_e( 'Oops! That page can’t be found.', 'luxuryconceptfree' ); ?></h1> -
luxuryconceptfree/1.0.1/footer.php
r201434 r201647 33 33 34 34 <div class="footer__copyright"> 35 <p class="sma-text-center">©<?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('© ', '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> 36 41 <p class="alignright sma-text-center"> <a href="#top"><?php esc_html_e('Top', 'luxuryconceptfree'); ?><i class="icon-arrow-up"></i></a></p> 37 42 </div> -
luxuryconceptfree/1.0.1/functions.php
r201434 r201647 19 19 /* Theme setup 20 20 /* ------------------------------------ */ 21 if ( ! function_exists( 'luxuryconcept _free_setup' ) ) {22 23 function luxuryconcept _free_setup() {21 if ( ! function_exists( 'luxuryconceptfree_setup' ) ) { 22 23 function luxuryconceptfree_setup() { 24 24 25 25 $luxuryconceptfree_bg_color_defaults = array( 26 'default-color' => ' E4E4E4',26 'default-color' => '#FFFFFF', 27 27 ); 28 28 add_theme_support( 'custom-background', $luxuryconceptfree_bg_color_defaults ); … … 41 41 ); 42 42 add_theme_support( 'custom-logo', $luxuryconceptfree_logo_defaults ); 43 43 44 44 //custom header 45 $ defaults = array(45 $luxuryconceptfree_header_defaults = array( 46 46 'default-image' => '', 47 47 'width' => 1920, … … 49 49 'flex-height' => false, 50 50 'flex-width' => false, 51 'uploads' => false,52 51 'random-default' => false, 53 52 'header-text' => true, 54 'default-text-color' => ' ',53 'default-text-color' => '#000000', 55 54 'wp-head-callback' => '', 56 55 'admin-head-callback' => '', 57 56 'admin-preview-callback' => '', 58 57 ); 59 add_theme_support( 'custom-header', $ defaults );58 add_theme_support( 'custom-header', $luxuryconceptfree_header_defaults ); 60 59 61 60 // Enable automatic feed links … … 85 84 add_image_size( 'luxuryconceptfree_single', 675, 450, true ); //(cropped) 86 85 add_image_size( 'luxuryconceptfree_big', 1400, 928, true ); //(cropped) 87 86 87 // Post Formats 88 //add_theme_support( 'post-formats', array( 'aside', 'gallery' ) ); 89 88 90 89 91 // Custom menu areas 90 92 register_nav_menus( array( 91 93 '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' ) 94 95 ) ); 95 96 … … 145 146 146 147 } 147 add_action( 'after_setup_theme', 'luxuryconcept_free_setup' ); 148 add_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 */ 154 function 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 148 168 149 169 … … 155 175 156 176 // 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',) ); 158 178 159 179 if ( is_singular() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } … … 169 189 170 190 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'); 174 194 } 175 195 … … 177 197 add_action( 'wp_enqueue_scripts', 'luxuryconceptfree_styles' ); 178 198 179 /* Enqueue google fontbackend css199 /* Enqueue backend css 180 200 /* ------------------------------------ */ 181 201 if ( ! function_exists( 'luxuryconceptfree_admin_google_font' ) ) { … … 184 204 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"))); 185 205 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 } 189 209 add_action( 'admin_enqueue_scripts', 'luxuryconceptfree_admin_google_font'); 190 210 191 211 212 192 213 /* Register sidebars 193 214 /* ------------------------------------ */ … … 200 221 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>')); 201 222 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 206 224 } 207 225 208 226 } 209 227 add_action( 'widgets_init', 'luxuryconceptfree_sidebars' ); 228 229 210 230 211 231 … … 228 248 229 249 $luxuryconceptfree_bg_color = get_background_color(); 230 echo '<style type="text/css">';231 250 $luxuryconceptfree_header_text_color = get_header_textcolor(); 251 echo '<style>'; 232 252 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')).';'; 237 257 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')).';'; 241 261 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 .';'; 243 263 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')).';'; 245 265 echo '--site-font-size: '.esc_attr(get_theme_mod( 'luxuryconceptfree_site_font_size', '16px')).';'; 246 266 echo '--body-font-family: '.esc_attr(get_theme_mod( 'luxuryconceptfree_google_font', 'Quicksand')).';'; 247 267 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')).';'; 253 273 254 274 echo (esc_attr(get_theme_mod( 'luxuryconceptfree_logo_invert_color', '')) == 1) ? '--logo-invert-color: invert(1);' : '--logo-invert-color: none;'; … … 256 276 257 277 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;'; 259 279 260 280 … … 278 298 } 279 299 300 301 if ( get_header_image() ) : ?> 302 .header{background-image:url('<?php header_image(); ?>');} 303 <?php endif; 280 304 281 305 echo '</style>'; … … 324 348 if ( ! function_exists( 'luxuryconceptfree_custom_breadcrumb' ) ) { 325 349 326 function luxuryconceptfree_custom_breadcrumbs() { ?> 327 328 <nav class="breadcrumbs" itemprop="breadcrumb"> 329 330 <?php 350 function luxuryconceptfree_custom_breadcrumbs() { 331 351 get_template_part( 'inc/content/custom-breadcrumb' ); 332 luxuryconceptfree_breadcrumb('',''); 333 334 ?></nav><?php 352 luxuryconceptfree_breadcrumb('',''); 335 353 } 336 354 } … … 351 369 352 370 371 353 372 function buy_premium_theme_notice() { 354 373 ?> 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> 358 440 <?php 359 441 } -
luxuryconceptfree/1.0.1/header.php
r201434 r201647 14 14 <!-- Meta for IE support --> 15 15 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 16 16 17 17 18 <?php wp_head(); ?> … … 23 24 24 25 <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 } ?>36 26 37 </div>38 </section>39 <?php } ?>40 27 <header id="header" class="header"> 41 28 … … 59 46 60 47 <!-- <nav Header Menu --> 61 <nav class="header__menu" role="navigation">48 <nav class="header__menu"> 62 49 <?php // insert custom menu header 63 50 wp_nav_menu(array( … … 65 52 'container' => false, 66 53 'depth' => 5, 54 'fallback_cb' => 'header_default_menu', 67 55 'items_wrap' => '<ul class="menu">%3$s</ul>' 68 56 )); … … 78 66 'theme_location' => 'quickmenu', 79 67 'container' => false, 80 'depth' => 1, 81 //'items_wrap' => '%3$s'//'<ul>%3$s</ul>' 68 'depth' => 1 82 69 )); 83 70 ?> … … 86 73 <!--</nav>--> 87 74 75 <!-- Widget Cart menu --> 76 <?php do_action('luxuryconceptfree_show_header_cart'); ?> 77 <!-- / Widget Cart menu --> 88 78 89 79 </header> -
luxuryconceptfree/1.0.1/inc/block-patterns.php
r201434 r201647 58 58 59 59 $block_patterns = array( 60 'buttons', 60 61 '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', 61 73 62 74 -
luxuryconceptfree/1.0.1/inc/content/custom-breadcrumb.php
r201434 r201647 21 21 'id' => 'luxuryconceptfree_breadcrumb', 22 22 'classes' => 'luxuryconceptfree_breadcrumb_items', 23 'home_title' => esc_html__( 'Home', 'luxuryconceptfree' ) 23 'home_title' => esc_html__( 'Home', 'luxuryconceptfree' ), 24 'wrapper_classes' => 'breadcrumbs' 24 25 ); 25 26 26 27 $sep = '<li class="separator">'. esc_html( $defaults['separator'] ) .'</li>'; 27 28 28 if( ! is_woocommerce() ){ 29 echo '<nav class="' . $defaults['wrapper_classes'] . '" itemprop="breadcrumb">'; 30 31 if( ! is_woocommerce_activated() || ! is_woocommerce() ){ 29 32 // Start the breadcrumb with a link to your homepage 30 33 echo '<ul id="'. esc_attr( $defaults['id'] ) .'" class="'. esc_attr( $defaults['classes'] ) .'">'; … … 33 36 echo '<li class="breadcrumb_item"><a href="'. get_home_url() .'">'. esc_html( $defaults['home_title'] ) .'</a></li>' . $sep; 34 37 } 38 35 39 36 if( is_woocommerce() ){ 40 41 if( is_woocommerce_activated() && is_woocommerce() ){ 37 42 $args = array( 38 43 'delimiter' => $defaults['separator'], … … 40 45 'wrap_after' => '' 41 46 ); 42 woocommerce_breadcrumb( $args ); 43 //return; 44 } 45 47 woocommerce_breadcrumb( $args ); //INSERT WOOCOMMERCE BREADCRUMB 48 } 46 49 elseif ( is_single() ) { 47 50 … … 250 253 // End breadcrumb 251 254 echo '</ul>'; 255 echo '</nav>'; 252 256 } -
luxuryconceptfree/1.0.1/inc/customizer/customizer.php
r201434 r201647 9 9 /* ------------------------------------ */ 10 10 function 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 11 26 12 27 $wp_customize->add_panel( 'luxuryconceptfree_main', array( … … 70 85 /* TITLE 1 (h1) Font Size */ 71 86 $wp_customize->add_setting( 'luxuryconceptfree_title1_font_size' , array( 72 'default' => ' 3.4rem',87 'default' => '2.4rem', 73 88 'transport' => 'refresh', 74 89 'sanitize_callback' => 'luxuryconceptfree_sanitize_callback_text', … … 82 97 ))); 83 98 /* --- 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 --- */ 84 114 85 115 /* --- End Typography Section --- */ … … 90 120 /* Link color */ 91 121 $wp_customize->add_setting( 'luxuryconceptfree_link_color' , array( 92 'default' => '# 048ea0',122 'default' => '#45cfbe', 93 123 'transport' => 'refresh', 94 124 'sanitize_callback' => 'sanitize_hex_color', … … 104 134 /* Link color hover */ 105 135 $wp_customize->add_setting( 'luxuryconceptfree_link_color_hover' , array( 106 'default' => '# 105862',136 'default' => '#3eb2bc', 107 137 'transport' => 'refresh', 108 138 'sanitize_callback' => 'sanitize_hex_color', … … 115 145 ))); 116 146 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( 125 155 'label' => __( 'Header Color', 'luxuryconceptfree' ), 126 156 'section' => 'colors', 127 'settings' => 'luxuryconceptfree_header_ color',157 'settings' => 'luxuryconceptfree_header_bg_color', 128 158 ))); 129 159 … … 143 173 /* TOPBAR text Color */ 144 174 $wp_customize->add_setting( 'luxuryconceptfree_topbar_text_color' , array( 145 'default' => '# 000000',175 'default' => '#FFFFFF', 146 176 'transport' => 'refresh', 147 177 'sanitize_callback' => 'sanitize_hex_color', … … 156 186 /* Border Color */ 157 187 $wp_customize->add_setting( 'luxuryconceptfree_border_color' , array( 158 'default' => '# 222222',188 'default' => '#45cfbe', 159 189 'transport' => 'refresh', 160 190 'sanitize_callback' => 'sanitize_hex_color', … … 180 210 ))); 181 211 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 )));194 212 195 213 /* Header Text Color With Transparent Header */ … … 209 227 /* Posts Background Color */ 210 228 $wp_customize->add_setting( 'luxuryconceptfree_posts_background_color' , array( 211 'default' => '# eee',229 'default' => '#f4f4f4', 212 230 'transport' => 'refresh', 213 231 'sanitize_callback' => 'sanitize_hex_color', … … 245 263 'choices' => array( 246 264 'full' => __( 'Full width layout', 'luxuryconceptfree' ), 247 ' boxed' => __( 'Boxed layout', 'luxuryconceptfree' ),265 'disabled' => __( 'PRO FEATURE - Boxed layout', 'luxuryconceptfree' ), 248 266 ) 249 267 )) ); … … 251 269 /* Content Padding with Full Layout */ 252 270 $wp_customize->add_setting( 'luxuryconceptfree_content_padding' , array( 253 'default' => ' 25px',271 'default' => '5%', 254 272 'transport' => 'refresh', 255 273 'sanitize_callback' => 'luxuryconceptfree_sanitize_callback_text', … … 268 286 /* Sticky Header */ 269 287 $wp_customize->add_setting( 'luxuryconceptfree_sticky_header' , array( 270 'default' => '',288 'default' => 0, 271 289 'transport' => 'refresh', 272 290 'sanitize_callback' => 'luxuryconceptfree_sanitize_callback_checkbox', … … 280 298 281 299 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 ) ) ); 282 359 283 360 284 361 /* Show Header and Footer Borders */ 285 362 $wp_customize->add_setting( 'luxuryconceptfree_header_footer_borders' , array( 286 'default' => '',363 'default' => 1, 287 364 'transport' => 'refresh', 288 365 'sanitize_callback' => 'luxuryconceptfree_sanitize_callback_checkbox', … … 309 386 'type' => 'select', 310 387 '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' ), 312 390 'yoast' => __( 'Show YOAST SEO Breadcrumbs', 'luxuryconceptfree' ), 313 391 ) … … 320 398 321 399 322 400 401 402 323 403 324 404 /* Sanitize function Text */ -
luxuryconceptfree/1.0.1/index.php
r201434 r201647 19 19 <div class="primary-sidebar"><?php get_sidebar( 'primary' ); ?></div> 20 20 21 <main id="content" class="main-content" role="main">21 <main id="content" class="main-content"> 22 22 23 23 <?php /* CONDITIONAL TEMPLATES */ ?> … … 27 27 <h1 class="mb-3"><?php echo single_cat_title(); ?></h1> 28 28 <?php } elseif ( is_front_page() ){ ?> 29 <h1 class="mb-3"><?php e cho 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> 30 30 <?php } elseif ( is_home() ){ ?> 31 31 <h1 class="mb-3"><?php echo single_post_title(); ?></span></h1> -
luxuryconceptfree/1.0.1/js/script.js
r201434 r201647 17 17 } 18 18 19 /* OPEN MINI CART HEADER */ 20 let luxuryconcept_mini_cart_icon = document.querySelector('.li__icon_cart'); 21 let luxuryconcept_mini_cart_content = document.querySelector('.widget_shopping_cart'); 22 23 if(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 */ 30 window.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 }); 19 37 20 38 -
luxuryconceptfree/1.0.1/languages/it_IT.po
r201434 r201647 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: Luxury Concept\n"4 "POT-Creation-Date: 2023-09-0 5 14:32+0200\n"5 "PO-Revision-Date: 2023-09-0 6 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" 6 6 "Last-Translator: \n" 7 "Language-Team: \n"7 "Language-Team: ste.fattori@gmail.com\n" 8 8 "Language: it_IT\n" 9 9 "MIME-Version: 1.0\n" … … 14 14 "X-Poedit-Basepath: .\n" 15 15 "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" 17 17 "X-Poedit-SearchPath-0: ..\n" 18 18 … … 33 33 "Utilizzate i menu o la casella di ricerca per trovare ciò che cercate." 34 34 35 #: ../comments.php:27 ../index.php:5 735 #: ../comments.php:27 ../index.php:56 36 36 msgid "No Responses" 37 37 msgstr "Non ci sono commenti" 38 38 39 #: ../comments.php:27 ../index.php:5 739 #: ../comments.php:27 ../index.php:56 40 40 msgid "1 Response" 41 41 msgstr "1 Commento" 42 42 43 #: ../comments.php:27 ../index.php:5 743 #: ../comments.php:27 ../index.php:56 44 44 msgid "% Responses" 45 45 msgstr "% Commenti" … … 61 61 msgstr "I Commenti sono Chiusi." 62 62 63 #: ../footer.php:3564 msgid "© Copyright "65 msgstr ""66 67 63 #: ../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> " 66 msgid "- <a href=\"%s\" target=\"_blank\">Luxury Concept Theme</a> - " 67 msgstr "Sviluppato da <a href=\"%s\" target=\"_blank\">Stefano Fattori</a> " 68 69 #: ../footer.php:37 70 #, php-format 71 msgid "Developed By <a href=\"%s\" target=\"_blank\">Stefano Fattori</a> " 72 msgstr "Sviluppato da <a href=\"%s\" target=\"_blank\">Stefano Fattori</a> " 73 74 #: ../footer.php:39 75 msgid "© " 76 msgstr "" 77 78 #: ../footer.php:40 79 msgid "Top" 80 msgstr "" 81 82 #: ../functions.php:109 72 83 msgid "Header Menu" 73 84 msgstr "" 74 85 75 #: ../functions.php: 9386 #: ../functions.php:110 76 87 msgid "Quick Menu" 77 88 msgstr "" 78 89 79 #: ../functions.php: 9490 #: ../functions.php:111 80 91 msgid "Footer Menu" 81 92 msgstr "" 82 93 83 #: ../functions.php:1 0394 #: ../functions.php:120 84 95 msgid "Light gray" 85 96 msgstr "" 86 97 87 #: ../functions.php:1 0898 #: ../functions.php:125 88 99 msgid "Medium gray" 89 100 msgstr "" 90 101 91 #: ../functions.php:1 13102 #: ../functions.php:130 92 103 msgid "Dark gray" 93 104 msgstr "" 94 105 95 #: ../functions.php:1 18 ../inc/customizer/customizer.php:141106 #: ../functions.php:135 ../inc/customizer/customizer.php:156 96 107 msgid "Link Color" 97 108 msgstr "" 98 109 99 #: ../functions.php:1 23 ../inc/customizer/customizer.php:155110 #: ../functions.php:140 ../inc/customizer/customizer.php:170 100 111 msgid "Link Color Hover" 101 112 msgstr "" 102 113 103 #: ../functions.php:1 34114 #: ../functions.php:151 104 115 msgid "Blue Quote" 105 116 msgstr "" 106 117 107 #: ../functions.php: 199118 #: ../functions.php:216 108 119 msgid "Primary" 109 120 msgstr "" 110 121 111 #: ../functions.php: 199122 #: ../functions.php:216 112 123 msgid "Left or Right Sidebar near content." 113 124 msgstr "" 114 125 115 #: ../functions.php:2 01126 #: ../functions.php:218 ../inc/customizer/customizer.php:483 116 127 msgid "Footer" 117 128 msgstr "" 118 129 119 #: ../functions.php:2 01130 #: ../functions.php:218 120 131 msgid "Footer full width sidebar." 121 132 msgstr "" 122 133 123 #: ../functions.php:2 05134 #: ../functions.php:222 124 135 msgid "Woocommerce Sidebar" 125 136 msgstr "" 126 137 127 #: ../functions.php:2 05138 #: ../functions.php:222 128 139 msgid "Woocommerce Sidebar on shop page." 129 140 msgstr "" 130 141 131 #: ../header.php: 40142 #: ../header.php:54 132 143 msgid "Menu" 133 144 msgstr "" … … 150 161 msgstr "" 151 162 152 #: ../inc/content/custom-breadcrumb.php:2 37163 #: ../inc/content/custom-breadcrumb.php:240 153 164 msgid "Search result for..." 154 165 msgstr "Risultati di ricerca per..." 155 166 156 #: ../inc/content/custom-breadcrumb.php:24 2167 #: ../inc/content/custom-breadcrumb.php:245 157 168 msgid "Error 404" 158 169 msgstr "Errore 404" … … 170 181 msgstr "Navigazione Pagine" 171 182 172 #: ../inc/customizer/customizer.php:13 183 #: ../inc/customizer/customizer.php:20 184 msgid "Invert color logo" 185 msgstr "" 186 187 #: ../inc/customizer/customizer.php:21 188 msgid "<br>You can invert the color logo (ex. from black to white)" 189 msgstr "" 190 191 #: ../inc/customizer/customizer.php:28 173 192 msgid "Luxury Concept Settings" 174 193 msgstr "Impostazioni di Luxury Concept" 175 194 176 #: ../inc/customizer/customizer.php: 14195 #: ../inc/customizer/customizer.php:29 177 196 msgid "All Theme Settings" 178 197 msgstr "Impostazioni del tema" 179 198 180 #: ../inc/customizer/customizer.php: 21199 #: ../inc/customizer/customizer.php:36 181 200 msgid "Typography" 182 201 msgstr "Caratteri" 183 202 184 #: ../inc/customizer/customizer.php: 35203 #: ../inc/customizer/customizer.php:50 185 204 msgid "Google Font (ex. Roboto )" 186 205 msgstr "" 187 206 188 #: ../inc/customizer/customizer.php: 49207 #: ../inc/customizer/customizer.php:64 189 208 msgid "Font Weight (ex. 300,400,700 )" 190 209 msgstr "" 191 210 192 #: ../inc/customizer/customizer.php: 63211 #: ../inc/customizer/customizer.php:78 193 212 msgid "Global Font Size (ex. 16px, 2rem, 80%)" 194 213 msgstr "" 195 214 196 #: ../inc/customizer/customizer.php: 78215 #: ../inc/customizer/customizer.php:93 197 216 msgid "Title 1 Font Size - h1 (ex. 16px, 2rem, 80%)" 198 217 msgstr "" 199 218 200 #: ../inc/customizer/customizer.php: 93219 #: ../inc/customizer/customizer.php:108 201 220 msgid "Title 2 Font Size - h2 (ex. 16px, 2rem, 80%)" 202 221 msgstr "" 203 222 204 #: ../inc/customizer/customizer.php:1 08223 #: ../inc/customizer/customizer.php:123 205 224 msgid "Title 3 Font Size - h3 (ex. 16px, 2rem, 80%)" 206 225 msgstr "" 207 226 208 #: ../inc/customizer/customizer.php:1 23227 #: ../inc/customizer/customizer.php:138 209 228 msgid "Title 4 Font Size - h4 (ex. 16px, 2rem, 80%)" 210 229 msgstr "" 211 230 212 #: ../inc/customizer/customizer.php:1 68231 #: ../inc/customizer/customizer.php:183 213 232 msgid "Header Color" 214 233 msgstr "" 215 234 216 #: ../inc/customizer/customizer.php:181 235 #: ../inc/customizer/customizer.php:196 236 msgid "Top Bar Background Color" 237 msgstr "" 238 239 #: ../inc/customizer/customizer.php:209 240 msgid "Top Bar Text Color" 241 msgstr "" 242 243 #: ../inc/customizer/customizer.php:222 217 244 msgid "Border Color" 218 245 msgstr "" 219 246 220 #: ../inc/customizer/customizer.php: 194247 #: ../inc/customizer/customizer.php:235 221 248 msgid "Global Site Text Color" 222 249 msgstr "" 223 250 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 252 msgid "Header Transparent Text Color" 253 msgstr "" 254 255 #: ../inc/customizer/customizer.php:250 256 msgid "" 257 "Header Text Color when you set Home Page template with transparent header" 258 msgstr "" 259 260 #: ../inc/customizer/customizer.php:263 229 261 msgid "Posts Background Color" 230 262 msgstr "" 231 263 232 #: ../inc/customizer/customizer.php:2 30264 #: ../inc/customizer/customizer.php:274 233 265 msgid "Layouts & Header" 234 266 msgstr "" 235 267 236 #: ../inc/customizer/customizer.php:2 43268 #: ../inc/customizer/customizer.php:287 237 269 msgid "Full width or Boxed layout" 238 270 msgstr "Layout a Larghezza Massima o Layout Fisso" 239 271 240 #: ../inc/customizer/customizer.php:2 48272 #: ../inc/customizer/customizer.php:292 241 273 msgid "Full width layout" 242 274 msgstr "Layout a Larghezza Massima" 243 275 244 #: ../inc/customizer/customizer.php:2 49276 #: ../inc/customizer/customizer.php:293 245 277 msgid "Boxed layout" 246 278 msgstr "Layout Fisso" 247 279 248 #: ../inc/customizer/customizer.php: 261280 #: ../inc/customizer/customizer.php:305 249 281 #, no-php-format 250 282 msgid "" … … 255 287 "Funziona solo con il Layout a Larghezza Massima selezionato " 256 288 257 #: ../inc/customizer/customizer.php: 278289 #: ../inc/customizer/customizer.php:322 258 290 msgid "Enable Sticky Header" 259 291 msgstr "Abilita lo Sticky Header" 260 292 261 #: ../inc/customizer/customizer.php: 293293 #: ../inc/customizer/customizer.php:337 262 294 msgid "Logo and Menu Position" 263 295 msgstr "Posizione Logo e Menu" 264 296 265 #: ../inc/customizer/customizer.php: 298297 #: ../inc/customizer/customizer.php:342 266 298 msgid "Left Logo / Center Menu" 267 299 msgstr "Logo Centrale / Menu Sinistra" 268 300 269 #: ../inc/customizer/customizer.php: 299301 #: ../inc/customizer/customizer.php:343 270 302 msgid "Left Menu / Center Logo" 271 303 msgstr "Menu Sinistra / Logo Centrale" 272 304 273 #: ../inc/customizer/customizer.php:3 12305 #: ../inc/customizer/customizer.php:356 274 306 msgid "Article list image" 275 307 msgstr "Immagine in evidenza degli articoli del blog" 276 308 277 #: ../inc/customizer/customizer.php:3 17309 #: ../inc/customizer/customizer.php:361 278 310 msgid "Don't Show Image" 279 311 msgstr "Non visualizzare l'immagine" 280 312 281 #: ../inc/customizer/customizer.php:3 18313 #: ../inc/customizer/customizer.php:362 282 314 msgid "Before Title" 283 315 msgstr "Prima del titolo" 284 316 285 #: ../inc/customizer/customizer.php:3 19317 #: ../inc/customizer/customizer.php:363 286 318 msgid "After Title" 287 319 msgstr "Dopo il titolo" 288 320 289 #: ../inc/customizer/customizer.php:3 36321 #: ../inc/customizer/customizer.php:380 290 322 msgid "Blog Number Columns" 291 323 msgstr "Numero di colonne degli articoli blog" 292 324 293 #: ../inc/customizer/customizer.php:3 53325 #: ../inc/customizer/customizer.php:397 294 326 msgid "Show Header and Footer Borders" 295 327 msgstr "Visualizza i bordi dell'header e del footer" 296 328 297 #: ../inc/customizer/customizer.php: 367329 #: ../inc/customizer/customizer.php:411 298 330 msgid "Breadcrumbs" 299 331 msgstr "" 300 332 301 #: ../inc/customizer/customizer.php: 372333 #: ../inc/customizer/customizer.php:416 302 334 msgid "Don't show Breadcrumbs" 303 335 msgstr "Non visualizzare il Breadcrumbs" 304 336 305 #: ../inc/customizer/customizer.php: 373337 #: ../inc/customizer/customizer.php:417 306 338 msgid "Show Custom theme Breadcrumbs" 307 339 msgstr "Visualizza Breadcrumbs di sistema" 308 340 309 #: ../inc/customizer/customizer.php: 374341 #: ../inc/customizer/customizer.php:418 310 342 msgid "Show YOAST SEO Breadcrumbs" 311 343 msgstr "Visualizza YOAST SEO Breadcrumbs" 312 344 313 #: ../inc/customizer/customizer.php: 388345 #: ../inc/customizer/customizer.php:432 314 346 msgid "WhatsApp Number (ex. 3483333333)" 315 347 msgstr "Numero WhatsApp (ex. 3483333333)" 348 349 #: ../inc/customizer/customizer.php:443 350 msgid "TOP BAR" 351 msgstr "" 352 353 #: ../inc/customizer/customizer.php:456 354 msgid "Welcome message" 355 msgstr "" 356 357 #: ../inc/customizer/customizer.php:457 358 msgid "Insert a plain text" 359 msgstr "" 360 361 #: ../inc/customizer/customizer.php:471 362 msgid "Welcome link" 363 msgstr "" 364 365 #: ../inc/customizer/customizer.php:472 366 msgid "Insert an URL (ex. https://www.myurl.com)" 367 msgstr "" 368 369 #: ../inc/customizer/customizer.php:496 370 msgid "Copyright Text" 371 msgstr "" 316 372 317 373 #: ../inc/patterns/buttons.php:10 … … 437 493 msgstr "Risultati per:" 438 494 495 #: ../index.php:29 496 msgid "Latest posts " 497 msgstr "Ultimi articoli " 498 439 499 #: ../index.php:35 440 500 msgid "Author: " 441 501 msgstr "Autore: " 442 502 443 #: ../index.php:5 5503 #: ../index.php:54 444 504 msgid "By" 445 505 msgstr "Da" 446 447 #: ../index.php:57448 msgid "Comments On "449 msgstr "Commenti Su "450 506 451 507 #: ../index.php:82 ../page.php:38 ../single.php:94 ../templates/home.php:25 … … 473 529 msgstr "Cerca " 474 530 475 #: ../sidebar .php:21531 #: ../sidebar-footer.php:21 ../sidebar.php:21 476 532 msgid "Archives" 477 533 msgstr "Archivi" 478 534 479 #: ../sidebar .php:28535 #: ../sidebar-footer.php:28 ../sidebar.php:28 480 536 msgid "Meta" 481 537 msgstr "" … … 485 541 msgid "Related Posts" 486 542 msgstr "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 " 487 553 488 554 #~ msgid "Next >>" -
luxuryconceptfree/1.0.1/languages/luxuryconcept.pot
r201434 r201647 1 #, fuzzy 1 2 msgid "" 2 3 msgstr "" 3 "Project-Id-Version: Nextawards\n"4 "POT-Creation-Date: 20 16-04-10 11:38+0100\n"4 "Project-Id-Version: LuxuryConceptFree\n" 5 "POT-Creation-Date: 2023-09-09 10:26+0200\n" 5 6 "PO-Revision-Date: 2016-04-10 11:47+0100\n" 6 7 "Last-Translator: Andrea Marchetti <afmarchetti@gmail.com>\n" 7 "Language-Team: \n"8 "Language-Team: ste.fattori@gmail.com\n" 8 9 "MIME-Version: 1.0\n" 9 10 "Content-Type: text/plain; charset=UTF-8\n" 10 11 "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" 12 14 "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" 15 17 "X-Poedit-SearchPath-0: ..\n" 16 18 17 #: ../404.php:1 619 #: ../404.php:14 18 20 msgid "Oops! That page can’t be found." 19 21 msgstr "" 20 22 23 #: ../404.php:15 24 msgid "404 Error" 25 msgstr "" 26 21 27 #: ../404.php:17 22 msgid "404 Error"23 msgstr ""24 25 #: ../404.php:1926 28 msgid "" 27 29 "The page you are trying to reach does not exist, or has been moved. Please " … … 29 31 msgstr "" 30 32 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 40 34 msgid "No Responses" 41 35 msgstr "" 42 36 43 #: ../comments.php: 1337 #: ../comments.php:27 ../index.php:56 44 38 msgid "1 Response" 45 39 msgstr "" 46 40 47 #: ../comments.php: 1341 #: ../comments.php:27 ../index.php:56 48 42 msgid "% Responses" 49 43 msgstr "" 50 44 51 #: ../comments.php:31 ../comments.php:39 45 #: ../comments.php:47 46 msgid "Comment navigation" 47 msgstr "" 48 49 #: ../comments.php:48 50 msgid "← Older Comments" 51 msgstr "" 52 53 #: ../comments.php:49 54 msgid "Newer Comments →" 55 msgstr "" 56 57 #: ../comments.php:54 52 58 msgid "Comments are closed." 53 59 msgstr "" 54 60 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 "© Copyright " 65 msgstr "" 66 67 #: ../index.php:22 61 #: ../footer.php:36 62 #, php-format 63 msgid "- <a href=\"%s\" target=\"_blank\">Luxury Concept Theme</a> - " 64 msgstr "" 65 66 #: ../footer.php:37 67 #, php-format 68 msgid "Developed By <a href=\"%s\" target=\"_blank\">Stefano Fattori</a> " 69 msgstr "" 70 71 #: ../footer.php:39 72 msgid "© " 73 msgstr "" 74 75 #: ../footer.php:40 76 msgid "Top" 77 msgstr "" 78 79 #: ../functions.php:109 80 msgid "Header Menu" 81 msgstr "" 82 83 #: ../functions.php:110 84 msgid "Quick Menu" 85 msgstr "" 86 87 #: ../functions.php:111 88 msgid "Footer Menu" 89 msgstr "" 90 91 #: ../functions.php:120 92 msgid "Light gray" 93 msgstr "" 94 95 #: ../functions.php:125 96 msgid "Medium gray" 97 msgstr "" 98 99 #: ../functions.php:130 100 msgid "Dark gray" 101 msgstr "" 102 103 #: ../functions.php:135 ../inc/customizer/customizer.php:156 104 msgid "Link Color" 105 msgstr "" 106 107 #: ../functions.php:140 ../inc/customizer/customizer.php:170 108 msgid "Link Color Hover" 109 msgstr "" 110 111 #: ../functions.php:151 112 msgid "Blue Quote" 113 msgstr "" 114 115 #: ../functions.php:216 116 msgid "Primary" 117 msgstr "" 118 119 #: ../functions.php:216 120 msgid "Left or Right Sidebar near content." 121 msgstr "" 122 123 #: ../functions.php:218 ../inc/customizer/customizer.php:483 124 msgid "Footer" 125 msgstr "" 126 127 #: ../functions.php:218 128 msgid "Footer full width sidebar." 129 msgstr "" 130 131 #: ../functions.php:222 132 msgid "Woocommerce Sidebar" 133 msgstr "" 134 135 #: ../functions.php:222 136 msgid "Woocommerce Sidebar on shop page." 137 msgstr "" 138 139 #: ../header.php:54 140 msgid "Menu" 141 msgstr "" 142 143 #: ../inc/block-patterns.php:29 144 msgid "Luxury Concept" 145 msgstr "" 146 147 #: ../inc/comments/custom-comments.php:21 148 msgid "Your comment is awaiting moderation." 149 msgstr "" 150 151 #: ../inc/comments/custom-comments.php:34 152 #, php-format 153 msgid "%1$s - %2$s" 154 msgstr "" 155 156 #: ../inc/content/custom-breadcrumb.php:23 157 msgid "Home" 158 msgstr "" 159 160 #: ../inc/content/custom-breadcrumb.php:240 161 msgid "Search result for..." 162 msgstr "" 163 164 #: ../inc/content/custom-breadcrumb.php:245 165 msgid "Error 404" 166 msgstr "" 167 168 #: ../inc/content/pagination.php:10 169 msgid "❮ Previous" 170 msgstr "" 171 172 #: ../inc/content/pagination.php:11 173 msgid "Next ❯" 174 msgstr "" 175 176 #: ../inc/content/pagination.php:12 177 msgid "Posts Navigation" 178 msgstr "" 179 180 #: ../inc/customizer/customizer.php:20 181 msgid "Invert color logo" 182 msgstr "" 183 184 #: ../inc/customizer/customizer.php:21 185 msgid "<br>You can invert the color logo (ex. from black to white)" 186 msgstr "" 187 188 #: ../inc/customizer/customizer.php:28 189 msgid "Luxury Concept Settings" 190 msgstr "" 191 192 #: ../inc/customizer/customizer.php:29 193 msgid "All Theme Settings" 194 msgstr "" 195 196 #: ../inc/customizer/customizer.php:36 197 msgid "Typography" 198 msgstr "" 199 200 #: ../inc/customizer/customizer.php:50 201 msgid "Google Font (ex. Roboto )" 202 msgstr "" 203 204 #: ../inc/customizer/customizer.php:64 205 msgid "Font Weight (ex. 300,400,700 )" 206 msgstr "" 207 208 #: ../inc/customizer/customizer.php:78 209 msgid "Global Font Size (ex. 16px, 2rem, 80%)" 210 msgstr "" 211 212 #: ../inc/customizer/customizer.php:93 213 msgid "Title 1 Font Size - h1 (ex. 16px, 2rem, 80%)" 214 msgstr "" 215 216 #: ../inc/customizer/customizer.php:108 217 msgid "Title 2 Font Size - h2 (ex. 16px, 2rem, 80%)" 218 msgstr "" 219 220 #: ../inc/customizer/customizer.php:123 221 msgid "Title 3 Font Size - h3 (ex. 16px, 2rem, 80%)" 222 msgstr "" 223 224 #: ../inc/customizer/customizer.php:138 225 msgid "Title 4 Font Size - h4 (ex. 16px, 2rem, 80%)" 226 msgstr "" 227 228 #: ../inc/customizer/customizer.php:183 229 msgid "Header Color" 230 msgstr "" 231 232 #: ../inc/customizer/customizer.php:196 233 msgid "Top Bar Background Color" 234 msgstr "" 235 236 #: ../inc/customizer/customizer.php:209 237 msgid "Top Bar Text Color" 238 msgstr "" 239 240 #: ../inc/customizer/customizer.php:222 241 msgid "Border Color" 242 msgstr "" 243 244 #: ../inc/customizer/customizer.php:235 245 msgid "Global Site Text Color" 246 msgstr "" 247 248 #: ../inc/customizer/customizer.php:249 249 msgid "Header Transparent Text Color" 250 msgstr "" 251 252 #: ../inc/customizer/customizer.php:250 253 msgid "" 254 "Header Text Color when you set Home Page template with transparent header" 255 msgstr "" 256 257 #: ../inc/customizer/customizer.php:263 258 msgid "Posts Background Color" 259 msgstr "" 260 261 #: ../inc/customizer/customizer.php:274 262 msgid "Layouts & Header" 263 msgstr "" 264 265 #: ../inc/customizer/customizer.php:287 266 msgid "Full width or Boxed layout" 267 msgstr "" 268 269 #: ../inc/customizer/customizer.php:292 270 msgid "Full width layout" 271 msgstr "" 272 273 #: ../inc/customizer/customizer.php:293 274 msgid "Boxed layout" 275 msgstr "" 276 277 #: ../inc/customizer/customizer.php:305 278 #, no-php-format 279 msgid "" 280 "Content Padding (Left / Right) (ex. 3% or 20px) - Only works With Full " 281 "Width Layout selected " 282 msgstr "" 283 284 #: ../inc/customizer/customizer.php:322 285 msgid "Enable Sticky Header" 286 msgstr "" 287 288 #: ../inc/customizer/customizer.php:337 289 msgid "Logo and Menu Position" 290 msgstr "" 291 292 #: ../inc/customizer/customizer.php:342 293 msgid "Left Logo / Center Menu" 294 msgstr "" 295 296 #: ../inc/customizer/customizer.php:343 297 msgid "Left Menu / Center Logo" 298 msgstr "" 299 300 #: ../inc/customizer/customizer.php:356 301 msgid "Article list image" 302 msgstr "" 303 304 #: ../inc/customizer/customizer.php:361 305 msgid "Don't Show Image" 306 msgstr "" 307 308 #: ../inc/customizer/customizer.php:362 309 msgid "Before Title" 310 msgstr "" 311 312 #: ../inc/customizer/customizer.php:363 313 msgid "After Title" 314 msgstr "" 315 316 #: ../inc/customizer/customizer.php:380 317 msgid "Blog Number Columns" 318 msgstr "" 319 320 #: ../inc/customizer/customizer.php:397 321 msgid "Show Header and Footer Borders" 322 msgstr "" 323 324 #: ../inc/customizer/customizer.php:411 325 msgid "Breadcrumbs" 326 msgstr "" 327 328 #: ../inc/customizer/customizer.php:416 329 msgid "Don't show Breadcrumbs" 330 msgstr "" 331 332 #: ../inc/customizer/customizer.php:417 333 msgid "Show Custom theme Breadcrumbs" 334 msgstr "" 335 336 #: ../inc/customizer/customizer.php:418 337 msgid "Show YOAST SEO Breadcrumbs" 338 msgstr "" 339 340 #: ../inc/customizer/customizer.php:432 341 msgid "WhatsApp Number (ex. 3483333333)" 342 msgstr "" 343 344 #: ../inc/customizer/customizer.php:443 345 msgid "TOP BAR" 346 msgstr "" 347 348 #: ../inc/customizer/customizer.php:456 349 msgid "Welcome message" 350 msgstr "" 351 352 #: ../inc/customizer/customizer.php:457 353 msgid "Insert a plain text" 354 msgstr "" 355 356 #: ../inc/customizer/customizer.php:471 357 msgid "Welcome link" 358 msgstr "" 359 360 #: ../inc/customizer/customizer.php:472 361 msgid "Insert an URL (ex. https://www.myurl.com)" 362 msgstr "" 363 364 #: ../inc/customizer/customizer.php:496 365 msgid "Copyright Text" 366 msgstr "" 367 368 #: ../inc/patterns/buttons.php:10 369 msgid "Luxuryconcept - Buttons" 370 msgstr "" 371 372 #: ../inc/patterns/buttons.php:11 ../inc/patterns/content-images.php:11 373 #: ../inc/patterns/media-content.php:11 374 msgctxt "Block pattern description" 375 msgid "" 376 "Two horizontal buttons, the left button is filled in, and the right button " 377 "is outlined." 378 msgstr "" 379 380 #: ../inc/patterns/buttons.php:14 381 msgid "Button One" 382 msgstr "" 383 384 #: ../inc/patterns/buttons.php:14 385 msgid "Button Two" 386 msgstr "" 387 388 #: ../inc/patterns/contacts.php:10 389 msgid "Luxuryconcept - Contacts" 390 msgstr "" 391 392 #: ../inc/patterns/contacts.php:11 393 msgctxt "Block pattern description" 394 msgid "A contacts section with icons." 395 msgstr "" 396 397 #: ../inc/patterns/content-images.php:10 398 msgid "Luxuryconcept - Content Images" 399 msgstr "" 400 401 #: ../inc/patterns/cta-cover.php:10 402 msgid "Luxuryconcept - CTA Cover" 403 msgstr "" 404 405 #: ../inc/patterns/cta-cover.php:11 406 msgctxt "Block pattern description" 407 msgid "A cta section with, title, descritpion and cta." 408 msgstr "" 409 410 #: ../inc/patterns/faq.php:10 411 msgid "Luxuryconcept - FAQ" 412 msgstr "" 413 414 #: ../inc/patterns/faq.php:11 415 msgctxt "Block pattern description" 416 msgid "A faq section with accordion animation." 417 msgstr "" 418 419 #: ../inc/patterns/features.php:10 420 msgid "Luxuryconcept - Features" 421 msgstr "" 422 423 #: ../inc/patterns/features.php:11 424 msgctxt "Block pattern description" 425 msgid "A hero section list of features." 426 msgstr "" 427 428 #: ../inc/patterns/hero-cover.php:11 429 msgid "Luxuryconcept - Hero Cover" 430 msgstr "" 431 432 #: ../inc/patterns/hero-cover.php:12 433 msgctxt "Block pattern description" 434 msgid "A hero section with two buttons, title and description." 435 msgstr "" 436 437 #: ../inc/patterns/hero-media-content.php:10 438 msgid "Luxuryconcept - Hero Media Content" 439 msgstr "" 440 441 #: ../inc/patterns/hero-media-content.php:11 442 msgctxt "Block pattern description" 443 msgid "A hero section with, title, descritpion and cta." 444 msgstr "" 445 446 #: ../inc/patterns/info.php:10 447 msgid "Luxuryconcept - Info" 448 msgstr "" 449 450 #: ../inc/patterns/info.php:11 451 msgctxt "Block pattern description" 452 msgid "A info section with gallery, title and description." 453 msgstr "" 454 455 #: ../inc/patterns/keypoint.php:10 456 msgid "Luxuryconcept - Keypoint" 457 msgstr "" 458 459 #: ../inc/patterns/keypoint.php:11 460 msgctxt "Block pattern description" 461 msgid "A 3 Keypoints section with icons, title and description." 462 msgstr "" 463 464 #: ../inc/patterns/media-content.php:10 465 msgid "Luxuryconcept - Media Content" 466 msgstr "" 467 468 #: ../inc/patterns/team.php:10 469 msgid "Luxuryconcept - Team" 470 msgstr "" 471 472 #: ../inc/patterns/team.php:11 473 msgctxt "Block pattern description" 474 msgid "A team section with, title, descritpion and social icons." 475 msgstr "" 476 477 #: ../inc/patterns/testimonial.php:10 478 msgid "Luxuryconcept - Testimonial" 479 msgstr "" 480 481 #: ../inc/patterns/testimonial.php:11 482 msgctxt "Block pattern description" 483 msgid "A testimonials section with, name, photo and text." 484 msgstr "" 485 486 #: ../index.php:25 68 487 msgid "Result for:" 69 488 msgstr "" 70 489 71 #: ../index.php:67 ../page-templates/home-page.php:57 ../page.php:37 72 #: ../single.php:42 490 #: ../index.php:29 491 msgid "Latest posts " 492 msgstr "" 493 494 #: ../index.php:35 495 msgid "Author: " 496 msgstr "" 497 498 #: ../index.php:54 499 msgid "By" 500 msgstr "" 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 73 507 msgid "Sorry, no posts matched your criteria." 74 508 msgstr "" 75 509 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 515 msgid "Read More..." 516 msgstr "" 517 518 #: ../searchform.php:11 77 519 msgid "Try to make a search..." 78 520 msgstr "" 79 521 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 523 msgid "Search " 524 msgstr "" 525 526 #: ../sidebar-footer.php:21 ../sidebar.php:21 527 msgid "Archives" 528 msgstr "" 529 530 #: ../sidebar-footer.php:28 ../sidebar.php:28 531 msgid "Meta" 532 msgstr "" 533 534 #: ../single.php:56 ../templates/single-no-sidebar.php:57 535 #: ../templates/single-sidebar-right.php:58 536 msgid "Related Posts" 537 msgstr "" -
luxuryconceptfree/1.0.1/page.php
r201434 r201647 14 14 <div class="primary-sidebar"><?php get_sidebar( 'primary' ); ?></div> 15 15 16 <main id="content" class="main-content" role="main">16 <main id="content" class="main-content"> 17 17 18 18 -
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 === 2 Theme Name: LuxuryConceptFree 3 Theme URI: https://www.luxuryconcept.website 4 Author: Stefano Fattori 5 Author URI: https://www.stefanofattori.it 6 Description: A Responsive WordPress Theme with Header Styles like trasparent Header Template, 3 Menus, Amazing Block Patterns, Cool animations, light and fast. 7 Requires at least: 6.1 8 Tested up to: 6.3 9 Requires PHP: 5.6 10 Version: 1.0.0 11 License: GNU General Public License v3.0 12 License URI: http://www.gnu.org/licenses/gpl-3.0.html 13 Text Domain: luxuryconcept 14 Tags: 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 15 Domain Path: /languages 9 16 10 17 == Description == 11 18 12 19 Luxury 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. 20 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, except Google Fonts. 15 21 16 22 … … 29 35 - Add .cta class to a menu element to show a button. 30 36 - 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 33 37 - The Date/Time Format can be set in Wordpress > Settings > General. 34 38 - The number of articles per page can be set in Wordpress > Settings > Reading (Blog pages display at maximum). … … 44 48 45 49 50 === Version Comparison === 51 Free: Premium: 52 Base Engine Base Engine 53 Posts and Pages template Posts and Pages template 54 2 menus 3 menus 55 Only Full Width Layout Full width and Boxed Layout 56 WP Customizer Setting WP Customizer Setting (more customisations) 57 Only 2 typography font size More typography font size (global,h1,h2,h3,h4) 58 Custom logo Custom logo 59 Only Left logo and menu centered Logo Left / Menu center or Menu left / Logo center 60 Only support YOAST Beadcrumb Yoast, custom and woocommerce breadcrumbs 61 Featuerd 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 69 Fast and Light More optimized Super Fast and light 70 71 72 46 73 == Changelog == 74 75 = 1.0.1 = 76 77 * Fix Bugs 78 * Html and CSS W3C Validated 47 79 48 80 = 1.0.0 = 49 81 50 82 * Added a topbar with welcome message 83 * Added Woocommerce Ajax Mini Cart Header 84 * Added Custom Breadcrumb with Woocommerce support 51 85 * Custom control (range number) WP customizer 52 86 * Added support to Yoast SEO Breadcrumbs … … 56 90 * Add WP Customizer Setting 57 91 * Added Menus 92 * Added WooCommerce support (default css style) 58 93 * Show Post Author on comments 59 94 * Show user role on comments … … 65 100 == Copyright == 66 101 67 Luxury Concept FreeWordPress Theme, © 2023 StefanoFattori.it102 Luxury Concept WordPress Theme, © 2023 StefanoFattori.it 68 103 Luxury Concept is distributed under the terms of the GNU GPL. 69 104 70 105 This program is free software: you can redistribute it and/or modify 71 106 it under the terms of the GNU General Public License as published by 72 the Free Software Foundation, either version 2of the License, or107 the Free Software Foundation, either version 3 of the License, or 73 108 (at your option) any later version. 74 109 -
luxuryconceptfree/1.0.1/sidebar-footer.php
r201434 r201647 10 10 11 11 <?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 --> 13 35 <?php endif; ?> 14 36 -
luxuryconceptfree/1.0.1/single.php
r201434 r201647 12 12 <div class="primary-sidebar"><?php get_sidebar( 'primary' ); ?></div> 13 13 14 <main id="content" class="main-content" role="main">14 <main id="content" class="main-content"> 15 15 16 16 <?php if (have_posts()) :?><?php while(have_posts()) : the_post(); ?> -
luxuryconceptfree/1.0.1/style.css
r201434 r201647 1 1 /* 2 2 Theme 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 3 Theme URI: https://www.luxuryconcept.website 5 4 Author: Stefano Fattori 6 Text Domain: luxuryconceptfree 5 Author URI: https://www.stefanofattori.it 6 Description: 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 7 7 Requires at least: 6.1 8 8 Tested up to: 6.3 9 9 Requires PHP: 5.6 10 Domain Path: /languages 11 Tags: grid-layout, blog, custom-menu, featured-images, custom-logo, left-sidebar, right-sidebar 10 Version: 1.0.1 12 11 License: GNU General Public License v3.0 13 12 License URI: http://www.gnu.org/licenses/gpl-3.0.html 14 Theme URI: https://www.luxuryconcept.website 15 Author URI: https://www.stefanofattori.it 13 Text Domain: luxuryconcept 14 Tags: 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 15 Domain Path: /languages 16 16 17 17 … … 46 46 47 47 /* 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; 58 59 --header-transparent-text-color: #FFFFFF; 59 --posts-color: # eee;60 --posts-color: #f4f4f4; 60 61 61 62 --site-font-size: 16px; 62 63 --body-font-family: 'Quicksand'; 63 64 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; 71 72 --wrapper-width: 100%; 72 --content-padding: 20px 25px;73 --content-padding: 20px 5%; 73 74 74 75 … … 78 79 79 80 --topbar-bg: #45cfbe; 80 --topbar-text-color: # 000000;81 --topbar-text-color: #FFFFFF; 81 82 82 83 --logo-invert-color: none; /* Invert color logo for transparent header */ … … 88 89 89 90 /* 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%;}91 body{font-size: var(--site-font-size); background-color: var(--site-bg); color: var(--site-text-color); font-family: var(--body-font-family); } 91 92 body.custom-background.dark{background-color: var(--site-bg);} 92 93 … … 106 107 107 108 /* 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}109 textarea { padding: 10px; width: 100%; border: 1px solid #949494; background: #fff; appearance: none;border-radius: 10px;margin-top:5px} 109 110 110 111 input[type=submit], … … 112 113 input[type=submit]:active, button[type=submit]:active{transform:scale(0.9);transform: translate(2px,2px)} 113 114 114 input[type=text],input[type=search] { width: 100%; padding: 10px; border: 1px solid #949494; background: #fff; margin-top:5px; border-radius: 100px; }115 input[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; } 115 116 116 117 input:focus, textarea:focus{ outline: 0; } … … 127 128 128 129 /* 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); } 131 132 132 133 … … 160 161 padding: var(--content-padding); 161 162 margin: 0; 162 gap: 25px;163 gap:55px; 163 164 } 164 165 … … 167 168 .header__logo{order: 1;} 168 169 .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 169 178 170 179 .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;} … … 265 274 0 4px 4px rgba(0,0,0,0.05), 266 275 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); 268 277 padding: 0; 269 278 … … 336 345 padding: 0; 337 346 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); 339 348 text-align: left; 340 349 transition: opacity 0.3s ease, transform 0.3s ease; … … 355 364 /* Menu Dropdown */ 356 365 .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; } 358 367 359 368 … … 582 591 height: 0; 583 592 } 584 * html .clearfix { zoom: 1; } /* IE6 */ 585 *:first-child+html .clearfix { zoom: 1; } /* IE7 */ 593 586 594 587 595 … … 698 706 699 707 /* 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 } 701 724 702 725 /* Blockquote */ … … 991 1014 @keyframes ripple { 992 1015 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); 997 1020 } 998 1021 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); 1003 1026 } 1004 1027 } -
luxuryconceptfree/1.0.1/templates/home.php
r201434 r201647 13 13 get_header(); ?> 14 14 15 <main id="content" class="main-content" role="main">15 <main id="content" class="main-content"> 16 16 17 17 <?php if (have_posts()) :?><?php while(have_posts()) : the_post(); ?> -
luxuryconceptfree/1.0.1/templates/page-no-sidebar.php
r201434 r201647 13 13 get_header(); ?> 14 14 15 <main id="content" class="main-content" role="main">15 <main id="content" class="main-content"> 16 16 17 17 <?php if (have_posts()) :?><?php while(have_posts()) : the_post(); ?> -
luxuryconceptfree/1.0.1/templates/page-sidebar-right.php
r201434 r201647 13 13 get_header(); ?> 14 14 15 <main id="content" class="main-content" role="main">15 <main id="content" class="main-content"> 16 16 17 17 <?php if (have_posts()) :?><?php while(have_posts()) : the_post(); ?> -
luxuryconceptfree/1.0.1/templates/single-no-sidebar.php
r201434 r201647 13 13 get_header(); ?> 14 14 15 <main id="content" class="main-content" role="main">15 <main id="content" class="main-content"> 16 16 17 17 <?php if (have_posts()) :?><?php while(have_posts()) : the_post(); ?> -
luxuryconceptfree/1.0.1/templates/single-sidebar-right.php
r201434 r201647 14 14 get_header(); ?> 15 15 16 <main id="content" class="main-content" role="main">16 <main id="content" class="main-content"> 17 17 18 18 <?php if (have_posts()) :?><?php while(have_posts()) : the_post(); ?> -
luxuryconceptfree/1.0.1/templates/transparent-header.php
r201434 r201647 13 13 get_header(); ?> 14 14 15 <main id="content" class="main-content" role="main">15 <main id="content" class="main-content"> 16 16 17 17 <?php if (have_posts()) :?><?php while(have_posts()) : the_post(); ?>
Note: See TracChangeset
for help on using the changeset viewer.