Make WordPress Themes

Changeset 258951


Ignore:
Timestamp:
02/08/2025 03:54:12 AM (10 months ago)
Author:
themedropbox
Message:

New version of Beauty Cosmetic Store - 0.0.9

Location:
beauty-cosmetic-store/0.0.9
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • beauty-cosmetic-store/0.0.9/assets/js/theme-script.js

    r237275 r258951  
    117117window.addEventListener('load', (event) => {
    118118  jQuery(".loading").delay(2000).fadeOut("slow");
     119  jQuery(".loading2").delay(2000).fadeOut("slow");
    119120});
    120121
  • beauty-cosmetic-store/0.0.9/custom-option.php

    r255673 r258951  
    155155        $beauty_cosmetic_store_theme_css .='}';
    156156    }
     157
     158    /*------------------ Slider CSS -------------------*/
     159    $beauty_cosmetic_store_slider_opacity_setting = get_theme_mod( 'beauty_cosmetic_store_slider_opacity_setting',false);
     160    $beauty_cosmetic_store_image_opacity_color = get_theme_mod( 'beauty_cosmetic_store_image_opacity_color');
     161    $beauty_cosmetic_store_slider_opacity = get_theme_mod( 'beauty_cosmetic_store_slider_opacity');
     162    if( $beauty_cosmetic_store_slider_opacity_setting != false) {
     163        $beauty_cosmetic_store_theme_css .='.slider-box img{';
     164            $beauty_cosmetic_store_theme_css .='opacity: '. $beauty_cosmetic_store_slider_opacity. ';';
     165        $beauty_cosmetic_store_theme_css .='}';
     166        if( $beauty_cosmetic_store_image_opacity_color != '') {
     167            $beauty_cosmetic_store_theme_css .='.slider-box{';
     168                $beauty_cosmetic_store_theme_css .='background-color: '. $beauty_cosmetic_store_image_opacity_color. '; border-radius: 20px;';
     169            $beauty_cosmetic_store_theme_css .='}';
     170        }
     171    } else {
     172        $beauty_cosmetic_store_theme_css .='.slider-box img{';
     173            $beauty_cosmetic_store_theme_css .='opacity: 1;';
     174        $beauty_cosmetic_store_theme_css .='}';
     175    }
  • beauty-cosmetic-store/0.0.9/functions.php

    r251746 r258951  
    176176  $beauty_cosmetic_store_preloader_dot_1_color = get_theme_mod('beauty_cosmetic_store_preloader_dot_1_color');
    177177  $beauty_cosmetic_store_preloader_dot_2_color = get_theme_mod('beauty_cosmetic_store_preloader_dot_2_color');
     178  $beauty_cosmetic_store_preloader2_dot_color = get_theme_mod('beauty_cosmetic_store_preloader2_dot_color');
    178179  $beauty_cosmetic_store_logo_max_height = get_theme_mod('beauty_cosmetic_store_logo_max_height');
    179180  $beauty_cosmetic_store_scroll_bg_color = get_theme_mod('beauty_cosmetic_store_scroll_bg_color');
     
    186187    }
    187188
    188     if(get_theme_mod('beauty_cosmetic_store_preloader_bg_color') == '') {
    189         $beauty_cosmetic_store_preloader_bg_color = '#FF5894';
    190     }
    191189    if(get_theme_mod('beauty_cosmetic_store_preloader_dot_1_color') == '') {
    192190        $beauty_cosmetic_store_preloader_dot_1_color = '#ffffff';
     
    199197            max-height: '.esc_attr($beauty_cosmetic_store_logo_max_height).'px;
    200198        }
    201         .loading{
     199        .loading, .loading2{
    202200            background-color: '.esc_attr($beauty_cosmetic_store_preloader_bg_color).';
    203          }
    204          @keyframes loading {
     201        }
     202        @keyframes loading {
    205203          0%,
    206204          100% {
     
    213211          }
    214212        }
     213        .load hr {
     214            background-color: '.esc_attr($beauty_cosmetic_store_preloader2_dot_color).';
     215        }
    215216        a#button{
    216217            background-color: '.esc_attr($beauty_cosmetic_store_scroll_bg_color).';
     
    254255    $choices = $setting->manager->get_control( $setting->id )->choices;
    255256    return ( array_key_exists( $input, $choices ) ? $input : $setting->default );
     257}
     258
     259function beauty_cosmetic_store_preloader1(){
     260    if(get_theme_mod('beauty_cosmetic_store_preloader_type', 'Preloader 1') == 'Preloader 1' ) {
     261        return true;
     262    }
     263    return false;
     264}
     265
     266function beauty_cosmetic_store_preloader2(){
     267    if(get_theme_mod('beauty_cosmetic_store_preloader_type', 'Preloader 1') == 'Preloader 2' ) {
     268        return true;
     269    }
     270    return false;
    256271}
    257272
  • beauty-cosmetic-store/0.0.9/header.php

    r251746 r258951  
    2424
    2525<?php if(get_theme_mod('beauty_cosmetic_store_preloader_hide','')){ ?>
    26     <div class="loading">
    27         <div class="dot"></div>
    28         <div class="dot"></div>
    29         <div class="dot"></div>
    30     </div>
     26    <?php if(get_theme_mod('beauty_cosmetic_store_preloader_type','Preloader 1') == 'Preloader 1'){ ?>
     27        <div class="loading">
     28            <div class="dot"></div>
     29            <div class="dot"></div>
     30            <div class="dot"></div>
     31        </div>
     32    <?php } elseif(get_theme_mod('beauty_cosmetic_store_preloader_type','Preloader 1') == 'Preloader 2') {?>
     33        <div class="loading2">
     34            <div class="load">
     35                <hr/><hr/><hr/><hr/>
     36            </div>
     37        </div>
     38    <?php }?>
    3139<?php } ?>
    3240<div id="page" class="site">
  • beauty-cosmetic-store/0.0.9/inc/customizer.php

    r255673 r258951  
    350350    )));
    351351
     352    $wp_customize->add_setting('beauty_cosmetic_store_preloader_type',array(
     353        'default' => 'Preloader 1',
     354        'sanitize_callback' => 'beauty_cosmetic_store_sanitize_choices'
     355    ));
     356    $wp_customize->add_control('beauty_cosmetic_store_preloader_type',array(
     357        'type' => 'radio',
     358        'label' => esc_html__('Preloader Type','beauty-cosmetic-store'),
     359        'section' => 'beauty_cosmetic_store_general_settings',
     360        'choices' => array(
     361            'Preloader 1' => __('Preloader 1','beauty-cosmetic-store'),
     362            'Preloader 2' => __('Preloader 2','beauty-cosmetic-store'),
     363        ),
     364    ) );
     365
    352366    $wp_customize->add_setting( 'beauty_cosmetic_store_preloader_bg_color', array(
    353         'default' => '#FF5894',
     367        'default' => '',
    354368        'sanitize_callback' => 'sanitize_hex_color'
    355369    ));
     
    367381        'label' => esc_html__('Preloader First Dot Color','beauty-cosmetic-store'),
    368382        'section' => 'beauty_cosmetic_store_general_settings',
    369         'settings' => 'beauty_cosmetic_store_preloader_dot_1_color'
     383        'settings' => 'beauty_cosmetic_store_preloader_dot_1_color',
     384        'active_callback' => 'beauty_cosmetic_store_preloader1'
    370385    )));
    371386
     
    377392        'label' => esc_html__('Preloader Second Dot Color','beauty-cosmetic-store'),
    378393        'section' => 'beauty_cosmetic_store_general_settings',
    379         'settings' => 'beauty_cosmetic_store_preloader_dot_2_color'
     394        'settings' => 'beauty_cosmetic_store_preloader_dot_2_color',
     395        'active_callback' => 'beauty_cosmetic_store_preloader1'
     396    )));
     397
     398    $wp_customize->add_setting( 'beauty_cosmetic_store_preloader2_dot_color', array(
     399        'default' => '#FF5894',
     400        'sanitize_callback' => 'sanitize_hex_color'
     401    ));
     402    $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'beauty_cosmetic_store_preloader2_dot_color', array(
     403        'label' => esc_html__('Preloader Dot Color','beauty-cosmetic-store'),
     404        'section' => 'beauty_cosmetic_store_general_settings',
     405        'settings' => 'beauty_cosmetic_store_preloader2_dot_color',
     406        'active_callback' => 'beauty_cosmetic_store_preloader2'
    380407    )));
    381408
     
    903930    ));
    904931
     932    $wp_customize->add_setting('beauty_cosmetic_store_slider_opacity_setting', array(
     933        'default' => false,
     934        'sanitize_callback' => 'beauty_cosmetic_store_sanitize_checkbox'
     935    ));
     936    $wp_customize->add_control( new WP_Customize_Control($wp_customize,'beauty_cosmetic_store_slider_opacity_setting',array(
     937        'label'    => __( 'Show Image Opacity', 'beauty-cosmetic-store' ),
     938        'section'  => 'beauty_cosmetic_store_top_slider',
     939        'type'     => 'checkbox',
     940    )));
     941
     942    $wp_customize->add_setting( 'beauty_cosmetic_store_image_opacity_color', array(
     943        'default' => '',
     944        'sanitize_callback' => 'sanitize_hex_color'
     945    ));
     946    $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'beauty_cosmetic_store_image_opacity_color', array(
     947        'label' => __('Slider Image Opacity Color', 'beauty-cosmetic-store'),
     948        'section' => 'beauty_cosmetic_store_top_slider',
     949        'settings' => 'beauty_cosmetic_store_image_opacity_color',
     950    )));
     951
     952    $wp_customize->add_setting('beauty_cosmetic_store_slider_opacity',array(
     953        'default'=> '0.7',
     954        'sanitize_callback' => 'beauty_cosmetic_store_sanitize_choices'
     955    ));
     956    $wp_customize->add_control('beauty_cosmetic_store_slider_opacity',array(
     957        'type' => 'select',
     958        'label' => esc_html__('Slider Image Opacity','beauty-cosmetic-store'),
     959        'choices' => array(
     960            '0'   => '0',
     961            '0.1' => '0.1',
     962            '0.2' => '0.2',
     963            '0.3' => '0.3',
     964            '0.4' => '0.4',
     965            '0.5' => '0.5',
     966            '0.6' => '0.6',
     967            '0.7' => '0.7',
     968            '0.8' => '0.8',
     969            '0.9' => '0.9',
     970            '1'   => '1',
     971        ),
     972        'section'=> 'beauty_cosmetic_store_top_slider',
     973    ));
     974
    905975    $wp_customize->add_setting('beauty_cosmetic_store_image_box_1_image',array(
    906976        'default' => '',
  • beauty-cosmetic-store/0.0.9/languages/beauty-cosmetic-store.pot

    r255673 r258951  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Beauty Cosmetic Store 0.0.8\n"
     5"Project-Id-Version: Beauty Cosmetic Store 0.0.9\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/theme/beauty-cosmetic-store\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2025-01-10T14:30:48+05:30\n"
     12"POT-Creation-Date: 2025-02-06T00:32:20+05:30\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.11.0\n"
     
    123123msgstr ""
    124124
    125 #: functions.php:361
     125#: functions.php:376
    126126msgid "https://wordpress.org/support/theme/beauty-cosmetic-store/"
    127127msgstr ""
    128128
    129 #: functions.php:364
     129#: functions.php:379
    130130msgid "https://wordpress.org/support/theme/beauty-cosmetic-store/reviews/"
    131131msgstr ""
    132132
    133 #: functions.php:367
     133#: functions.php:382
    134134msgid "https://demo.themagnifico.net/beauty-cosmetic-store/"
    135135msgstr ""
    136136
    137 #: functions.php:370
     137#: functions.php:385
    138138msgid "https://www.themagnifico.net/products/cosmetic-store-wordpress-theme"
    139139msgstr ""
    140140
    141 #: functions.php:373
     141#: functions.php:388
    142142msgid "https://demo.themagnifico.net/eard/wathiqa/beauty-cosmetic-store-pro-doc/"
    143143msgstr ""
    144144
    145 #: functions.php:376
     145#: functions.php:391
    146146msgid "https://demo.themagnifico.net/eard/wathiqa/beauty-cosmetic-store-free-doc/"
    147147msgstr ""
    148148
    149 #: functions.php:384
     149#: functions.php:399
    150150msgid "Theme Options"
    151151msgstr ""
    152152
    153 #: functions.php:384
     153#: functions.php:399
    154154msgid " Theme Options"
    155155msgstr ""
    156156
    157 #: functions.php:394
     157#: functions.php:409
    158158msgid "Welcome To "
    159159msgstr ""
    160160
    161 #: functions.php:399
    162 #: functions.php:402
     161#: functions.php:414
     162#: functions.php:417
    163163msgid "Contact Support"
    164164msgstr ""
    165165
    166 #: functions.php:400
     166#: functions.php:415
    167167msgid "Thank you for trying Beauty Cosmetic Store , feel free to contact us for any support regarding our theme."
    168168msgstr ""
    169169
    170 #: functions.php:408
     170#: functions.php:423
    171171msgid "Checkout Premium"
    172172msgstr ""
    173173
    174 #: functions.php:409
     174#: functions.php:424
    175175msgid "Our premium theme comes with extended features like demo content import , responsive layouts etc."
    176176msgstr ""
    177177
    178 #: functions.php:411
     178#: functions.php:426
    179179msgid "Get Premium"
    180180msgstr ""
    181181
    182 #: functions.php:417
    183 #: functions.php:420
     182#: functions.php:432
     183#: functions.php:435
    184184msgid "Review"
    185185msgstr ""
    186186
    187 #: functions.php:418
     187#: functions.php:433
    188188msgid "If You love Beauty Cosmetic Store theme then we would appreciate your review about our theme."
    189189msgstr ""
    190190
    191 #: functions.php:426
    192 #: functions.php:429
     191#: functions.php:441
     192#: functions.php:444
    193193msgid "Free Documentation"
    194194msgstr ""
    195195
    196 #: functions.php:427
     196#: functions.php:442
    197197msgid "Our guide is available if you require any help configuring and setting up the theme. Easy and quick way to setup the theme."
    198198msgstr ""
    199199
    200 #: functions.php:437
     200#: functions.php:452
    201201msgid "Free Vs Premium"
    202202msgstr ""
    203203
    204 #: functions.php:440
     204#: functions.php:455
    205205msgid "Checkout Documentation"
    206206msgstr ""
    207207
    208 #: functions.php:443
     208#: functions.php:458
    209209msgid "View Theme Demo"
    210210msgstr ""
    211211
    212 #: functions.php:450
     212#: functions.php:465
    213213msgid "Theme Feature"
    214214msgstr ""
    215215
    216 #: functions.php:451
     216#: functions.php:466
    217217msgid "Basic Version"
    218218msgstr ""
    219219
    220 #: functions.php:452
     220#: functions.php:467
    221221msgid "Premium Version"
    222222msgstr ""
    223223
    224 #: functions.php:458
     224#: functions.php:473
    225225msgid "Header Background Color"
    226226msgstr ""
    227227
    228 #: functions.php:463
     228#: functions.php:478
    229229msgid "Custom Navigation Logo Or Text"
    230230msgstr ""
    231231
    232 #: functions.php:468
     232#: functions.php:483
    233233msgid "Hide Logo Text"
    234234msgstr ""
    235235
    236 #: functions.php:474
     236#: functions.php:489
    237237msgid "Premium Support"
    238238msgstr ""
    239239
    240 #: functions.php:479
     240#: functions.php:494
    241241msgid "Fully SEO Optimized"
    242242msgstr ""
    243243
    244 #: functions.php:484
     244#: functions.php:499
    245245msgid "Recent Posts Widget"
    246246msgstr ""
    247247
    248 #: functions.php:490
     248#: functions.php:505
    249249msgid "Easy Google Fonts"
    250250msgstr ""
    251251
    252 #: functions.php:495
     252#: functions.php:510
    253253msgid "Pagespeed Plugin"
    254254msgstr ""
    255255
    256 #: functions.php:500
     256#: functions.php:515
    257257msgid "Only Show Header Image On Front Page"
    258258msgstr ""
    259259
    260 #: functions.php:505
     260#: functions.php:520
    261261msgid "Show Header Everywhere"
    262262msgstr ""
    263263
    264 #: functions.php:510
     264#: functions.php:525
    265265msgid "Custom Text On Header Image"
    266266msgstr ""
    267267
    268 #: functions.php:515
     268#: functions.php:530
    269269msgid "Full Width (Hide Sidebar)"
    270270msgstr ""
    271271
    272 #: functions.php:520
     272#: functions.php:535
    273273msgid "Only Show Upper Widgets On Front Page"
    274274msgstr ""
    275275
    276 #: functions.php:525
     276#: functions.php:540
    277277msgid "Replace Copyright Text"
    278278msgstr ""
    279279
    280 #: functions.php:530
     280#: functions.php:545
    281281msgid "Customize Upper Widgets Colors"
    282282msgstr ""
    283283
    284 #: functions.php:535
     284#: functions.php:550
    285285msgid "Customize Navigation Color"
    286286msgstr ""
    287287
    288 #: functions.php:540
     288#: functions.php:555
    289289msgid "Customize Post/Page Color"
    290290msgstr ""
    291291
    292 #: functions.php:545
     292#: functions.php:560
    293293msgid "Customize Blog Feed Color"
    294294msgstr ""
    295295
    296 #: functions.php:550
     296#: functions.php:565
    297297msgid "Customize Footer Color"
    298298msgstr ""
    299299
    300 #: functions.php:555
     300#: functions.php:570
    301301msgid "Customize Sidebar Color"
    302302msgstr ""
    303303
    304 #: functions.php:560
     304#: functions.php:575
    305305msgid "Customize Background Color"
    306306msgstr ""
    307307
    308 #: functions.php:565
     308#: functions.php:580
    309309msgid "Importable Demo Content\t"
    310310msgstr ""
    311311
    312 #: functions.php:573
     312#: functions.php:588
    313313msgid "Go Premium"
    314314msgstr ""
    315315
    316 #: functions.php:601
     316#: functions.php:616
    317317msgid "Thank You For Choosing "
    318318msgstr ""
    319319
    320 #: functions.php:602
     320#: functions.php:617
    321321msgid "Get Started With Theme By Clicking On Getting Started."
    322322msgstr ""
    323323
    324 #: functions.php:603
     324#: functions.php:618
    325325msgid "Get started"
    326326msgstr ""
    327327
    328 #: functions.php:604
     328#: functions.php:619
    329329msgid "Documentation"
    330330msgstr ""
    331331
    332 #: functions.php:607
     332#: functions.php:622
    333333msgid "View Demo"
    334334msgstr ""
    335335
    336 #: header.php:34
     336#: header.php:42
    337337msgid "Skip to content"
    338338msgstr ""
     
    832832msgstr ""
    833833
    834 #: inc/customizer.php:357
     834#: inc/customizer.php:358
     835msgid "Preloader Type"
     836msgstr ""
     837
     838#: inc/customizer.php:361
     839msgid "Preloader 1"
     840msgstr ""
     841
     842#: inc/customizer.php:362
     843msgid "Preloader 2"
     844msgstr ""
     845
     846#: inc/customizer.php:371
    835847msgid "Preloader Background Color"
    836848msgstr ""
    837849
    838 #: inc/customizer.php:367
     850#: inc/customizer.php:381
    839851msgid "Preloader First Dot Color"
    840852msgstr ""
    841853
    842 #: inc/customizer.php:377
     854#: inc/customizer.php:392
    843855msgid "Preloader Second Dot Color"
    844856msgstr ""
    845857
    846 #: inc/customizer.php:387
     858#: inc/customizer.php:403
     859msgid "Preloader Dot Color"
     860msgstr ""
     861
     862#: inc/customizer.php:414
    847863msgid "Show Theme Scroll To Top"
    848864msgstr ""
    849865
    850 #: inc/customizer.php:401
    851 #: inc/customizer.php:885
     866#: inc/customizer.php:428
     867#: inc/customizer.php:912
    852868msgid "Right"
    853869msgstr ""
    854870
    855 #: inc/customizer.php:402
     871#: inc/customizer.php:429
     872#: inc/customizer.php:910
     873msgid "Left"
     874msgstr ""
     875
     876#: inc/customizer.php:430
     877#: inc/customizer.php:911
     878msgid "Center"
     879msgstr ""
     880
     881#: inc/customizer.php:439
     882msgid "Scroll Top Background Color"
     883msgstr ""
     884
     885#: inc/customizer.php:449
     886msgid "Scroll Top Color"
     887msgstr ""
     888
     889#: inc/customizer.php:459
     890msgid "Scroll Top Font Size"
     891msgstr ""
     892
     893#: inc/customizer.php:460
     894msgid "Put in px"
     895msgstr ""
     896
     897#: inc/customizer.php:470
     898msgid "Scroll Top Border Radius"
     899msgstr ""
     900
     901#: inc/customizer.php:471
     902msgid "Put in %"
     903msgstr ""
     904
     905#: inc/customizer.php:484
     906msgid "Product per row"
     907msgstr ""
     908
     909#: inc/customizer.php:499
     910msgid "Product per page"
     911msgstr ""
     912
     913#: inc/customizer.php:510
     914msgid "Hide Shop Page Sidebar"
     915msgstr ""
     916
     917#: inc/customizer.php:522
     918msgid "Woocommerce Shop Page Sidebar"
     919msgstr ""
     920
     921#. Template Name of the theme
     922#: inc/customizer.php:525
     923#: inc/customizer.php:551
     924msgid "Left Sidebar"
     925msgstr ""
     926
     927#. Template Name of the theme
     928#: inc/customizer.php:526
     929#: inc/customizer.php:552
     930msgid "Right Sidebar"
     931msgstr ""
     932
     933#: inc/customizer.php:536
     934msgid "Hide Single Product Page Sidebar"
     935msgstr ""
     936
     937#: inc/customizer.php:548
     938msgid "Woocommerce Single Product Page Sidebar"
     939msgstr ""
     940
     941#: inc/customizer.php:558
     942msgid "Social Icons"
     943msgstr ""
     944
     945#: inc/customizer.php:566
     946msgid "Facebook Icon "
     947msgstr ""
     948
     949#: inc/customizer.php:571
     950msgid "Select font awesome icons <a target=\"_blank\" href=\"https://fontawesome.com/v5/search?m=free\">Click Here</a> for select icon. for eg:-fab fa-facebook-f"
     951msgstr ""
     952
     953#: inc/customizer.php:579
     954msgid "Facebook Link "
     955msgstr ""
     956
     957#: inc/customizer.php:590
     958msgid "Twitter Icon "
     959msgstr ""
     960
     961#: inc/customizer.php:595
     962msgid "Select font awesome icons <a target=\"_blank\" href=\"https://fontawesome.com/v5/search?m=free\">Click Here</a> for select icon. for eg:-fab fa-twitter"
     963msgstr ""
     964
     965#: inc/customizer.php:603
     966msgid "Twitter Link "
     967msgstr ""
     968
     969#: inc/customizer.php:614
     970msgid "Intagram Icon "
     971msgstr ""
     972
     973#: inc/customizer.php:619
     974msgid "Select font awesome icons <a target=\"_blank\" href=\"https://fontawesome.com/v5/search?m=free\">Click Here</a> for select icon. for eg:-fab fa-instagram"
     975msgstr ""
     976
     977#: inc/customizer.php:627
     978msgid "Intagram Link "
     979msgstr ""
     980
     981#: inc/customizer.php:638
     982msgid "Linkedin Icon "
     983msgstr ""
     984
     985#: inc/customizer.php:643
     986msgid "Select font awesome icons <a target=\"_blank\" href=\"https://fontawesome.com/v5/search?m=free\">Click Here</a> for select icon. for eg:-fab fa-linkedin-in"
     987msgstr ""
     988
     989#: inc/customizer.php:651
     990msgid "Linkedin Link "
     991msgstr ""
     992
     993#: inc/customizer.php:662
     994msgid "Pinterest Icon "
     995msgstr ""
     996
     997#: inc/customizer.php:667
     998msgid "Select font awesome icons <a target=\"_blank\" href=\"https://fontawesome.com/v5/search?m=free\">Click Here</a> for select icon. for eg:-fab fa-pinterest-p"
     999msgstr ""
     1000
     1001#: inc/customizer.php:675
     1002msgid "Pinterest Link "
     1003msgstr ""
     1004
     1005#: inc/customizer.php:683
     1006msgid "Top Header Option"
     1007msgstr ""
     1008
     1009#: inc/customizer.php:691
     1010msgid "Topbar Text"
     1011msgstr ""
     1012
     1013#: inc/customizer.php:702
     1014msgid "Topbar Button Url "
     1015msgstr ""
     1016
     1017#: inc/customizer.php:713
     1018msgid "Phone Text"
     1019msgstr ""
     1020
     1021#: inc/customizer.php:724
     1022msgid "Phone Number"
     1023msgstr ""
     1024
     1025#: inc/customizer.php:732
     1026msgid "Header Option"
     1027msgstr ""
     1028
     1029#: inc/customizer.php:740
     1030msgid "Sell Button Text"
     1031msgstr ""
     1032
     1033#: inc/customizer.php:751
     1034msgid "Sell Button url"
     1035msgstr ""
     1036
     1037#: inc/customizer.php:762
     1038msgid "Tracking Button Text"
     1039msgstr ""
     1040
     1041#: inc/customizer.php:773
     1042msgid "Tracking Button url"
     1043msgstr ""
     1044
     1045#: inc/customizer.php:784
     1046msgid "Viewed Button Text"
     1047msgstr ""
     1048
     1049#: inc/customizer.php:795
     1050msgid "Viewed Button url"
     1051msgstr ""
     1052
     1053#: inc/customizer.php:803
     1054msgid "Popular Categories Option"
     1055msgstr ""
     1056
     1057#: inc/customizer.php:811
     1058msgid "Show Popular Categories"
     1059msgstr ""
     1060
     1061#: inc/customizer.php:822
     1062msgid "Short Heading"
     1063msgstr ""
     1064
     1065#: inc/customizer.php:830
     1066msgid "Menus Settings"
     1067msgstr ""
     1068
     1069#: inc/customizer.php:838
     1070msgid "Menu Font Size"
     1071msgstr ""
     1072
     1073#: inc/customizer.php:849
     1074msgid "Menu Text Transform"
     1075msgstr ""
     1076
     1077#: inc/customizer.php:851
     1078msgid "Uppercase"
     1079msgstr ""
     1080
     1081#: inc/customizer.php:852
     1082msgid "Capitalize"
     1083msgstr ""
     1084
     1085#: inc/customizer.php:853
     1086msgid "Lowercase"
     1087msgstr ""
     1088
     1089#: inc/customizer.php:864
     1090msgid "Menu Font Weight"
     1091msgstr ""
     1092
     1093#: inc/customizer.php:875
     1094msgid "Slider Settings"
     1095msgstr ""
     1096
    8561097#: inc/customizer.php:883
    857 msgid "Left"
    858 msgstr ""
    859 
    860 #: inc/customizer.php:403
    861 #: inc/customizer.php:884
    862 msgid "Center"
    863 msgstr ""
    864 
    865 #: inc/customizer.php:412
    866 msgid "Scroll Top Background Color"
    867 msgstr ""
    868 
    869 #: inc/customizer.php:422
    870 msgid "Scroll Top Color"
    871 msgstr ""
    872 
    873 #: inc/customizer.php:432
    874 msgid "Scroll Top Font Size"
    875 msgstr ""
    876 
    877 #: inc/customizer.php:433
    878 msgid "Put in px"
    879 msgstr ""
    880 
    881 #: inc/customizer.php:443
    882 msgid "Scroll Top Border Radius"
    883 msgstr ""
    884 
    885 #: inc/customizer.php:444
    886 msgid "Put in %"
    887 msgstr ""
    888 
    889 #: inc/customizer.php:457
    890 msgid "Product per row"
    891 msgstr ""
    892 
    893 #: inc/customizer.php:472
    894 msgid "Product per page"
    895 msgstr ""
    896 
    897 #: inc/customizer.php:483
    898 msgid "Hide Shop Page Sidebar"
    899 msgstr ""
    900 
    901 #: inc/customizer.php:495
    902 msgid "Woocommerce Shop Page Sidebar"
    903 msgstr ""
    904 
    905 #. Template Name of the theme
    906 #: inc/customizer.php:498
    907 #: inc/customizer.php:524
    908 msgid "Left Sidebar"
    909 msgstr ""
    910 
    911 #. Template Name of the theme
    912 #: inc/customizer.php:499
    913 #: inc/customizer.php:525
    914 msgid "Right Sidebar"
    915 msgstr ""
    916 
    917 #: inc/customizer.php:509
    918 msgid "Hide Single Product Page Sidebar"
    919 msgstr ""
    920 
    921 #: inc/customizer.php:521
    922 msgid "Woocommerce Single Product Page Sidebar"
    923 msgstr ""
    924 
    925 #: inc/customizer.php:531
    926 msgid "Social Icons"
    927 msgstr ""
    928 
    929 #: inc/customizer.php:539
    930 msgid "Facebook Icon "
    931 msgstr ""
    932 
    933 #: inc/customizer.php:544
    934 msgid "Select font awesome icons <a target=\"_blank\" href=\"https://fontawesome.com/v5/search?m=free\">Click Here</a> for select icon. for eg:-fab fa-facebook-f"
    935 msgstr ""
    936 
    937 #: inc/customizer.php:552
    938 msgid "Facebook Link "
    939 msgstr ""
    940 
    941 #: inc/customizer.php:563
    942 msgid "Twitter Icon "
    943 msgstr ""
    944 
    945 #: inc/customizer.php:568
    946 msgid "Select font awesome icons <a target=\"_blank\" href=\"https://fontawesome.com/v5/search?m=free\">Click Here</a> for select icon. for eg:-fab fa-twitter"
    947 msgstr ""
    948 
    949 #: inc/customizer.php:576
    950 msgid "Twitter Link "
    951 msgstr ""
    952 
    953 #: inc/customizer.php:587
    954 msgid "Intagram Icon "
    955 msgstr ""
    956 
    957 #: inc/customizer.php:592
    958 msgid "Select font awesome icons <a target=\"_blank\" href=\"https://fontawesome.com/v5/search?m=free\">Click Here</a> for select icon. for eg:-fab fa-instagram"
    959 msgstr ""
    960 
    961 #: inc/customizer.php:600
    962 msgid "Intagram Link "
    963 msgstr ""
    964 
    965 #: inc/customizer.php:611
    966 msgid "Linkedin Icon "
    967 msgstr ""
    968 
    969 #: inc/customizer.php:616
    970 msgid "Select font awesome icons <a target=\"_blank\" href=\"https://fontawesome.com/v5/search?m=free\">Click Here</a> for select icon. for eg:-fab fa-linkedin-in"
    971 msgstr ""
    972 
    973 #: inc/customizer.php:624
    974 msgid "Linkedin Link "
    975 msgstr ""
    976 
    977 #: inc/customizer.php:635
    978 msgid "Pinterest Icon "
    979 msgstr ""
    980 
    981 #: inc/customizer.php:640
    982 msgid "Select font awesome icons <a target=\"_blank\" href=\"https://fontawesome.com/v5/search?m=free\">Click Here</a> for select icon. for eg:-fab fa-pinterest-p"
    983 msgstr ""
    984 
    985 #: inc/customizer.php:648
    986 msgid "Pinterest Link "
    987 msgstr ""
    988 
    989 #: inc/customizer.php:656
    990 msgid "Top Header Option"
    991 msgstr ""
    992 
    993 #: inc/customizer.php:664
    994 msgid "Topbar Text"
    995 msgstr ""
    996 
    997 #: inc/customizer.php:675
    998 msgid "Topbar Button Url "
    999 msgstr ""
    1000 
    1001 #: inc/customizer.php:686
    1002 msgid "Phone Text"
    1003 msgstr ""
    1004 
    1005 #: inc/customizer.php:697
    1006 msgid "Phone Number"
    1007 msgstr ""
    1008 
    1009 #: inc/customizer.php:705
    1010 msgid "Header Option"
    1011 msgstr ""
    1012 
    1013 #: inc/customizer.php:713
    1014 msgid "Sell Button Text"
    1015 msgstr ""
    1016 
    1017 #: inc/customizer.php:724
    1018 msgid "Sell Button url"
    1019 msgstr ""
    1020 
    1021 #: inc/customizer.php:735
    1022 msgid "Tracking Button Text"
    1023 msgstr ""
    1024 
    1025 #: inc/customizer.php:746
    1026 msgid "Tracking Button url"
    1027 msgstr ""
    1028 
    1029 #: inc/customizer.php:757
    1030 msgid "Viewed Button Text"
    1031 msgstr ""
    1032 
    1033 #: inc/customizer.php:768
    1034 msgid "Viewed Button url"
    1035 msgstr ""
    1036 
    1037 #: inc/customizer.php:776
    1038 msgid "Popular Categories Option"
    1039 msgstr ""
    1040 
    1041 #: inc/customizer.php:784
    1042 msgid "Show Popular Categories"
    1043 msgstr ""
    1044 
    1045 #: inc/customizer.php:795
    1046 msgid "Short Heading"
    1047 msgstr ""
    1048 
    1049 #: inc/customizer.php:803
    1050 msgid "Menus Settings"
    1051 msgstr ""
    1052 
    1053 #: inc/customizer.php:811
    1054 msgid "Menu Font Size"
    1055 msgstr ""
    1056 
    1057 #: inc/customizer.php:822
    1058 msgid "Menu Text Transform"
    1059 msgstr ""
    1060 
    1061 #: inc/customizer.php:824
    1062 msgid "Uppercase"
    1063 msgstr ""
    1064 
    1065 #: inc/customizer.php:825
    1066 msgid "Capitalize"
    1067 msgstr ""
    1068 
    1069 #: inc/customizer.php:826
    1070 msgid "Lowercase"
    1071 msgstr ""
    1072 
    1073 #: inc/customizer.php:837
    1074 msgid "Menu Font Weight"
    1075 msgstr ""
    1076 
    1077 #: inc/customizer.php:848
    1078 msgid "Slider Settings"
    1079 msgstr ""
    1080 
    1081 #: inc/customizer.php:856
    10821098msgid "Show Slider"
    10831099msgstr ""
    10841100
    1085 #: inc/customizer.php:869
     1101#: inc/customizer.php:896
    10861102msgid "Select Slide Page"
    10871103msgstr ""
    10881104
    1089 #: inc/customizer.php:881
     1105#: inc/customizer.php:908
    10901106msgid "Slider Content Layout"
    10911107msgstr ""
    10921108
    1093 #: inc/customizer.php:895
     1109#: inc/customizer.php:922
    10941110msgid "Slider Excerpt Length"
    10951111msgstr ""
    10961112
    1097 #: inc/customizer.php:911
     1113#: inc/customizer.php:937
     1114msgid "Show Image Opacity"
     1115msgstr ""
     1116
     1117#: inc/customizer.php:947
     1118msgid "Slider Image Opacity Color"
     1119msgstr ""
     1120
     1121#: inc/customizer.php:958
     1122msgid "Slider Image Opacity"
     1123msgstr ""
     1124
     1125#: inc/customizer.php:981
    10981126msgid "Box 1 Image "
    10991127msgstr ""
    11001128
    1101 #: inc/customizer.php:912
    1102 #: inc/customizer.php:957
    1103 #: inc/customizer.php:1002
    1104 #: inc/customizer.php:1036
     1129#: inc/customizer.php:982
     1130#: inc/customizer.php:1027
     1131#: inc/customizer.php:1072
     1132#: inc/customizer.php:1106
    11051133msgid "Dimension 500 x 350 "
    11061134msgstr ""
    11071135
    1108 #: inc/customizer.php:922
     1136#: inc/customizer.php:992
    11091137msgid "Box 1 Heading"
    11101138msgstr ""
    11111139
    1112 #: inc/customizer.php:933
     1140#: inc/customizer.php:1003
    11131141msgid "Box 1 Text"
    11141142msgstr ""
    11151143
    1116 #: inc/customizer.php:944
    1117 #: inc/customizer.php:989
     1144#: inc/customizer.php:1014
     1145#: inc/customizer.php:1059
    11181146msgid "Box 1 Button Url"
    11191147msgstr ""
    11201148
    1121 #: inc/customizer.php:956
     1149#: inc/customizer.php:1026
    11221150msgid "Box 2 Image "
    11231151msgstr ""
    11241152
    1125 #: inc/customizer.php:967
     1153#: inc/customizer.php:1037
    11261154msgid "Box 2 Heading"
    11271155msgstr ""
    11281156
    1129 #: inc/customizer.php:978
     1157#: inc/customizer.php:1048
    11301158msgid "Box 2 Text"
    11311159msgstr ""
    11321160
    1133 #: inc/customizer.php:1001
     1161#: inc/customizer.php:1071
    11341162msgid "Box 3 Image "
    11351163msgstr ""
    11361164
    1137 #: inc/customizer.php:1012
     1165#: inc/customizer.php:1082
    11381166msgid "Box 3 Heading"
    11391167msgstr ""
    11401168
    1141 #: inc/customizer.php:1023
     1169#: inc/customizer.php:1093
    11421170msgid "Box 3 Text"
    11431171msgstr ""
    11441172
    1145 #: inc/customizer.php:1035
     1173#: inc/customizer.php:1105
    11461174msgid "Box 4 Image "
    11471175msgstr ""
    11481176
    1149 #: inc/customizer.php:1046
     1177#: inc/customizer.php:1116
    11501178msgid "Box 4 Heading"
    11511179msgstr ""
    11521180
    1153 #: inc/customizer.php:1057
     1181#: inc/customizer.php:1127
    11541182msgid "Box 4 Text"
    11551183msgstr ""
    11561184
    1157 #: inc/customizer.php:1068
     1185#: inc/customizer.php:1138
    11581186msgid "Box 4 Button Url"
    11591187msgstr ""
    11601188
    1161 #: inc/customizer.php:1076
     1189#: inc/customizer.php:1146
    11621190msgid "Post Settings"
    11631191msgstr ""
    11641192
    1165 #: inc/customizer.php:1086
     1193#: inc/customizer.php:1156
    11661194msgid "Enable Post Page Title"
    11671195msgstr ""
    11681196
    1169 #: inc/customizer.php:1088
     1197#: inc/customizer.php:1158
    11701198msgid "Check this box to enable title on post page."
    11711199msgstr ""
    11721200
    1173 #: inc/customizer.php:1097
     1201#: inc/customizer.php:1167
    11741202msgid "Enable Post Page Meta"
    11751203msgstr ""
    11761204
    1177 #: inc/customizer.php:1099
     1205#: inc/customizer.php:1169
    11781206msgid "Check this box to enable meta on post page."
    11791207msgstr ""
    11801208
    1181 #: inc/customizer.php:1108
     1209#: inc/customizer.php:1178
    11821210msgid "Enable Post Page Thumbnail"
    11831211msgstr ""
    11841212
    1185 #: inc/customizer.php:1110
     1213#: inc/customizer.php:1180
    11861214msgid "Check this box to enable thumbnail on post page."
    11871215msgstr ""
    11881216
    1189 #: inc/customizer.php:1118
     1217#: inc/customizer.php:1188
    11901218msgid "Post Page Excerpt Length"
    11911219msgstr ""
    11921220
    1193 #: inc/customizer.php:1134
     1221#: inc/customizer.php:1204
    11941222msgid "Post Page Excerpt Suffix"
    11951223msgstr ""
    11961224
    1197 #: inc/customizer.php:1136
     1225#: inc/customizer.php:1206
    11981226msgid "For Ex. [...], etc"
    11991227msgstr ""
    12001228
    1201 #: inc/customizer.php:1145
     1229#: inc/customizer.php:1215
    12021230msgid "Enable Post Page Pagination"
    12031231msgstr ""
    12041232
    1205 #: inc/customizer.php:1147
     1233#: inc/customizer.php:1217
    12061234msgid "Check this box to enable pagination on post page."
    12071235msgstr ""
    12081236
    1209 #: inc/customizer.php:1152
     1237#: inc/customizer.php:1222
    12101238msgid "Footer"
    12111239msgstr ""
    12121240
    1213 #: inc/customizer.php:1159
     1241#: inc/customizer.php:1229
    12141242msgid "Replace the footer text"
    12151243msgstr ""
    12161244
    1217 #: inc/customizer.php:1171
     1245#: inc/customizer.php:1241
    12181246msgid "Show / Hide Copyright"
    12191247msgstr ""
    12201248
    1221 #: inc/customizer.php:1182
     1249#: inc/customizer.php:1252
    12221250msgid "Customizer Options"
    12231251msgstr ""
  • beauty-cosmetic-store/0.0.9/readme.txt

    r255673 r258951  
    44Tested up to: 6.6
    55Requires PHP: 7.2
    6 Stable tag: 0.0.8
     6Stable tag: 0.0.9
    77License: GNU General Public License v3.0
    88License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    187187* Added slider excerpt length option in customizer.
    188188* Updated POT file.
     189
     190= 0.0.9
     191
     192* Added preloader type option in customizer.
     193* Added preloader color option in customizer.
     194* Added show/hide slider image opacity option in customizer.
     195* Added slider image opacity color option in customizer.
     196* Added slider image opacity option in customizer.
     197* Updated POT file.
  • beauty-cosmetic-store/0.0.9/style.css

    r255673 r258951  
    66Author URI: https://www.themagnifico.net/
    77Description: Beauty Cosmetic Store is a stylish WordPress theme designed specifically for beauty and cosmetic stores, including makeup, skincare, hair care, and fragrance shops. This theme provides an ideal platform for beauty retailers to showcase their wide range of beauty products, from cosmetics and skincare to hair care and perfumes. The theme’s elegant and modern design ensures that your ecommerce store looks professional and appealing, attracting potential customers and enhancing the overall user experience. The clean and contemporary design elements focus on high-quality images and smooth navigation, ensuring that customers can easily browse through your product offerings. Perfect for beauty boutiques, cosmetic stores, and makeup shops, this theme provides an intuitive and user-friendly interface for both store owners and customers. It features a responsive design, ensuring that your online store looks great on any device, whether it’s a desktop, tablet, or smartphone. Visually, the theme emphasizes elegance and sophistication, with customizable color schemes and typography options that align with your brand’s identity. The homepage is designed to highlight featured products, new arrivals, and special promotions, making it easy for customers to find what they’re looking for. The theme also includes sections for customer reviews and testimonials, which can help build trust and credibility with your audience. Beauty Cosmetic Store is compatible with Gutenberg WordPress and Elementor, providing flexibility for customization. It is also GDPR compliant, ensuring that your store adheres to data protection regulations. Whether you’re selling natural or organic products, this theme offers a comprehensive solution for showcasing your beauty shop or cosmetics shop.
    8 Version: 0.0.8
     8Version: 0.0.9
    99Requires at least: 5.0
    1010Tested up to: 6.6
     
    955955
    956956/*--------------------------------------------------------------
     957## Preloader 2
     958--------------------------------------------------------------*/
     959.loading2 {
     960  background-color: #fff;
     961  display: flex;
     962  justify-content: center;
     963  align-items: center;
     964  height: 100%;
     965  width: 100%;
     966  position: fixed;
     967  z-index: 99999;
     968}
     969.load {
     970  position: absolute;
     971  top: 50%;
     972  left: 50%;
     973  transform: translate(-50%, -50%);
     974  /*change these sizes to fit into your project*/
     975  width: 100px;
     976  height: 100px;
     977}
     978.load hr {
     979  border: 0;
     980  margin: 0;
     981  width: 40%;
     982  height: 40%;
     983  position: absolute;
     984  border-radius: 50%;
     985  animation: spin 2s ease infinite;
     986  background: #FF5894;
     987  opacity: 1;
     988}
     989
     990.load :first-child {
     991  animation-delay: -1.5s;
     992}
     993.load :nth-child(2) {
     994  animation-delay: -1s;
     995}
     996.load :nth-child(3) {
     997  animation-delay: -0.5s;
     998}
     999
     1000@keyframes spin {
     1001  0%,
     1002  100% {
     1003    transform: translate(0);
     1004  }
     1005  25% {
     1006    transform: translate(160%);
     1007  }
     1008  50% {
     1009    transform: translate(160%, 160%);
     1010  }
     1011  75% {
     1012    transform: translate(0, 160%);
     1013  }
     1014}
     1015
     1016/*--------------------------------------------------------------
    9571017## Articale
    9581018--------------------------------------------------------------*/
Note: See TracChangeset for help on using the changeset viewer.