Changeset 299263
- Timestamp:
- 11/19/2025 04:27:51 PM (5 days ago)
- Location:
- rehab-center/0.2.6
- Files:
-
- 1 added
- 9 edited
- 1 copied
-
. (copied) (copied from rehab-center/0.2.5)
-
404.php (modified) (1 diff)
-
css/addon.css (modified) (3 diffs)
-
css/default.css (modified) (2 diffs)
-
functions.php (modified) (1 diff)
-
images/image_1.webp (added)
-
inc/color-scheme/custom-color-control.php (modified) (2 diffs)
-
inc/customizer.php (modified) (5 diffs)
-
languages/rehab-center.pot (modified) (9 diffs)
-
readme.txt (modified) (2 diffs)
-
style.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rehab-center/0.2.6/404.php
r279446 r299263 20 20 <?php echo esc_html(get_theme_mod('rehab_center_page_not_found_content',__( 'Looks like you have taken a wrong turn.....Don\'t worry... it happens to the best of us.', 'rehab-center' ))); ?> 21 21 </p> 22 <?php if( get_theme_mod('rehab_center_page_not_found_btn','Homepage') != ''){ ?> 23 <div class="not-found-btn mt-3 mb-4 mx-0"> 24 <a href="<?php echo esc_url( home_url() ); ?>" class="button py-2 px-3"><?php echo esc_html(get_theme_mod('rehab_center_page_not_found_btn',__('Homepage','rehab-center')));?><span class="screen-reader-text"><?php echo esc_html(get_theme_mod('rehab_center_page_not_found_btn',__('Homepage','rehab-center')));?></span></a> 25 </div> 26 <?php } ?> 22 27 </div> 23 28 </section> -
rehab-center/0.2.6/css/addon.css
r294512 r299263 519 519 .getstrat.updated.notice.notice-success.is-dismissible.notice-get-started-class{ 520 520 display: flex !important; 521 align-items: center; 521 522 flex-wrap: wrap; 522 523 padding: 20px; … … 551 552 } 552 553 .notice-get-started-class .admin-image img{ 553 height: 154px;554 height: 240px; 554 555 width: 100%; 555 556 max-width: 320px; … … 559 560 border: 2px solid #ddd; 560 561 border-radius: 4px; 562 } 563 .notice-get-started-class .admin-bundle-image img{ 564 height: 280px; 561 565 } 562 566 .notice-get-started-class .button-group.button-hero .button, .wp-core-ui .button.button-hero { -
rehab-center/0.2.6/css/default.css
r291684 r299263 148 148 .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-link .wc-block-grid__product-image img{ 149 149 height: 300px; 150 object-fit: co ntain;150 object-fit: cover; 151 151 } 152 152 .woocommerce ul.products li.product, … … 667 667 margin: 30px 0 40px 0; 668 668 } 669 .error404 .page-not-found .not-found-btn{ 670 background-color: var(--first-theme-color); 671 display: inline-flex; 672 padding: 5px; 673 border-radius: 5px; 674 } 675 .error404 .page-not-found .not-found-btn:hover{ 676 background-color: var(--second-theme-color); 677 } 678 .error404 .page-not-found .not-found-btn a{ 679 color: #fff; 680 text-decoration: none; 681 font-size: 16px; 682 font-weight: 600; 683 } -
rehab-center/0.2.6/functions.php
r294512 r299263 334 334 </div> 335 335 </div> 336 <div class="admin-bundle-image"> 337 <a href="<?php echo esc_url( REHAB_CENTER_BUNDLE_PAGE ); ?>" target="_blank"><img src="<?php echo esc_url(get_stylesheet_directory_uri()) .'/images/image_1.webp'; ?>" /></a> 338 </div> 336 339 </div> 337 340 <?php } -
rehab-center/0.2.6/inc/color-scheme/custom-color-control.php
r291684 r299263 81 81 } 82 82 83 /*--------------------------- Blog Post Page Image Box Shadow -------------------*/84 85 $rehab_center_blog_post_page_image_box_shadow = get_theme_mod('rehab_center_blog_post_page_image_box_shadow',0);86 if($rehab_center_blog_post_page_image_box_shadow != false){87 $rehab_center_color_scheme_css .='.blog-post img{';88 $rehab_center_color_scheme_css .='box-shadow: '.esc_attr($rehab_center_blog_post_page_image_box_shadow).'px '.esc_attr($rehab_center_blog_post_page_image_box_shadow).'px '.esc_attr($rehab_center_blog_post_page_image_box_shadow).'px #cccccc;';89 $rehab_center_color_scheme_css .='}';90 }91 92 /*--------------------------- Single Post Page Image Box Shadow -------------------*/93 94 $rehab_center_single_post_page_image_box_shadow = get_theme_mod('rehab_center_single_post_page_image_box_shadow',0);95 if($rehab_center_single_post_page_image_box_shadow != false){96 $rehab_center_color_scheme_css .='.single-post img{';97 $rehab_center_color_scheme_css .='box-shadow: '.esc_attr($rehab_center_single_post_page_image_box_shadow).'px '.esc_attr($rehab_center_single_post_page_image_box_shadow).'px '.esc_attr($rehab_center_single_post_page_image_box_shadow).'px #cccccc;';98 $rehab_center_color_scheme_css .='}';99 }100 101 83 /*--------------------------- Shop page pagination -------------------*/ 102 84 … … 119 101 /*--------------------------- Scroll to Top Button Shape -------------------*/ 120 102 121 $rehab_center_scroll_top_shape = get_theme_mod('rehab_center_scroll_top_shape', 'circle'); 122 if($rehab_center_scroll_top_shape == 'box' ){ 123 $rehab_center_color_scheme_css .='#button{'; 124 $rehab_center_color_scheme_css .=' border-radius: 0%'; 125 $rehab_center_color_scheme_css .='}'; 126 }elseif($rehab_center_scroll_top_shape == 'curved' ){ 127 $rehab_center_color_scheme_css .='#button{'; 128 $rehab_center_color_scheme_css .=' border-radius: 20%'; 129 $rehab_center_color_scheme_css .='}'; 130 }elseif($rehab_center_scroll_top_shape == 'circle' ){ 131 $rehab_center_color_scheme_css .='#button{'; 132 $rehab_center_color_scheme_css .=' border-radius: 50%;'; 133 $rehab_center_color_scheme_css .='}'; 134 } 103 $rehab_center_scroll_top_shape = get_theme_mod('rehab_center_scroll_top_shape', 'circle'); 104 if($rehab_center_scroll_top_shape == 'box' ){ 105 $rehab_center_color_scheme_css .='#button{'; 106 $rehab_center_color_scheme_css .=' border-radius: 0%'; 107 $rehab_center_color_scheme_css .='}'; 108 }elseif($rehab_center_scroll_top_shape == 'curved' ){ 109 $rehab_center_color_scheme_css .='#button{'; 110 $rehab_center_color_scheme_css .=' border-radius: 20%'; 111 $rehab_center_color_scheme_css .='}'; 112 }elseif($rehab_center_scroll_top_shape == 'circle' ){ 113 $rehab_center_color_scheme_css .='#button{'; 114 $rehab_center_color_scheme_css .=' border-radius: 50%;'; 115 $rehab_center_color_scheme_css .='}'; 116 } 117 118 /*--------------------------- Menu Typography -------------------*/ 119 120 $rehab_center_theme_lay = get_theme_mod( 'rehab_center_menu_text_transform','Capitalize'); 121 if($rehab_center_theme_lay == 'Uppercase'){ 122 $rehab_center_color_scheme_css .='.main-nav a{'; 123 $rehab_center_color_scheme_css .='text-transform: uppercase;'; 124 $rehab_center_color_scheme_css .='}'; 125 }else if($rehab_center_theme_lay == 'Lowercase'){ 126 $rehab_center_color_scheme_css .='.main-nav a{'; 127 $rehab_center_color_scheme_css .='text-transform: lowercase;'; 128 $rehab_center_color_scheme_css .='}'; 129 } 130 else if($rehab_center_theme_lay == 'Capitalize'){ 131 $rehab_center_color_scheme_css .='.main-nav a{'; 132 $rehab_center_color_scheme_css .='text-transform: capitalize;'; 133 $rehab_center_color_scheme_css .='}'; 134 } -
rehab-center/0.2.6/inc/customizer.php
r291684 r299263 334 334 )); 335 335 336 // Menu Text Transform 337 $wp_customize->add_setting( 'rehab_center_menu_text_transform', array( 338 'default' => 'Capitalize', 339 'transport' => 'refresh', 340 'sanitize_callback' => 'rehab_center_sanitize_choices' 341 )); 342 343 $wp_customize->add_control( 'rehab_center_menu_text_transform', array( 344 'label' => __( 'Menu Text Transform', 'rehab-center' ), 345 'section' => 'rehab_center_topbar_section', 346 'type' => 'select', 347 'choices' => array( 348 'None' => __( 'None', 'rehab-center' ), 349 'Capitalize' => __( 'Capitalize', 'rehab-center' ), 350 'Uppercase' => __( 'Uppercase', 'rehab-center' ), 351 'Lowercase' => __( 'Lowercase', 'rehab-center' ), 352 ), 353 )); 354 336 355 $wp_customize->add_setting( 'rehab_center_topbar_settings_upgraded_features',array( 337 356 'sanitize_callback' => 'sanitize_text_field' … … 721 740 )); 722 741 723 $wp_customize->add_setting( 'rehab_center_blog_post_page_image_box_shadow', array(724 'default' => '0',725 'transport' => 'refresh',726 'sanitize_callback' => 'rehab_center_sanitize_integer'727 ) );728 $wp_customize->add_control(new Rehab_Center_Slider_Custom_Control( $wp_customize, 'rehab_center_blog_post_page_image_box_shadow',array(729 'label' => esc_html__('Blog Page Image Box Shadow','rehab-center'),730 'section'=> 'rehab_center_blog_post_settings',731 'settings'=>'rehab_center_blog_post_page_image_box_shadow',732 'input_attrs' => array(733 'step' => 1,734 'min' => 0,735 'max' => 100,736 ),737 )));738 739 742 $wp_customize->add_setting( 'rehab_center_blog_post_settings_upgraded_features',array( 740 743 'sanitize_callback' => 'sanitize_text_field' … … 753 756 'panel' => 'rehab_center_panel_area' 754 757 )); 755 756 $wp_customize->add_setting( 'rehab_center_single_page_breadcrumb',array(757 'default' => true,758 'sanitize_callback' => 'rehab_center_sanitize_checkbox',759 ));760 $wp_customize->add_control('rehab_center_single_page_breadcrumb',array(761 'section' => 'rehab_center_single_post_settings',762 'label' => __( 'Check To Enable Breadcrumb','rehab-center' ),763 'type' => 'checkbox'764 ));765 758 766 759 $wp_customize->add_setting('rehab_center_single_post_date',array( … … 829 822 ), 830 823 )); 831 832 $wp_customize->add_setting( 'rehab_center_single_post_page_image_box_shadow', array(833 'default' => '0',834 'transport' => 'refresh',835 'sanitize_callback' => 'rehab_center_sanitize_integer'836 ) );837 $wp_customize->add_control(new Rehab_Center_Slider_Custom_Control( $wp_customize, 'rehab_center_single_post_page_image_box_shadow',array(838 'label' => esc_html__('Single Post Image Box Shadow','rehab-center'),839 'section'=> 'rehab_center_single_post_settings',840 'settings'=>'rehab_center_single_post_page_image_box_shadow',841 'input_attrs' => array(842 'step' => 1,843 'min' => 0,844 'max' => 100,845 ),846 )));847 824 848 825 $wp_customize->add_setting( 'rehab_center_single_post_settings_upgraded_features',array( … … 918 895 'section'=> 'rehab_center_page_not_found', 919 896 'type'=> 'text' 897 )); 898 899 $wp_customize->add_setting('rehab_center_page_not_found_btn',array( 900 'default' => 'Homepage', 901 'sanitize_callback' => 'sanitize_text_field', 902 'capability' => 'edit_theme_options', 903 )); 904 $wp_customize->add_control( 'rehab_center_page_not_found_btn', array( 905 'settings' => 'rehab_center_page_not_found_btn', 906 'section' => 'rehab_center_page_not_found', 907 'label' => __('404 Button', 'rehab-center'), 908 'type' => 'text' 920 909 )); 921 910 -
rehab-center/0.2.6/languages/rehab-center.pot
r296048 r299263 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Rehab Center 0.2. 4\n"5 "Project-Id-Version: Rehab Center 0.2.6\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/rehab-center\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-1 0-13T18:35:04+05:30\n"12 "POT-Creation-Date: 2025-11-06T11:01:41+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" … … 41 41 42 42 #: 404.php:15 43 #: inc/customizer.php: 89943 #: inc/customizer.php:918 44 44 msgid "404 Not Found" 45 45 msgstr "" 46 46 47 47 #: 404.php:20 48 #: inc/customizer.php:9 1648 #: inc/customizer.php:935 49 49 msgid "Looks like you have taken a wrong turn.....Don't worry... it happens to the best of us." 50 msgstr "" 51 52 #: 404.php:24 53 msgid "Homepage" 50 54 msgstr "" 51 55 … … 109 113 110 114 #: footer.php:129 111 #: inc/customizer.php:11 08115 #: inc/customizer.php:1139 112 116 msgid "TOP" 113 117 msgstr "" … … 217 221 218 222 #: functions.php:333 219 #: inc/addon.php:12 2223 #: inc/addon.php:121 220 224 msgid "View Demo" 221 225 msgstr "" … … 256 260 msgstr "" 257 261 258 #: inc/addon.php:59 262 #: inc/addon.php:60 263 msgid "Free Theme Documentation" 264 msgstr "" 265 266 #: inc/addon.php:61 267 msgid "Need more details? Please check our full documentation for detailed theme setup." 268 msgstr "" 269 270 #: inc/addon.php:63 271 msgid "Documentation" 272 msgstr "" 273 274 #: inc/addon.php:68 275 msgid "Need Help?" 276 msgstr "" 277 278 #: inc/addon.php:69 279 msgid "Go to our support forum to help you out in case of queries and doubts regarding our theme." 280 msgstr "" 281 282 #: inc/addon.php:71 283 msgid "Contact Us" 284 msgstr "" 285 286 #: inc/addon.php:79 259 287 msgid "Pro version of our theme" 260 288 msgstr "" 261 289 262 #: inc/addon.php: 60290 #: inc/addon.php:80 263 291 msgid "Are you excited for our theme? Then we will proceed for pro version of theme." 264 292 msgstr "" 265 293 266 #: inc/addon.php:62 267 msgid "Go To Premium" 268 msgstr "" 269 270 #: inc/addon.php:67 271 msgid "Need Help?" 272 msgstr "" 273 274 #: inc/addon.php:68 275 msgid "Go to our support forum to help you out in case of queries and doubts regarding our theme." 276 msgstr "" 277 278 #: inc/addon.php:70 279 msgid "Contact Us" 280 msgstr "" 281 282 #: inc/addon.php:75 283 msgid "Check Our Demo" 284 msgstr "" 285 286 #: inc/addon.php:76 287 msgid "Here, you can view a live demonstration of our premium theme." 288 msgstr "" 289 290 #: inc/addon.php:78 291 #: inc/upgrade-to-pro.php:24 292 msgid "Premium Demo" 293 msgstr "" 294 295 #: inc/addon.php:85 296 msgid "Check all classic features" 297 msgstr "" 298 299 #: inc/addon.php:86 300 msgid "Explore all our 100+ Premium Themes Collections" 294 #: inc/addon.php:82 295 #: inc/addon.php:120 296 msgid "Get Premium" 297 msgstr "" 298 299 #: inc/addon.php:87 300 msgid "Leave us a review" 301 301 msgstr "" 302 302 303 303 #: inc/addon.php:88 304 #: inc/upgrade-to-pro.php:30305 msgid "Theme Page"306 msgstr ""307 308 #: inc/addon.php:93309 msgid "Leave us a review"310 msgstr ""311 312 #: inc/addon.php:94313 304 msgid "Are you enjoying our theme? We would love to hear your feedback." 314 305 msgstr "" 315 306 316 #: inc/addon.php:9 6307 #: inc/addon.php:90 317 308 msgid "Rate This Theme" 318 309 msgstr "" 319 310 320 311 #: inc/addon.php:101 321 #: inc/upgrade-to-pro.php:32 322 msgid "Theme Documentation" 312 msgid "WordPress Theme Bundle" 323 313 msgstr "" 324 314 325 315 #: inc/addon.php:102 326 msgid " Need more details? Please check our full documentation for detailed theme setup."316 msgid "Get access to a collection of 100+ stunning WordPress themes for just $99 — featuring designs for every business niche!" 327 317 msgstr "" 328 318 329 319 #: inc/addon.php:104 330 msgid " Documentation"320 msgid "Get Bundle at 20% OFF" 331 321 msgstr "" 332 322 333 323 #. translators: %s: Theme name. 334 #: inc/addon.php:11 5324 #: inc/addon.php:114 335 325 msgid "Getting started with %s" 336 326 msgstr "" 337 327 338 #: inc/addon.php:121 339 msgid "Get Premium" 340 msgstr "" 341 342 #: inc/addon.php:123 328 #: inc/addon.php:122 343 329 msgid "Bundle of 100+ Themes at $99" 344 330 msgstr "" 345 331 346 332 #. translators: 1: Theme name, 2: Author name, 3: Call to action text. 347 #: inc/addon.php:13 8333 #: inc/addon.php:137 348 334 msgid "%1$s is proudly brought to you by %2$s. If you like this theme, %3$s :)" 349 335 msgstr "" 350 336 351 #: inc/addon.php:14 1337 #: inc/addon.php:140 352 338 msgid "Rate it" 353 339 msgstr "" 354 340 355 #: inc/addon.php:14 1341 #: inc/addon.php:140 356 342 msgctxt "If you like this theme, rate it" 357 343 msgid "rate it" … … 481 467 msgstr "" 482 468 469 #: inc/customizer.php:344 470 msgid "Menu Text Transform" 471 msgstr "" 472 483 473 #: inc/customizer.php:348 474 msgid "None" 475 msgstr "" 476 477 #: inc/customizer.php:349 478 msgid "Capitalize" 479 msgstr "" 480 481 #: inc/customizer.php:350 482 msgid "Uppercase" 483 msgstr "" 484 485 #: inc/customizer.php:351 486 msgid "Lowercase" 487 msgstr "" 488 489 #: inc/customizer.php:367 484 490 msgid "Manage Banner Section" 485 491 msgstr "" 486 492 487 #: inc/customizer.php:3 50493 #: inc/customizer.php:369 488 494 msgid "<p class=\"sec-title\">Manage Banner Section</p> Select Page from the Dropdowns for banner, Also use the given image dimension (300 x 300)." 489 495 msgstr "" 490 496 491 #: inc/customizer.php:3 62497 #: inc/customizer.php:381 492 498 msgid "Check To Enable This Section" 493 499 msgstr "" 494 500 495 #: inc/customizer.php:3 71501 #: inc/customizer.php:390 496 502 msgid "Check To Show Posts" 497 503 msgstr "" 498 504 499 #: inc/customizer.php: 392505 #: inc/customizer.php:411 500 506 msgid "Select Category to display Latest Post" 501 507 msgstr "" 502 508 503 #: inc/customizer.php:4 04509 #: inc/customizer.php:423 504 510 msgid "Add Banner Title" 505 511 msgstr "" 506 512 507 #: inc/customizer.php:4 16513 #: inc/customizer.php:435 508 514 msgid "Add Banner Text" 509 515 msgstr "" 510 516 511 #: inc/customizer.php:4 28517 #: inc/customizer.php:447 512 518 msgid "Add Button Text" 513 519 msgstr "" 514 520 515 #: inc/customizer.php:4 40521 #: inc/customizer.php:459 516 522 msgid "Add Button URL" 517 523 msgstr "" 518 524 519 #: inc/customizer.php:4 52525 #: inc/customizer.php:471 520 526 msgid "Add Banner Bottom Text" 521 527 msgstr "" 522 528 523 #: inc/customizer.php:4 64529 #: inc/customizer.php:483 524 530 msgid "Add Linkedin URL" 525 531 msgstr "" 526 532 527 #: inc/customizer.php:4 76533 #: inc/customizer.php:495 528 534 msgid "Add Instagram URL" 529 535 msgstr "" 530 536 531 #: inc/customizer.php: 488537 #: inc/customizer.php:507 532 538 msgid "Add Facebook URL" 533 539 msgstr "" 534 540 535 #: inc/customizer.php:5 00541 #: inc/customizer.php:519 536 542 msgid "Add Twitter URL" 537 543 msgstr "" 538 544 539 #: inc/customizer.php:5 16545 #: inc/customizer.php:535 540 546 msgid "Manage Treatment Programs Section" 541 547 msgstr "" 542 548 543 #: inc/customizer.php:5 17549 #: inc/customizer.php:536 544 550 msgid "<p class=\"sec-title\">Manage Treatment Programs Section</p>" 545 551 msgstr "" 546 552 547 #: inc/customizer.php:5 30553 #: inc/customizer.php:549 548 554 msgid "Check To Enable Section" 549 555 msgstr "" 550 556 551 #: inc/customizer.php:5 39557 #: inc/customizer.php:558 552 558 msgid "Select Background Image" 553 559 msgstr "" 554 560 555 #: inc/customizer.php:5 40561 #: inc/customizer.php:559 556 562 msgid "Use the given image dimension (1200px × 250px)." 557 563 msgstr "" 558 564 559 #: inc/customizer.php:5 52565 #: inc/customizer.php:571 560 566 msgid "Add Section Title" 561 567 msgstr "" 562 568 563 #: inc/customizer.php:5 63569 #: inc/customizer.php:582 564 570 msgid "Add Icon" 565 571 msgstr "" 566 572 567 #: inc/customizer.php:5 64573 #: inc/customizer.php:583 568 574 msgid "Fontawesome Icon (e.g., fa-solid fa-people-arrows)" 569 575 msgstr "" 570 576 571 #: inc/customizer.php:5 77577 #: inc/customizer.php:596 572 578 msgid "Add Title" 573 579 msgstr "" 574 580 575 #: inc/customizer.php: 589581 #: inc/customizer.php:608 576 582 msgid "Add Text" 577 583 msgstr "" 578 584 579 #: inc/customizer.php:6 01585 #: inc/customizer.php:620 580 586 msgid "Add Link" 581 587 msgstr "" 582 588 583 #: inc/customizer.php:6 18589 #: inc/customizer.php:637 584 590 msgid "Manage Post Section" 585 591 msgstr "" 586 592 587 #: inc/customizer.php:6 30593 #: inc/customizer.php:649 588 594 msgid "Check to Enable Date" 589 595 msgstr "" 590 596 591 #: inc/customizer.php:6 41597 #: inc/customizer.php:660 592 598 msgid "Check to Enable Comments" 593 599 msgstr "" 594 600 595 #: inc/customizer.php:6 52601 #: inc/customizer.php:671 596 602 msgid "Check to Enable Author" 597 603 msgstr "" 598 604 599 #: inc/customizer.php:6 63605 #: inc/customizer.php:682 600 606 msgid "Check to Enable Time" 601 607 msgstr "" 602 608 603 #: inc/customizer.php:6 73604 #: inc/customizer.php:8 12609 #: inc/customizer.php:692 610 #: inc/customizer.php:831 605 611 msgid "Metabox Seperator" 606 612 msgstr "" 607 613 608 #: inc/customizer.php:6 74609 #: inc/customizer.php:8 13614 #: inc/customizer.php:693 615 #: inc/customizer.php:832 610 616 msgid "Ex: \"/\", \"|\", \"-\", ..." 611 617 msgstr "" 612 618 613 #: inc/customizer.php: 685619 #: inc/customizer.php:704 614 620 msgid "Theme Post Sidebar Position" 615 621 msgstr "" 616 622 617 #: inc/customizer.php: 686623 #: inc/customizer.php:705 618 624 msgid "This option work for blog page, archive page and search page." 619 625 msgstr "" 620 626 621 #: inc/customizer.php: 689622 #: inc/customizer.php:8 26627 #: inc/customizer.php:708 628 #: inc/customizer.php:845 623 629 msgid "Full" 624 630 msgstr "" 625 631 626 #: inc/customizer.php: 690627 #: inc/customizer.php:8 27628 #: inc/customizer.php:8 75629 #: inc/customizer.php: 985630 #: inc/customizer.php:11 02632 #: inc/customizer.php:709 633 #: inc/customizer.php:846 634 #: inc/customizer.php:894 635 #: inc/customizer.php:1016 636 #: inc/customizer.php:1133 631 637 msgid "Left" 632 638 msgstr "" 633 639 634 #: inc/customizer.php: 691635 #: inc/customizer.php:8 28636 #: inc/customizer.php:8 76637 #: inc/customizer.php: 986638 #: inc/customizer.php:11 01640 #: inc/customizer.php:710 641 #: inc/customizer.php:847 642 #: inc/customizer.php:895 643 #: inc/customizer.php:1017 644 #: inc/customizer.php:1132 639 645 msgid "Right" 640 646 msgstr "" 641 647 642 #: inc/customizer.php: 692648 #: inc/customizer.php:711 643 649 msgid "Three Columns" 644 650 msgstr "" 645 651 646 #: inc/customizer.php: 693652 #: inc/customizer.php:712 647 653 msgid "Four Columns" 648 654 msgstr "" 649 655 650 #: inc/customizer.php: 694656 #: inc/customizer.php:713 651 657 msgid "Grid Layout" 652 658 msgstr "" 653 659 654 #: inc/customizer.php:7 04660 #: inc/customizer.php:723 655 661 msgid "Post Description Length" 656 662 msgstr "" 657 663 658 #: inc/customizer.php:7 07664 #: inc/customizer.php:726 659 665 msgid "No Content" 660 666 msgstr "" 661 667 662 #: inc/customizer.php:7 08668 #: inc/customizer.php:727 663 669 msgid "Excerpt Content" 664 670 msgstr "" 665 671 666 #: inc/customizer.php:7 09672 #: inc/customizer.php:728 667 673 msgid "Full Content" 668 674 msgstr "" 669 675 670 #: inc/customizer.php:7 19676 #: inc/customizer.php:738 671 677 msgid "Show / Hide Blog Post Thumbnail" 672 678 msgstr "" 673 679 674 #: inc/customizer.php:7 29680 #: inc/customizer.php:748 675 681 msgid "Blog Page Image Box Shadow" 676 682 msgstr "" 677 683 678 #: inc/customizer.php:7 51684 #: inc/customizer.php:770 679 685 msgid "Manage Single Post Section" 680 686 msgstr "" 681 687 682 #: inc/customizer.php:7 62688 #: inc/customizer.php:781 683 689 msgid "Check To Enable Breadcrumb" 684 690 msgstr "" 685 691 686 #: inc/customizer.php:7 72692 #: inc/customizer.php:791 687 693 msgid "Enable / Disable Date " 688 694 msgstr "" 689 695 690 #: inc/customizer.php: 782696 #: inc/customizer.php:801 691 697 msgid "Enable / Disable Author" 692 698 msgstr "" 693 699 694 #: inc/customizer.php: 792700 #: inc/customizer.php:811 695 701 msgid "Enable / Disable Comments" 696 702 msgstr "" 697 703 698 #: inc/customizer.php:8 02704 #: inc/customizer.php:821 699 705 msgid "Enable / Disable Time" 700 706 msgstr "" 701 707 702 #: inc/customizer.php:8 23708 #: inc/customizer.php:842 703 709 msgid "Single post sidebar layout" 704 710 msgstr "" 705 711 706 #: inc/customizer.php:8 38712 #: inc/customizer.php:857 707 713 msgid "Single Post Image Box Shadow" 708 714 msgstr "" 709 715 710 #: inc/customizer.php:8 60716 #: inc/customizer.php:879 711 717 msgid "Manage Page Section" 712 718 msgstr "" 713 719 714 #: inc/customizer.php:8 72720 #: inc/customizer.php:891 715 721 msgid "Theme Page Sidebar Position" 716 722 msgstr "" 717 723 718 #: inc/customizer.php:8 77724 #: inc/customizer.php:896 719 725 msgid "No Sidebar" 720 726 msgstr "" 721 727 722 #: inc/customizer.php: 893728 #: inc/customizer.php:912 723 729 msgid "Manage 404 Page Section" 724 730 msgstr "" 725 731 726 #: inc/customizer.php:9 03732 #: inc/customizer.php:922 727 733 msgid "404 Heading" 728 734 msgstr "" 729 735 730 #: inc/customizer.php:9 14736 #: inc/customizer.php:933 731 737 msgid "404 Text" 732 738 msgstr "" 733 739 734 #: inc/customizer.php:934 740 #: inc/customizer.php:949 741 msgid "404 Button" 742 msgstr "" 743 744 #: inc/customizer.php:965 735 745 msgid "Manage Footer Section" 736 746 msgstr "" 737 747 738 #: inc/customizer.php:9 35748 #: inc/customizer.php:966 739 749 msgid "<p class=\"sec-title\">Manage Footer Section</p>" 740 750 msgstr "" 741 751 742 #: inc/customizer.php:9 47752 #: inc/customizer.php:978 743 753 msgid "Check to Enable Footer Widget" 744 754 msgstr "" 745 755 746 #: inc/customizer.php:9 60756 #: inc/customizer.php:991 747 757 msgid "Footer Background Color" 748 758 msgstr "" 749 759 750 #: inc/customizer.php: 969760 #: inc/customizer.php:1000 751 761 msgid "Footer Background Image" 752 762 msgstr "" 753 763 754 #: inc/customizer.php: 980764 #: inc/customizer.php:1011 755 765 msgid "Footer Image Position" 756 766 msgstr "" 757 767 758 #: inc/customizer.php: 983759 #: inc/customizer.php:11 03768 #: inc/customizer.php:1014 769 #: inc/customizer.php:1134 760 770 msgid "Center" 761 771 msgstr "" 762 772 763 #: inc/customizer.php: 984773 #: inc/customizer.php:1015 764 774 msgid "Top" 765 775 msgstr "" 766 776 767 #: inc/customizer.php: 987777 #: inc/customizer.php:1018 768 778 msgid "Bottom" 769 779 msgstr "" 770 780 771 #: inc/customizer.php: 998781 #: inc/customizer.php:1029 772 782 msgid "Footer widget area" 773 783 msgstr "" 774 784 775 #: inc/customizer.php:10 00785 #: inc/customizer.php:1031 776 786 msgid "One" 777 787 msgstr "" 778 788 779 #: inc/customizer.php:10 01789 #: inc/customizer.php:1032 780 790 msgid "Two" 781 791 msgstr "" 782 792 783 #: inc/customizer.php:10 02793 #: inc/customizer.php:1033 784 794 msgid "Three" 785 795 msgstr "" 786 796 787 #: inc/customizer.php:10 03797 #: inc/customizer.php:1034 788 798 msgid "Four" 789 799 msgstr "" 790 800 791 #: inc/customizer.php:10 13801 #: inc/customizer.php:1044 792 802 msgid "Copyright Line" 793 803 msgstr "" 794 804 795 #: inc/customizer.php:10 24805 #: inc/customizer.php:1055 796 806 msgid "Copyright Link" 797 807 msgstr "" 798 808 799 #: inc/customizer.php:10 38809 #: inc/customizer.php:1069 800 810 msgid "Coypright Color" 801 811 msgstr "" 802 812 803 #: inc/customizer.php:10 51813 #: inc/customizer.php:1082 804 814 msgid "Title Color" 805 815 msgstr "" 806 816 807 #: inc/customizer.php:10 64817 #: inc/customizer.php:1095 808 818 msgid "Description Color" 809 819 msgstr "" 810 820 811 #: inc/customizer.php:1 077821 #: inc/customizer.php:1108 812 822 msgid "List Color" 813 823 msgstr "" 814 824 815 #: inc/customizer.php:1 086825 #: inc/customizer.php:1117 816 826 msgid "Check To Show Scroll To Top" 817 827 msgstr "" 818 828 819 #: inc/customizer.php:1 099829 #: inc/customizer.php:1130 820 830 msgid "Scroll To Top Positions" 821 831 msgstr "" 822 832 823 #: inc/customizer.php:11 12833 #: inc/customizer.php:1143 824 834 msgid "Scroll To Top Button Text" 825 835 msgstr "" 826 836 827 #: inc/customizer.php:11 23837 #: inc/customizer.php:1154 828 838 msgid "Scroll to Top Button Shape" 829 839 msgstr "" 830 840 831 #: inc/customizer.php:11 28841 #: inc/customizer.php:1159 832 842 msgid "Box" 833 843 msgstr "" 834 844 835 #: inc/customizer.php:11 29845 #: inc/customizer.php:1160 836 846 msgid "Curved" 837 847 msgstr "" 838 848 839 #: inc/customizer.php:11 30849 #: inc/customizer.php:1161 840 850 msgid "Circle" 841 851 msgstr "" 842 852 843 #: inc/customizer.php:11 46853 #: inc/customizer.php:1177 844 854 msgid "Manage Footer Social Section" 845 855 msgstr "" 846 856 847 #: inc/customizer.php:11 47857 #: inc/customizer.php:1178 848 858 msgid "<p class=\"sec-title\">Manage Footer Social Section</p>" 849 859 msgstr "" 850 860 851 #: inc/customizer.php:11 60861 #: inc/customizer.php:1191 852 862 msgid "Facebook Link" 853 863 msgstr "" 854 864 855 #: inc/customizer.php:1 172865 #: inc/customizer.php:1203 856 866 msgid "Instagram Link" 857 867 msgstr "" 858 868 859 #: inc/customizer.php:1 184869 #: inc/customizer.php:1215 860 870 msgid "Pinterest Link" 861 871 msgstr "" 862 872 863 #: inc/customizer.php:1 196873 #: inc/customizer.php:1227 864 874 msgid "Twitter Link" 865 875 msgstr "" 866 876 867 #: inc/customizer.php:12 08877 #: inc/customizer.php:1239 868 878 msgid "Youtube Link" 869 879 msgstr "" 870 880 871 #: inc/customizer.php:12 24881 #: inc/customizer.php:1255 872 882 msgid "Google Fonts" 873 883 msgstr "" 874 884 875 #: inc/customizer.php:1 270885 #: inc/customizer.php:1301 876 886 msgid "Select your desired font for the headings." 877 887 msgstr "" 878 888 879 #: inc/customizer.php:1 280889 #: inc/customizer.php:1311 880 890 msgid "Select your desired font for the body." 881 891 msgstr "" 882 892 883 #: inc/customizer.php:1 290893 #: inc/customizer.php:1321 884 894 msgid "Select your desired font for the section headings." 885 895 msgstr "" … … 1305 1315 msgstr "" 1306 1316 1317 #: inc/upgrade-to-pro.php:24 1318 msgid "Premium Demo" 1319 msgstr "" 1320 1307 1321 #: inc/upgrade-to-pro.php:26 1308 1322 msgid "Rate Us" … … 1311 1325 #: inc/upgrade-to-pro.php:28 1312 1326 msgid "Support Forum" 1327 msgstr "" 1328 1329 #: inc/upgrade-to-pro.php:30 1330 msgid "Theme Page" 1331 msgstr "" 1332 1333 #: inc/upgrade-to-pro.php:32 1334 msgid "Theme Documentation" 1313 1335 msgstr "" 1314 1336 -
rehab-center/0.2.6/readme.txt
r296048 r299263 5 5 Tested up to: 6.8 6 6 Requires PHP: 5.6 7 Stable tag: 0.2. 57 Stable tag: 0.2.6 8 8 License: GNU General Public License v2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 64 64 = 0.2.5 = 65 65 * Updated description. 66 67 = 0.2.6 = 68 * Added menu text transform option in customizer. 69 * Added homepage button option in 404 page section. 70 * Changed in activation notice. 71 * Resolved css error in cart page. 72 * Updated pot file. 66 73 67 74 == Resources == -
rehab-center/0.2.6/style.css
r296048 r299263 5 5 Author URI: https://www.theclassictemplates.com/ 6 6 Description: The Rehab theme is a modern, multipurpose, and minimal solution crafted for professionals, businesses, and creatives seeking a clean, elegant, and sophisticated online presence, making it perfect for corporate websites, portfolios, agencies, service providers, clinics, mental health specialists, psychologists, therapy practices, counseling services, wellness centers, rehabilitation clinics, recovery centers, hospitals, charities, nonprofits, physiotherapy clinics, addiction treatment centers, and personal blogs. With its user-friendly design and retina-ready visuals, it delivers a stunning and interactive browsing experience across all devices through its fully responsive and mobile-friendly layout. Built on Bootstrap with optimized, secure, and clean code, Rehab ensures faster page load times, seamless performance, and safety. It includes all essential features such as a testimonial section, team showcase, bold banners, and strategically placed Call to Action (CTA) buttons designed to boost engagement and conversions. Extensive customization options allow easy personalization of colors, fonts, and layouts, while shortcodes enhance flexibility. SEO-friendly and translation-ready, it helps your site rank higher and reach a global audience. Animated elements add a modern touch, and integration with social media platforms boosts connectivity. For enhanced functionality, it seamlessly integrates with popular plugins like Contact Form 7, WooCommerce, and Yoast SEO Plugin, allowing appointment bookings, form submissions, online service listings, and improved content optimization. Whether you’re a counselor, therapist, or wellness expert, the Rehab theme offers a polished, professional, and reliable platform to promote healthcare and rehabilitation services with confidence and style. 7 Version: 0.2. 57 Version: 0.2.6 8 8 Tested up to: 6.8 9 9 Requires PHP: 5.6 … … 177 177 color: #000000; 178 178 } 179 .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-price del{ 180 margin-right: 6px; 181 display: inline-flex; 182 } 179 183 .single-product .product_meta{ 180 184 margin-top: 20px;
Note: See TracChangeset
for help on using the changeset viewer.