Changeset 258951
- Timestamp:
- 02/08/2025 03:54:12 AM (10 months ago)
- Location:
- beauty-cosmetic-store/0.0.9
- Files:
-
- 8 edited
- 1 copied
-
. (copied) (copied from beauty-cosmetic-store/0.0.8)
-
assets/js/theme-script.js (modified) (1 diff)
-
custom-option.php (modified) (1 diff)
-
functions.php (modified) (5 diffs)
-
header.php (modified) (1 diff)
-
inc/customizer.php (modified) (4 diffs)
-
languages/beauty-cosmetic-store.pot (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
-
style.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
beauty-cosmetic-store/0.0.9/assets/js/theme-script.js
r237275 r258951 117 117 window.addEventListener('load', (event) => { 118 118 jQuery(".loading").delay(2000).fadeOut("slow"); 119 jQuery(".loading2").delay(2000).fadeOut("slow"); 119 120 }); 120 121 -
beauty-cosmetic-store/0.0.9/custom-option.php
r255673 r258951 155 155 $beauty_cosmetic_store_theme_css .='}'; 156 156 } 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 176 176 $beauty_cosmetic_store_preloader_dot_1_color = get_theme_mod('beauty_cosmetic_store_preloader_dot_1_color'); 177 177 $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'); 178 179 $beauty_cosmetic_store_logo_max_height = get_theme_mod('beauty_cosmetic_store_logo_max_height'); 179 180 $beauty_cosmetic_store_scroll_bg_color = get_theme_mod('beauty_cosmetic_store_scroll_bg_color'); … … 186 187 } 187 188 188 if(get_theme_mod('beauty_cosmetic_store_preloader_bg_color') == '') {189 $beauty_cosmetic_store_preloader_bg_color = '#FF5894';190 }191 189 if(get_theme_mod('beauty_cosmetic_store_preloader_dot_1_color') == '') { 192 190 $beauty_cosmetic_store_preloader_dot_1_color = '#ffffff'; … … 199 197 max-height: '.esc_attr($beauty_cosmetic_store_logo_max_height).'px; 200 198 } 201 .loading {199 .loading, .loading2{ 202 200 background-color: '.esc_attr($beauty_cosmetic_store_preloader_bg_color).'; 203 }204 @keyframes loading {201 } 202 @keyframes loading { 205 203 0%, 206 204 100% { … … 213 211 } 214 212 } 213 .load hr { 214 background-color: '.esc_attr($beauty_cosmetic_store_preloader2_dot_color).'; 215 } 215 216 a#button{ 216 217 background-color: '.esc_attr($beauty_cosmetic_store_scroll_bg_color).'; … … 254 255 $choices = $setting->manager->get_control( $setting->id )->choices; 255 256 return ( array_key_exists( $input, $choices ) ? $input : $setting->default ); 257 } 258 259 function 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 266 function 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; 256 271 } 257 272 -
beauty-cosmetic-store/0.0.9/header.php
r251746 r258951 24 24 25 25 <?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 }?> 31 39 <?php } ?> 32 40 <div id="page" class="site"> -
beauty-cosmetic-store/0.0.9/inc/customizer.php
r255673 r258951 350 350 ))); 351 351 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 352 366 $wp_customize->add_setting( 'beauty_cosmetic_store_preloader_bg_color', array( 353 'default' => ' #FF5894',367 'default' => '', 354 368 'sanitize_callback' => 'sanitize_hex_color' 355 369 )); … … 367 381 'label' => esc_html__('Preloader First Dot Color','beauty-cosmetic-store'), 368 382 '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' 370 385 ))); 371 386 … … 377 392 'label' => esc_html__('Preloader Second Dot Color','beauty-cosmetic-store'), 378 393 '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' 380 407 ))); 381 408 … … 903 930 )); 904 931 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 905 975 $wp_customize->add_setting('beauty_cosmetic_store_image_box_1_image',array( 906 976 'default' => '', -
beauty-cosmetic-store/0.0.9/languages/beauty-cosmetic-store.pot
r255673 r258951 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Beauty Cosmetic Store 0.0. 8\n"5 "Project-Id-Version: Beauty Cosmetic Store 0.0.9\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/beauty-cosmetic-store\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-0 1-10T14:30:48+05:30\n"12 "POT-Creation-Date: 2025-02-06T00:32:20+05:30\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" … … 123 123 msgstr "" 124 124 125 #: functions.php:3 61125 #: functions.php:376 126 126 msgid "https://wordpress.org/support/theme/beauty-cosmetic-store/" 127 127 msgstr "" 128 128 129 #: functions.php:3 64129 #: functions.php:379 130 130 msgid "https://wordpress.org/support/theme/beauty-cosmetic-store/reviews/" 131 131 msgstr "" 132 132 133 #: functions.php:3 67133 #: functions.php:382 134 134 msgid "https://demo.themagnifico.net/beauty-cosmetic-store/" 135 135 msgstr "" 136 136 137 #: functions.php:3 70137 #: functions.php:385 138 138 msgid "https://www.themagnifico.net/products/cosmetic-store-wordpress-theme" 139 139 msgstr "" 140 140 141 #: functions.php:3 73141 #: functions.php:388 142 142 msgid "https://demo.themagnifico.net/eard/wathiqa/beauty-cosmetic-store-pro-doc/" 143 143 msgstr "" 144 144 145 #: functions.php:3 76145 #: functions.php:391 146 146 msgid "https://demo.themagnifico.net/eard/wathiqa/beauty-cosmetic-store-free-doc/" 147 147 msgstr "" 148 148 149 #: functions.php:3 84149 #: functions.php:399 150 150 msgid "Theme Options" 151 151 msgstr "" 152 152 153 #: functions.php:3 84153 #: functions.php:399 154 154 msgid " Theme Options" 155 155 msgstr "" 156 156 157 #: functions.php: 394157 #: functions.php:409 158 158 msgid "Welcome To " 159 159 msgstr "" 160 160 161 #: functions.php: 399162 #: functions.php:4 02161 #: functions.php:414 162 #: functions.php:417 163 163 msgid "Contact Support" 164 164 msgstr "" 165 165 166 #: functions.php:4 00166 #: functions.php:415 167 167 msgid "Thank you for trying Beauty Cosmetic Store , feel free to contact us for any support regarding our theme." 168 168 msgstr "" 169 169 170 #: functions.php:4 08170 #: functions.php:423 171 171 msgid "Checkout Premium" 172 172 msgstr "" 173 173 174 #: functions.php:4 09174 #: functions.php:424 175 175 msgid "Our premium theme comes with extended features like demo content import , responsive layouts etc." 176 176 msgstr "" 177 177 178 #: functions.php:4 11178 #: functions.php:426 179 179 msgid "Get Premium" 180 180 msgstr "" 181 181 182 #: functions.php:4 17183 #: functions.php:4 20182 #: functions.php:432 183 #: functions.php:435 184 184 msgid "Review" 185 185 msgstr "" 186 186 187 #: functions.php:4 18187 #: functions.php:433 188 188 msgid "If You love Beauty Cosmetic Store theme then we would appreciate your review about our theme." 189 189 msgstr "" 190 190 191 #: functions.php:4 26192 #: functions.php:4 29191 #: functions.php:441 192 #: functions.php:444 193 193 msgid "Free Documentation" 194 194 msgstr "" 195 195 196 #: functions.php:4 27196 #: functions.php:442 197 197 msgid "Our guide is available if you require any help configuring and setting up the theme. Easy and quick way to setup the theme." 198 198 msgstr "" 199 199 200 #: functions.php:4 37200 #: functions.php:452 201 201 msgid "Free Vs Premium" 202 202 msgstr "" 203 203 204 #: functions.php:4 40204 #: functions.php:455 205 205 msgid "Checkout Documentation" 206 206 msgstr "" 207 207 208 #: functions.php:4 43208 #: functions.php:458 209 209 msgid "View Theme Demo" 210 210 msgstr "" 211 211 212 #: functions.php:4 50212 #: functions.php:465 213 213 msgid "Theme Feature" 214 214 msgstr "" 215 215 216 #: functions.php:4 51216 #: functions.php:466 217 217 msgid "Basic Version" 218 218 msgstr "" 219 219 220 #: functions.php:4 52220 #: functions.php:467 221 221 msgid "Premium Version" 222 222 msgstr "" 223 223 224 #: functions.php:4 58224 #: functions.php:473 225 225 msgid "Header Background Color" 226 226 msgstr "" 227 227 228 #: functions.php:4 63228 #: functions.php:478 229 229 msgid "Custom Navigation Logo Or Text" 230 230 msgstr "" 231 231 232 #: functions.php:4 68232 #: functions.php:483 233 233 msgid "Hide Logo Text" 234 234 msgstr "" 235 235 236 #: functions.php:4 74236 #: functions.php:489 237 237 msgid "Premium Support" 238 238 msgstr "" 239 239 240 #: functions.php:4 79240 #: functions.php:494 241 241 msgid "Fully SEO Optimized" 242 242 msgstr "" 243 243 244 #: functions.php:4 84244 #: functions.php:499 245 245 msgid "Recent Posts Widget" 246 246 msgstr "" 247 247 248 #: functions.php: 490248 #: functions.php:505 249 249 msgid "Easy Google Fonts" 250 250 msgstr "" 251 251 252 #: functions.php: 495252 #: functions.php:510 253 253 msgid "Pagespeed Plugin" 254 254 msgstr "" 255 255 256 #: functions.php:5 00256 #: functions.php:515 257 257 msgid "Only Show Header Image On Front Page" 258 258 msgstr "" 259 259 260 #: functions.php:5 05260 #: functions.php:520 261 261 msgid "Show Header Everywhere" 262 262 msgstr "" 263 263 264 #: functions.php:5 10264 #: functions.php:525 265 265 msgid "Custom Text On Header Image" 266 266 msgstr "" 267 267 268 #: functions.php:5 15268 #: functions.php:530 269 269 msgid "Full Width (Hide Sidebar)" 270 270 msgstr "" 271 271 272 #: functions.php:5 20272 #: functions.php:535 273 273 msgid "Only Show Upper Widgets On Front Page" 274 274 msgstr "" 275 275 276 #: functions.php:5 25276 #: functions.php:540 277 277 msgid "Replace Copyright Text" 278 278 msgstr "" 279 279 280 #: functions.php:5 30280 #: functions.php:545 281 281 msgid "Customize Upper Widgets Colors" 282 282 msgstr "" 283 283 284 #: functions.php:5 35284 #: functions.php:550 285 285 msgid "Customize Navigation Color" 286 286 msgstr "" 287 287 288 #: functions.php:5 40288 #: functions.php:555 289 289 msgid "Customize Post/Page Color" 290 290 msgstr "" 291 291 292 #: functions.php:5 45292 #: functions.php:560 293 293 msgid "Customize Blog Feed Color" 294 294 msgstr "" 295 295 296 #: functions.php:5 50296 #: functions.php:565 297 297 msgid "Customize Footer Color" 298 298 msgstr "" 299 299 300 #: functions.php:5 55300 #: functions.php:570 301 301 msgid "Customize Sidebar Color" 302 302 msgstr "" 303 303 304 #: functions.php:5 60304 #: functions.php:575 305 305 msgid "Customize Background Color" 306 306 msgstr "" 307 307 308 #: functions.php:5 65308 #: functions.php:580 309 309 msgid "Importable Demo Content\t" 310 310 msgstr "" 311 311 312 #: functions.php:5 73312 #: functions.php:588 313 313 msgid "Go Premium" 314 314 msgstr "" 315 315 316 #: functions.php:6 01316 #: functions.php:616 317 317 msgid "Thank You For Choosing " 318 318 msgstr "" 319 319 320 #: functions.php:6 02320 #: functions.php:617 321 321 msgid "Get Started With Theme By Clicking On Getting Started." 322 322 msgstr "" 323 323 324 #: functions.php:6 03324 #: functions.php:618 325 325 msgid "Get started" 326 326 msgstr "" 327 327 328 #: functions.php:6 04328 #: functions.php:619 329 329 msgid "Documentation" 330 330 msgstr "" 331 331 332 #: functions.php:6 07332 #: functions.php:622 333 333 msgid "View Demo" 334 334 msgstr "" 335 335 336 #: header.php: 34336 #: header.php:42 337 337 msgid "Skip to content" 338 338 msgstr "" … … 832 832 msgstr "" 833 833 834 #: inc/customizer.php:357 834 #: inc/customizer.php:358 835 msgid "Preloader Type" 836 msgstr "" 837 838 #: inc/customizer.php:361 839 msgid "Preloader 1" 840 msgstr "" 841 842 #: inc/customizer.php:362 843 msgid "Preloader 2" 844 msgstr "" 845 846 #: inc/customizer.php:371 835 847 msgid "Preloader Background Color" 836 848 msgstr "" 837 849 838 #: inc/customizer.php:3 67850 #: inc/customizer.php:381 839 851 msgid "Preloader First Dot Color" 840 852 msgstr "" 841 853 842 #: inc/customizer.php:3 77854 #: inc/customizer.php:392 843 855 msgid "Preloader Second Dot Color" 844 856 msgstr "" 845 857 846 #: inc/customizer.php:387 858 #: inc/customizer.php:403 859 msgid "Preloader Dot Color" 860 msgstr "" 861 862 #: inc/customizer.php:414 847 863 msgid "Show Theme Scroll To Top" 848 864 msgstr "" 849 865 850 #: inc/customizer.php:4 01851 #: inc/customizer.php: 885866 #: inc/customizer.php:428 867 #: inc/customizer.php:912 852 868 msgid "Right" 853 869 msgstr "" 854 870 855 #: inc/customizer.php:402 871 #: inc/customizer.php:429 872 #: inc/customizer.php:910 873 msgid "Left" 874 msgstr "" 875 876 #: inc/customizer.php:430 877 #: inc/customizer.php:911 878 msgid "Center" 879 msgstr "" 880 881 #: inc/customizer.php:439 882 msgid "Scroll Top Background Color" 883 msgstr "" 884 885 #: inc/customizer.php:449 886 msgid "Scroll Top Color" 887 msgstr "" 888 889 #: inc/customizer.php:459 890 msgid "Scroll Top Font Size" 891 msgstr "" 892 893 #: inc/customizer.php:460 894 msgid "Put in px" 895 msgstr "" 896 897 #: inc/customizer.php:470 898 msgid "Scroll Top Border Radius" 899 msgstr "" 900 901 #: inc/customizer.php:471 902 msgid "Put in %" 903 msgstr "" 904 905 #: inc/customizer.php:484 906 msgid "Product per row" 907 msgstr "" 908 909 #: inc/customizer.php:499 910 msgid "Product per page" 911 msgstr "" 912 913 #: inc/customizer.php:510 914 msgid "Hide Shop Page Sidebar" 915 msgstr "" 916 917 #: inc/customizer.php:522 918 msgid "Woocommerce Shop Page Sidebar" 919 msgstr "" 920 921 #. Template Name of the theme 922 #: inc/customizer.php:525 923 #: inc/customizer.php:551 924 msgid "Left Sidebar" 925 msgstr "" 926 927 #. Template Name of the theme 928 #: inc/customizer.php:526 929 #: inc/customizer.php:552 930 msgid "Right Sidebar" 931 msgstr "" 932 933 #: inc/customizer.php:536 934 msgid "Hide Single Product Page Sidebar" 935 msgstr "" 936 937 #: inc/customizer.php:548 938 msgid "Woocommerce Single Product Page Sidebar" 939 msgstr "" 940 941 #: inc/customizer.php:558 942 msgid "Social Icons" 943 msgstr "" 944 945 #: inc/customizer.php:566 946 msgid "Facebook Icon " 947 msgstr "" 948 949 #: inc/customizer.php:571 950 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" 951 msgstr "" 952 953 #: inc/customizer.php:579 954 msgid "Facebook Link " 955 msgstr "" 956 957 #: inc/customizer.php:590 958 msgid "Twitter Icon " 959 msgstr "" 960 961 #: inc/customizer.php:595 962 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" 963 msgstr "" 964 965 #: inc/customizer.php:603 966 msgid "Twitter Link " 967 msgstr "" 968 969 #: inc/customizer.php:614 970 msgid "Intagram Icon " 971 msgstr "" 972 973 #: inc/customizer.php:619 974 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" 975 msgstr "" 976 977 #: inc/customizer.php:627 978 msgid "Intagram Link " 979 msgstr "" 980 981 #: inc/customizer.php:638 982 msgid "Linkedin Icon " 983 msgstr "" 984 985 #: inc/customizer.php:643 986 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" 987 msgstr "" 988 989 #: inc/customizer.php:651 990 msgid "Linkedin Link " 991 msgstr "" 992 993 #: inc/customizer.php:662 994 msgid "Pinterest Icon " 995 msgstr "" 996 997 #: inc/customizer.php:667 998 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" 999 msgstr "" 1000 1001 #: inc/customizer.php:675 1002 msgid "Pinterest Link " 1003 msgstr "" 1004 1005 #: inc/customizer.php:683 1006 msgid "Top Header Option" 1007 msgstr "" 1008 1009 #: inc/customizer.php:691 1010 msgid "Topbar Text" 1011 msgstr "" 1012 1013 #: inc/customizer.php:702 1014 msgid "Topbar Button Url " 1015 msgstr "" 1016 1017 #: inc/customizer.php:713 1018 msgid "Phone Text" 1019 msgstr "" 1020 1021 #: inc/customizer.php:724 1022 msgid "Phone Number" 1023 msgstr "" 1024 1025 #: inc/customizer.php:732 1026 msgid "Header Option" 1027 msgstr "" 1028 1029 #: inc/customizer.php:740 1030 msgid "Sell Button Text" 1031 msgstr "" 1032 1033 #: inc/customizer.php:751 1034 msgid "Sell Button url" 1035 msgstr "" 1036 1037 #: inc/customizer.php:762 1038 msgid "Tracking Button Text" 1039 msgstr "" 1040 1041 #: inc/customizer.php:773 1042 msgid "Tracking Button url" 1043 msgstr "" 1044 1045 #: inc/customizer.php:784 1046 msgid "Viewed Button Text" 1047 msgstr "" 1048 1049 #: inc/customizer.php:795 1050 msgid "Viewed Button url" 1051 msgstr "" 1052 1053 #: inc/customizer.php:803 1054 msgid "Popular Categories Option" 1055 msgstr "" 1056 1057 #: inc/customizer.php:811 1058 msgid "Show Popular Categories" 1059 msgstr "" 1060 1061 #: inc/customizer.php:822 1062 msgid "Short Heading" 1063 msgstr "" 1064 1065 #: inc/customizer.php:830 1066 msgid "Menus Settings" 1067 msgstr "" 1068 1069 #: inc/customizer.php:838 1070 msgid "Menu Font Size" 1071 msgstr "" 1072 1073 #: inc/customizer.php:849 1074 msgid "Menu Text Transform" 1075 msgstr "" 1076 1077 #: inc/customizer.php:851 1078 msgid "Uppercase" 1079 msgstr "" 1080 1081 #: inc/customizer.php:852 1082 msgid "Capitalize" 1083 msgstr "" 1084 1085 #: inc/customizer.php:853 1086 msgid "Lowercase" 1087 msgstr "" 1088 1089 #: inc/customizer.php:864 1090 msgid "Menu Font Weight" 1091 msgstr "" 1092 1093 #: inc/customizer.php:875 1094 msgid "Slider Settings" 1095 msgstr "" 1096 856 1097 #: inc/customizer.php:883 857 msgid "Left"858 msgstr ""859 860 #: inc/customizer.php:403861 #: inc/customizer.php:884862 msgid "Center"863 msgstr ""864 865 #: inc/customizer.php:412866 msgid "Scroll Top Background Color"867 msgstr ""868 869 #: inc/customizer.php:422870 msgid "Scroll Top Color"871 msgstr ""872 873 #: inc/customizer.php:432874 msgid "Scroll Top Font Size"875 msgstr ""876 877 #: inc/customizer.php:433878 msgid "Put in px"879 msgstr ""880 881 #: inc/customizer.php:443882 msgid "Scroll Top Border Radius"883 msgstr ""884 885 #: inc/customizer.php:444886 msgid "Put in %"887 msgstr ""888 889 #: inc/customizer.php:457890 msgid "Product per row"891 msgstr ""892 893 #: inc/customizer.php:472894 msgid "Product per page"895 msgstr ""896 897 #: inc/customizer.php:483898 msgid "Hide Shop Page Sidebar"899 msgstr ""900 901 #: inc/customizer.php:495902 msgid "Woocommerce Shop Page Sidebar"903 msgstr ""904 905 #. Template Name of the theme906 #: inc/customizer.php:498907 #: inc/customizer.php:524908 msgid "Left Sidebar"909 msgstr ""910 911 #. Template Name of the theme912 #: inc/customizer.php:499913 #: inc/customizer.php:525914 msgid "Right Sidebar"915 msgstr ""916 917 #: inc/customizer.php:509918 msgid "Hide Single Product Page Sidebar"919 msgstr ""920 921 #: inc/customizer.php:521922 msgid "Woocommerce Single Product Page Sidebar"923 msgstr ""924 925 #: inc/customizer.php:531926 msgid "Social Icons"927 msgstr ""928 929 #: inc/customizer.php:539930 msgid "Facebook Icon "931 msgstr ""932 933 #: inc/customizer.php:544934 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:552938 msgid "Facebook Link "939 msgstr ""940 941 #: inc/customizer.php:563942 msgid "Twitter Icon "943 msgstr ""944 945 #: inc/customizer.php:568946 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:576950 msgid "Twitter Link "951 msgstr ""952 953 #: inc/customizer.php:587954 msgid "Intagram Icon "955 msgstr ""956 957 #: inc/customizer.php:592958 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:600962 msgid "Intagram Link "963 msgstr ""964 965 #: inc/customizer.php:611966 msgid "Linkedin Icon "967 msgstr ""968 969 #: inc/customizer.php:616970 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:624974 msgid "Linkedin Link "975 msgstr ""976 977 #: inc/customizer.php:635978 msgid "Pinterest Icon "979 msgstr ""980 981 #: inc/customizer.php:640982 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:648986 msgid "Pinterest Link "987 msgstr ""988 989 #: inc/customizer.php:656990 msgid "Top Header Option"991 msgstr ""992 993 #: inc/customizer.php:664994 msgid "Topbar Text"995 msgstr ""996 997 #: inc/customizer.php:675998 msgid "Topbar Button Url "999 msgstr ""1000 1001 #: inc/customizer.php:6861002 msgid "Phone Text"1003 msgstr ""1004 1005 #: inc/customizer.php:6971006 msgid "Phone Number"1007 msgstr ""1008 1009 #: inc/customizer.php:7051010 msgid "Header Option"1011 msgstr ""1012 1013 #: inc/customizer.php:7131014 msgid "Sell Button Text"1015 msgstr ""1016 1017 #: inc/customizer.php:7241018 msgid "Sell Button url"1019 msgstr ""1020 1021 #: inc/customizer.php:7351022 msgid "Tracking Button Text"1023 msgstr ""1024 1025 #: inc/customizer.php:7461026 msgid "Tracking Button url"1027 msgstr ""1028 1029 #: inc/customizer.php:7571030 msgid "Viewed Button Text"1031 msgstr ""1032 1033 #: inc/customizer.php:7681034 msgid "Viewed Button url"1035 msgstr ""1036 1037 #: inc/customizer.php:7761038 msgid "Popular Categories Option"1039 msgstr ""1040 1041 #: inc/customizer.php:7841042 msgid "Show Popular Categories"1043 msgstr ""1044 1045 #: inc/customizer.php:7951046 msgid "Short Heading"1047 msgstr ""1048 1049 #: inc/customizer.php:8031050 msgid "Menus Settings"1051 msgstr ""1052 1053 #: inc/customizer.php:8111054 msgid "Menu Font Size"1055 msgstr ""1056 1057 #: inc/customizer.php:8221058 msgid "Menu Text Transform"1059 msgstr ""1060 1061 #: inc/customizer.php:8241062 msgid "Uppercase"1063 msgstr ""1064 1065 #: inc/customizer.php:8251066 msgid "Capitalize"1067 msgstr ""1068 1069 #: inc/customizer.php:8261070 msgid "Lowercase"1071 msgstr ""1072 1073 #: inc/customizer.php:8371074 msgid "Menu Font Weight"1075 msgstr ""1076 1077 #: inc/customizer.php:8481078 msgid "Slider Settings"1079 msgstr ""1080 1081 #: inc/customizer.php:8561082 1098 msgid "Show Slider" 1083 1099 msgstr "" 1084 1100 1085 #: inc/customizer.php:8 691101 #: inc/customizer.php:896 1086 1102 msgid "Select Slide Page" 1087 1103 msgstr "" 1088 1104 1089 #: inc/customizer.php: 8811105 #: inc/customizer.php:908 1090 1106 msgid "Slider Content Layout" 1091 1107 msgstr "" 1092 1108 1093 #: inc/customizer.php: 8951109 #: inc/customizer.php:922 1094 1110 msgid "Slider Excerpt Length" 1095 1111 msgstr "" 1096 1112 1097 #: inc/customizer.php:911 1113 #: inc/customizer.php:937 1114 msgid "Show Image Opacity" 1115 msgstr "" 1116 1117 #: inc/customizer.php:947 1118 msgid "Slider Image Opacity Color" 1119 msgstr "" 1120 1121 #: inc/customizer.php:958 1122 msgid "Slider Image Opacity" 1123 msgstr "" 1124 1125 #: inc/customizer.php:981 1098 1126 msgid "Box 1 Image " 1099 1127 msgstr "" 1100 1128 1101 #: inc/customizer.php:9 121102 #: inc/customizer.php: 9571103 #: inc/customizer.php:10 021104 #: inc/customizer.php:1 0361129 #: inc/customizer.php:982 1130 #: inc/customizer.php:1027 1131 #: inc/customizer.php:1072 1132 #: inc/customizer.php:1106 1105 1133 msgid "Dimension 500 x 350 " 1106 1134 msgstr "" 1107 1135 1108 #: inc/customizer.php:9 221136 #: inc/customizer.php:992 1109 1137 msgid "Box 1 Heading" 1110 1138 msgstr "" 1111 1139 1112 #: inc/customizer.php: 9331140 #: inc/customizer.php:1003 1113 1141 msgid "Box 1 Text" 1114 1142 msgstr "" 1115 1143 1116 #: inc/customizer.php: 9441117 #: inc/customizer.php: 9891144 #: inc/customizer.php:1014 1145 #: inc/customizer.php:1059 1118 1146 msgid "Box 1 Button Url" 1119 1147 msgstr "" 1120 1148 1121 #: inc/customizer.php: 9561149 #: inc/customizer.php:1026 1122 1150 msgid "Box 2 Image " 1123 1151 msgstr "" 1124 1152 1125 #: inc/customizer.php: 9671153 #: inc/customizer.php:1037 1126 1154 msgid "Box 2 Heading" 1127 1155 msgstr "" 1128 1156 1129 #: inc/customizer.php: 9781157 #: inc/customizer.php:1048 1130 1158 msgid "Box 2 Text" 1131 1159 msgstr "" 1132 1160 1133 #: inc/customizer.php:10 011161 #: inc/customizer.php:1071 1134 1162 msgid "Box 3 Image " 1135 1163 msgstr "" 1136 1164 1137 #: inc/customizer.php:10 121165 #: inc/customizer.php:1082 1138 1166 msgid "Box 3 Heading" 1139 1167 msgstr "" 1140 1168 1141 #: inc/customizer.php:10 231169 #: inc/customizer.php:1093 1142 1170 msgid "Box 3 Text" 1143 1171 msgstr "" 1144 1172 1145 #: inc/customizer.php:1 0351173 #: inc/customizer.php:1105 1146 1174 msgid "Box 4 Image " 1147 1175 msgstr "" 1148 1176 1149 #: inc/customizer.php:1 0461177 #: inc/customizer.php:1116 1150 1178 msgid "Box 4 Heading" 1151 1179 msgstr "" 1152 1180 1153 #: inc/customizer.php:1 0571181 #: inc/customizer.php:1127 1154 1182 msgid "Box 4 Text" 1155 1183 msgstr "" 1156 1184 1157 #: inc/customizer.php:1 0681185 #: inc/customizer.php:1138 1158 1186 msgid "Box 4 Button Url" 1159 1187 msgstr "" 1160 1188 1161 #: inc/customizer.php:1 0761189 #: inc/customizer.php:1146 1162 1190 msgid "Post Settings" 1163 1191 msgstr "" 1164 1192 1165 #: inc/customizer.php:1 0861193 #: inc/customizer.php:1156 1166 1194 msgid "Enable Post Page Title" 1167 1195 msgstr "" 1168 1196 1169 #: inc/customizer.php:1 0881197 #: inc/customizer.php:1158 1170 1198 msgid "Check this box to enable title on post page." 1171 1199 msgstr "" 1172 1200 1173 #: inc/customizer.php:1 0971201 #: inc/customizer.php:1167 1174 1202 msgid "Enable Post Page Meta" 1175 1203 msgstr "" 1176 1204 1177 #: inc/customizer.php:1 0991205 #: inc/customizer.php:1169 1178 1206 msgid "Check this box to enable meta on post page." 1179 1207 msgstr "" 1180 1208 1181 #: inc/customizer.php:11 081209 #: inc/customizer.php:1178 1182 1210 msgid "Enable Post Page Thumbnail" 1183 1211 msgstr "" 1184 1212 1185 #: inc/customizer.php:11 101213 #: inc/customizer.php:1180 1186 1214 msgid "Check this box to enable thumbnail on post page." 1187 1215 msgstr "" 1188 1216 1189 #: inc/customizer.php:11 181217 #: inc/customizer.php:1188 1190 1218 msgid "Post Page Excerpt Length" 1191 1219 msgstr "" 1192 1220 1193 #: inc/customizer.php:1 1341221 #: inc/customizer.php:1204 1194 1222 msgid "Post Page Excerpt Suffix" 1195 1223 msgstr "" 1196 1224 1197 #: inc/customizer.php:1 1361225 #: inc/customizer.php:1206 1198 1226 msgid "For Ex. [...], etc" 1199 1227 msgstr "" 1200 1228 1201 #: inc/customizer.php:1 1451229 #: inc/customizer.php:1215 1202 1230 msgid "Enable Post Page Pagination" 1203 1231 msgstr "" 1204 1232 1205 #: inc/customizer.php:1 1471233 #: inc/customizer.php:1217 1206 1234 msgid "Check this box to enable pagination on post page." 1207 1235 msgstr "" 1208 1236 1209 #: inc/customizer.php:1 1521237 #: inc/customizer.php:1222 1210 1238 msgid "Footer" 1211 1239 msgstr "" 1212 1240 1213 #: inc/customizer.php:1 1591241 #: inc/customizer.php:1229 1214 1242 msgid "Replace the footer text" 1215 1243 msgstr "" 1216 1244 1217 #: inc/customizer.php:1 1711245 #: inc/customizer.php:1241 1218 1246 msgid "Show / Hide Copyright" 1219 1247 msgstr "" 1220 1248 1221 #: inc/customizer.php:1 1821249 #: inc/customizer.php:1252 1222 1250 msgid "Customizer Options" 1223 1251 msgstr "" -
beauty-cosmetic-store/0.0.9/readme.txt
r255673 r258951 4 4 Tested up to: 6.6 5 5 Requires PHP: 7.2 6 Stable tag: 0.0. 86 Stable tag: 0.0.9 7 7 License: GNU General Public License v3.0 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 187 187 * Added slider excerpt length option in customizer. 188 188 * 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 6 6 Author URI: https://www.themagnifico.net/ 7 7 Description: 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. 88 Version: 0.0.9 9 9 Requires at least: 5.0 10 10 Tested up to: 6.6 … … 955 955 956 956 /*-------------------------------------------------------------- 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 /*-------------------------------------------------------------- 957 1017 ## Articale 958 1018 --------------------------------------------------------------*/
Note: See TracChangeset
for help on using the changeset viewer.