Make WordPress Themes

Changeset 299263


Ignore:
Timestamp:
11/19/2025 04:27:51 PM (5 days ago)
Author:
themedropbox
Message:

New version of Rehab Center - 0.2.6

Location:
rehab-center/0.2.6
Files:
1 added
9 edited
1 copied

Legend:

Unmodified
Added
Removed
  • rehab-center/0.2.6/404.php

    r279446 r299263  
    2020                    <?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' ))); ?>
    2121                </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 } ?>
    2227            </div>
    2328        </section>
  • rehab-center/0.2.6/css/addon.css

    r294512 r299263  
    519519.getstrat.updated.notice.notice-success.is-dismissible.notice-get-started-class{
    520520    display: flex !important;
     521    align-items: center;
    521522    flex-wrap: wrap;
    522523    padding: 20px;
     
    551552}
    552553.notice-get-started-class .admin-image img{
    553     height: 154px;
     554    height: 240px;
    554555    width: 100%;
    555556    max-width: 320px;
     
    559560    border: 2px solid #ddd;
    560561    border-radius: 4px;
     562}
     563.notice-get-started-class .admin-bundle-image img{
     564    height: 280px;
    561565}
    562566.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  
    148148.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-link .wc-block-grid__product-image img{
    149149  height: 300px;
    150   object-fit: contain;
     150  object-fit: cover;
    151151}
    152152.woocommerce ul.products li.product,
     
    667667  margin: 30px 0 40px 0;
    668668}
     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  
    334334                </div>
    335335            </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>
    336339        </div>
    337340    <?php }
  • rehab-center/0.2.6/inc/color-scheme/custom-color-control.php

    r291684 r299263  
    8181}   
    8282
    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 
    10183/*--------------------------- Shop page pagination -------------------*/
    10284
     
    119101/*--------------------------- Scroll to Top Button Shape -------------------*/
    120102
    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');
     104if($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');
     121if($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}
     130else 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  
    334334    ));
    335335
     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
    336355    $wp_customize->add_setting( 'rehab_center_topbar_settings_upgraded_features',array(
    337356        'sanitize_callback' => 'sanitize_text_field'
     
    721740    ));
    722741
    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 
    739742    $wp_customize->add_setting( 'rehab_center_blog_post_settings_upgraded_features',array(
    740743        'sanitize_callback' => 'sanitize_text_field'
     
    753756        'panel' => 'rehab_center_panel_area'
    754757    ));
    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     ));
    765758
    766759    $wp_customize->add_setting('rehab_center_single_post_date',array(
     
    829822     ),
    830823    ));
    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     )));
    847824
    848825    $wp_customize->add_setting( 'rehab_center_single_post_settings_upgraded_features',array(
     
    918895        'section'=> 'rehab_center_page_not_found',
    919896        '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'
    920909    ));
    921910
  • rehab-center/0.2.6/languages/rehab-center.pot

    r296048 r299263  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Rehab Center 0.2.4\n"
     5"Project-Id-Version: Rehab Center 0.2.6\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/theme/rehab-center\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-10-13T18:35:04+05:30\n"
     12"POT-Creation-Date: 2025-11-06T11:01:41+05:30\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.11.0\n"
     
    4141
    4242#: 404.php:15
    43 #: inc/customizer.php:899
     43#: inc/customizer.php:918
    4444msgid "404 Not Found"
    4545msgstr ""
    4646
    4747#: 404.php:20
    48 #: inc/customizer.php:916
     48#: inc/customizer.php:935
    4949msgid "Looks like you have taken a wrong turn.....Don't worry... it happens to the best of us."
     50msgstr ""
     51
     52#: 404.php:24
     53msgid "Homepage"
    5054msgstr ""
    5155
     
    109113
    110114#: footer.php:129
    111 #: inc/customizer.php:1108
     115#: inc/customizer.php:1139
    112116msgid "TOP"
    113117msgstr ""
     
    217221
    218222#: functions.php:333
    219 #: inc/addon.php:122
     223#: inc/addon.php:121
    220224msgid "View Demo"
    221225msgstr ""
     
    256260msgstr ""
    257261
    258 #: inc/addon.php:59
     262#: inc/addon.php:60
     263msgid "Free Theme Documentation"
     264msgstr ""
     265
     266#: inc/addon.php:61
     267msgid "Need more details? Please check our full documentation for detailed theme setup."
     268msgstr ""
     269
     270#: inc/addon.php:63
     271msgid "Documentation"
     272msgstr ""
     273
     274#: inc/addon.php:68
     275msgid "Need Help?"
     276msgstr ""
     277
     278#: inc/addon.php:69
     279msgid "Go to our support forum to help you out in case of queries and doubts regarding our theme."
     280msgstr ""
     281
     282#: inc/addon.php:71
     283msgid "Contact Us"
     284msgstr ""
     285
     286#: inc/addon.php:79
    259287msgid "Pro version of our theme"
    260288msgstr ""
    261289
    262 #: inc/addon.php:60
     290#: inc/addon.php:80
    263291msgid "Are you excited for our theme? Then we will proceed for pro version of theme."
    264292msgstr ""
    265293
    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
     296msgid "Get Premium"
     297msgstr ""
     298
     299#: inc/addon.php:87
     300msgid "Leave us a review"
    301301msgstr ""
    302302
    303303#: inc/addon.php:88
    304 #: inc/upgrade-to-pro.php:30
    305 msgid "Theme Page"
    306 msgstr ""
    307 
    308 #: inc/addon.php:93
    309 msgid "Leave us a review"
    310 msgstr ""
    311 
    312 #: inc/addon.php:94
    313304msgid "Are you enjoying our theme? We would love to hear your feedback."
    314305msgstr ""
    315306
    316 #: inc/addon.php:96
     307#: inc/addon.php:90
    317308msgid "Rate This Theme"
    318309msgstr ""
    319310
    320311#: inc/addon.php:101
    321 #: inc/upgrade-to-pro.php:32
    322 msgid "Theme Documentation"
     312msgid "WordPress Theme Bundle"
    323313msgstr ""
    324314
    325315#: inc/addon.php:102
    326 msgid "Need more details? Please check our full documentation for detailed theme setup."
     316msgid "Get access to a collection of 100+ stunning WordPress themes for just $99 — featuring designs for every business niche!"
    327317msgstr ""
    328318
    329319#: inc/addon.php:104
    330 msgid "Documentation"
     320msgid "Get Bundle at 20% OFF"
    331321msgstr ""
    332322
    333323#. translators: %s: Theme name.
    334 #: inc/addon.php:115
     324#: inc/addon.php:114
    335325msgid "Getting started with %s"
    336326msgstr ""
    337327
    338 #: inc/addon.php:121
    339 msgid "Get Premium"
    340 msgstr ""
    341 
    342 #: inc/addon.php:123
     328#: inc/addon.php:122
    343329msgid "Bundle of 100+ Themes at $99"
    344330msgstr ""
    345331
    346332#. translators: 1: Theme name, 2: Author name, 3: Call to action text.
    347 #: inc/addon.php:138
     333#: inc/addon.php:137
    348334msgid "%1$s is proudly brought to you by %2$s. If you like this theme, %3$s :)"
    349335msgstr ""
    350336
    351 #: inc/addon.php:141
     337#: inc/addon.php:140
    352338msgid "Rate it"
    353339msgstr ""
    354340
    355 #: inc/addon.php:141
     341#: inc/addon.php:140
    356342msgctxt "If you like this theme, rate it"
    357343msgid "rate it"
     
    481467msgstr ""
    482468
     469#: inc/customizer.php:344
     470msgid "Menu Text Transform"
     471msgstr ""
     472
    483473#: inc/customizer.php:348
     474msgid "None"
     475msgstr ""
     476
     477#: inc/customizer.php:349
     478msgid "Capitalize"
     479msgstr ""
     480
     481#: inc/customizer.php:350
     482msgid "Uppercase"
     483msgstr ""
     484
     485#: inc/customizer.php:351
     486msgid "Lowercase"
     487msgstr ""
     488
     489#: inc/customizer.php:367
    484490msgid "Manage Banner Section"
    485491msgstr ""
    486492
    487 #: inc/customizer.php:350
     493#: inc/customizer.php:369
    488494msgid "<p class=\"sec-title\">Manage Banner Section</p> Select Page from the Dropdowns for banner, Also use the given image dimension (300 x 300)."
    489495msgstr ""
    490496
    491 #: inc/customizer.php:362
     497#: inc/customizer.php:381
    492498msgid "Check To Enable This Section"
    493499msgstr ""
    494500
    495 #: inc/customizer.php:371
     501#: inc/customizer.php:390
    496502msgid "Check To Show Posts"
    497503msgstr ""
    498504
    499 #: inc/customizer.php:392
     505#: inc/customizer.php:411
    500506msgid "Select Category to display Latest Post"
    501507msgstr ""
    502508
    503 #: inc/customizer.php:404
     509#: inc/customizer.php:423
    504510msgid "Add Banner Title"
    505511msgstr ""
    506512
    507 #: inc/customizer.php:416
     513#: inc/customizer.php:435
    508514msgid "Add Banner Text"
    509515msgstr ""
    510516
    511 #: inc/customizer.php:428
     517#: inc/customizer.php:447
    512518msgid "Add Button Text"
    513519msgstr ""
    514520
    515 #: inc/customizer.php:440
     521#: inc/customizer.php:459
    516522msgid "Add Button URL"
    517523msgstr ""
    518524
    519 #: inc/customizer.php:452
     525#: inc/customizer.php:471
    520526msgid "Add Banner Bottom Text"
    521527msgstr ""
    522528
    523 #: inc/customizer.php:464
     529#: inc/customizer.php:483
    524530msgid "Add Linkedin URL"
    525531msgstr ""
    526532
    527 #: inc/customizer.php:476
     533#: inc/customizer.php:495
    528534msgid "Add Instagram URL"
    529535msgstr ""
    530536
    531 #: inc/customizer.php:488
     537#: inc/customizer.php:507
    532538msgid "Add Facebook URL"
    533539msgstr ""
    534540
    535 #: inc/customizer.php:500
     541#: inc/customizer.php:519
    536542msgid "Add Twitter URL"
    537543msgstr ""
    538544
    539 #: inc/customizer.php:516
     545#: inc/customizer.php:535
    540546msgid "Manage Treatment Programs Section"
    541547msgstr ""
    542548
    543 #: inc/customizer.php:517
     549#: inc/customizer.php:536
    544550msgid "<p class=\"sec-title\">Manage Treatment Programs Section</p>"
    545551msgstr ""
    546552
    547 #: inc/customizer.php:530
     553#: inc/customizer.php:549
    548554msgid "Check To Enable Section"
    549555msgstr ""
    550556
    551 #: inc/customizer.php:539
     557#: inc/customizer.php:558
    552558msgid "Select Background Image"
    553559msgstr ""
    554560
    555 #: inc/customizer.php:540
     561#: inc/customizer.php:559
    556562msgid "Use the given image dimension (1200px × 250px)."
    557563msgstr ""
    558564
    559 #: inc/customizer.php:552
     565#: inc/customizer.php:571
    560566msgid "Add Section Title"
    561567msgstr ""
    562568
    563 #: inc/customizer.php:563
     569#: inc/customizer.php:582
    564570msgid "Add Icon"
    565571msgstr ""
    566572
    567 #: inc/customizer.php:564
     573#: inc/customizer.php:583
    568574msgid "Fontawesome Icon (e.g., fa-solid fa-people-arrows)"
    569575msgstr ""
    570576
    571 #: inc/customizer.php:577
     577#: inc/customizer.php:596
    572578msgid "Add Title"
    573579msgstr ""
    574580
    575 #: inc/customizer.php:589
     581#: inc/customizer.php:608
    576582msgid "Add Text"
    577583msgstr ""
    578584
    579 #: inc/customizer.php:601
     585#: inc/customizer.php:620
    580586msgid "Add Link"
    581587msgstr ""
    582588
    583 #: inc/customizer.php:618
     589#: inc/customizer.php:637
    584590msgid "Manage Post Section"
    585591msgstr ""
    586592
    587 #: inc/customizer.php:630
     593#: inc/customizer.php:649
    588594msgid "Check to Enable Date"
    589595msgstr ""
    590596
    591 #: inc/customizer.php:641
     597#: inc/customizer.php:660
    592598msgid "Check to Enable Comments"
    593599msgstr ""
    594600
    595 #: inc/customizer.php:652
     601#: inc/customizer.php:671
    596602msgid "Check to Enable Author"
    597603msgstr ""
    598604
    599 #: inc/customizer.php:663
     605#: inc/customizer.php:682
    600606msgid "Check to Enable Time"
    601607msgstr ""
    602608
    603 #: inc/customizer.php:673
    604 #: inc/customizer.php:812
     609#: inc/customizer.php:692
     610#: inc/customizer.php:831
    605611msgid "Metabox Seperator"
    606612msgstr ""
    607613
    608 #: inc/customizer.php:674
    609 #: inc/customizer.php:813
     614#: inc/customizer.php:693
     615#: inc/customizer.php:832
    610616msgid "Ex: \"/\", \"|\", \"-\", ..."
    611617msgstr ""
    612618
    613 #: inc/customizer.php:685
     619#: inc/customizer.php:704
    614620msgid "Theme Post Sidebar Position"
    615621msgstr ""
    616622
    617 #: inc/customizer.php:686
     623#: inc/customizer.php:705
    618624msgid "This option work for blog page, archive page and search page."
    619625msgstr ""
    620626
    621 #: inc/customizer.php:689
    622 #: inc/customizer.php:826
     627#: inc/customizer.php:708
     628#: inc/customizer.php:845
    623629msgid "Full"
    624630msgstr ""
    625631
    626 #: inc/customizer.php:690
    627 #: inc/customizer.php:827
    628 #: inc/customizer.php:875
    629 #: inc/customizer.php:985
    630 #: inc/customizer.php:1102
     632#: inc/customizer.php:709
     633#: inc/customizer.php:846
     634#: inc/customizer.php:894
     635#: inc/customizer.php:1016
     636#: inc/customizer.php:1133
    631637msgid "Left"
    632638msgstr ""
    633639
    634 #: inc/customizer.php:691
    635 #: inc/customizer.php:828
    636 #: inc/customizer.php:876
    637 #: inc/customizer.php:986
    638 #: inc/customizer.php:1101
     640#: inc/customizer.php:710
     641#: inc/customizer.php:847
     642#: inc/customizer.php:895
     643#: inc/customizer.php:1017
     644#: inc/customizer.php:1132
    639645msgid "Right"
    640646msgstr ""
    641647
    642 #: inc/customizer.php:692
     648#: inc/customizer.php:711
    643649msgid "Three Columns"
    644650msgstr ""
    645651
    646 #: inc/customizer.php:693
     652#: inc/customizer.php:712
    647653msgid "Four Columns"
    648654msgstr ""
    649655
    650 #: inc/customizer.php:694
     656#: inc/customizer.php:713
    651657msgid "Grid Layout"
    652658msgstr ""
    653659
    654 #: inc/customizer.php:704
     660#: inc/customizer.php:723
    655661msgid "Post Description Length"
    656662msgstr ""
    657663
    658 #: inc/customizer.php:707
     664#: inc/customizer.php:726
    659665msgid "No Content"
    660666msgstr ""
    661667
    662 #: inc/customizer.php:708
     668#: inc/customizer.php:727
    663669msgid "Excerpt Content"
    664670msgstr ""
    665671
    666 #: inc/customizer.php:709
     672#: inc/customizer.php:728
    667673msgid "Full Content"
    668674msgstr ""
    669675
    670 #: inc/customizer.php:719
     676#: inc/customizer.php:738
    671677msgid "Show / Hide Blog Post Thumbnail"
    672678msgstr ""
    673679
    674 #: inc/customizer.php:729
     680#: inc/customizer.php:748
    675681msgid "Blog Page Image Box Shadow"
    676682msgstr ""
    677683
    678 #: inc/customizer.php:751
     684#: inc/customizer.php:770
    679685msgid "Manage Single Post Section"
    680686msgstr ""
    681687
    682 #: inc/customizer.php:762
     688#: inc/customizer.php:781
    683689msgid "Check To Enable Breadcrumb"
    684690msgstr ""
    685691
    686 #: inc/customizer.php:772
     692#: inc/customizer.php:791
    687693msgid "Enable / Disable Date "
    688694msgstr ""
    689695
    690 #: inc/customizer.php:782
     696#: inc/customizer.php:801
    691697msgid "Enable / Disable Author"
    692698msgstr ""
    693699
    694 #: inc/customizer.php:792
     700#: inc/customizer.php:811
    695701msgid "Enable / Disable Comments"
    696702msgstr ""
    697703
    698 #: inc/customizer.php:802
     704#: inc/customizer.php:821
    699705msgid "Enable / Disable Time"
    700706msgstr ""
    701707
    702 #: inc/customizer.php:823
     708#: inc/customizer.php:842
    703709msgid "Single post sidebar layout"
    704710msgstr ""
    705711
    706 #: inc/customizer.php:838
     712#: inc/customizer.php:857
    707713msgid "Single Post Image Box Shadow"
    708714msgstr ""
    709715
    710 #: inc/customizer.php:860
     716#: inc/customizer.php:879
    711717msgid "Manage Page Section"
    712718msgstr ""
    713719
    714 #: inc/customizer.php:872
     720#: inc/customizer.php:891
    715721msgid "Theme Page Sidebar Position"
    716722msgstr ""
    717723
    718 #: inc/customizer.php:877
     724#: inc/customizer.php:896
    719725msgid "No Sidebar"
    720726msgstr ""
    721727
    722 #: inc/customizer.php:893
     728#: inc/customizer.php:912
    723729msgid "Manage 404 Page Section"
    724730msgstr ""
    725731
    726 #: inc/customizer.php:903
     732#: inc/customizer.php:922
    727733msgid "404 Heading"
    728734msgstr ""
    729735
    730 #: inc/customizer.php:914
     736#: inc/customizer.php:933
    731737msgid "404 Text"
    732738msgstr ""
    733739
    734 #: inc/customizer.php:934
     740#: inc/customizer.php:949
     741msgid "404 Button"
     742msgstr ""
     743
     744#: inc/customizer.php:965
    735745msgid "Manage Footer Section"
    736746msgstr ""
    737747
    738 #: inc/customizer.php:935
     748#: inc/customizer.php:966
    739749msgid "<p class=\"sec-title\">Manage Footer Section</p>"
    740750msgstr ""
    741751
    742 #: inc/customizer.php:947
     752#: inc/customizer.php:978
    743753msgid "Check to Enable Footer Widget"
    744754msgstr ""
    745755
    746 #: inc/customizer.php:960
     756#: inc/customizer.php:991
    747757msgid "Footer Background Color"
    748758msgstr ""
    749759
    750 #: inc/customizer.php:969
     760#: inc/customizer.php:1000
    751761msgid "Footer Background Image"
    752762msgstr ""
    753763
    754 #: inc/customizer.php:980
     764#: inc/customizer.php:1011
    755765msgid "Footer Image Position"
    756766msgstr ""
    757767
    758 #: inc/customizer.php:983
    759 #: inc/customizer.php:1103
     768#: inc/customizer.php:1014
     769#: inc/customizer.php:1134
    760770msgid "Center"
    761771msgstr ""
    762772
    763 #: inc/customizer.php:984
     773#: inc/customizer.php:1015
    764774msgid "Top"
    765775msgstr ""
    766776
    767 #: inc/customizer.php:987
     777#: inc/customizer.php:1018
    768778msgid "Bottom"
    769779msgstr ""
    770780
    771 #: inc/customizer.php:998
     781#: inc/customizer.php:1029
    772782msgid "Footer widget area"
    773783msgstr ""
    774784
    775 #: inc/customizer.php:1000
     785#: inc/customizer.php:1031
    776786msgid "One"
    777787msgstr ""
    778788
    779 #: inc/customizer.php:1001
     789#: inc/customizer.php:1032
    780790msgid "Two"
    781791msgstr ""
    782792
    783 #: inc/customizer.php:1002
     793#: inc/customizer.php:1033
    784794msgid "Three"
    785795msgstr ""
    786796
    787 #: inc/customizer.php:1003
     797#: inc/customizer.php:1034
    788798msgid "Four"
    789799msgstr ""
    790800
    791 #: inc/customizer.php:1013
     801#: inc/customizer.php:1044
    792802msgid "Copyright Line"
    793803msgstr ""
    794804
    795 #: inc/customizer.php:1024
     805#: inc/customizer.php:1055
    796806msgid "Copyright Link"
    797807msgstr ""
    798808
    799 #: inc/customizer.php:1038
     809#: inc/customizer.php:1069
    800810msgid "Coypright Color"
    801811msgstr ""
    802812
    803 #: inc/customizer.php:1051
     813#: inc/customizer.php:1082
    804814msgid "Title Color"
    805815msgstr ""
    806816
    807 #: inc/customizer.php:1064
     817#: inc/customizer.php:1095
    808818msgid "Description Color"
    809819msgstr ""
    810820
    811 #: inc/customizer.php:1077
     821#: inc/customizer.php:1108
    812822msgid "List Color"
    813823msgstr ""
    814824
    815 #: inc/customizer.php:1086
     825#: inc/customizer.php:1117
    816826msgid "Check To Show Scroll To Top"
    817827msgstr ""
    818828
    819 #: inc/customizer.php:1099
     829#: inc/customizer.php:1130
    820830msgid "Scroll To Top Positions"
    821831msgstr ""
    822832
    823 #: inc/customizer.php:1112
     833#: inc/customizer.php:1143
    824834msgid "Scroll To Top Button Text"
    825835msgstr ""
    826836
    827 #: inc/customizer.php:1123
     837#: inc/customizer.php:1154
    828838msgid "Scroll to Top Button Shape"
    829839msgstr ""
    830840
    831 #: inc/customizer.php:1128
     841#: inc/customizer.php:1159
    832842msgid "Box"
    833843msgstr ""
    834844
    835 #: inc/customizer.php:1129
     845#: inc/customizer.php:1160
    836846msgid "Curved"
    837847msgstr ""
    838848
    839 #: inc/customizer.php:1130
     849#: inc/customizer.php:1161
    840850msgid "Circle"
    841851msgstr ""
    842852
    843 #: inc/customizer.php:1146
     853#: inc/customizer.php:1177
    844854msgid "Manage Footer Social Section"
    845855msgstr ""
    846856
    847 #: inc/customizer.php:1147
     857#: inc/customizer.php:1178
    848858msgid "<p class=\"sec-title\">Manage Footer Social Section</p>"
    849859msgstr ""
    850860
    851 #: inc/customizer.php:1160
     861#: inc/customizer.php:1191
    852862msgid "Facebook Link"
    853863msgstr ""
    854864
    855 #: inc/customizer.php:1172
     865#: inc/customizer.php:1203
    856866msgid "Instagram Link"
    857867msgstr ""
    858868
    859 #: inc/customizer.php:1184
     869#: inc/customizer.php:1215
    860870msgid "Pinterest Link"
    861871msgstr ""
    862872
    863 #: inc/customizer.php:1196
     873#: inc/customizer.php:1227
    864874msgid "Twitter Link"
    865875msgstr ""
    866876
    867 #: inc/customizer.php:1208
     877#: inc/customizer.php:1239
    868878msgid "Youtube Link"
    869879msgstr ""
    870880
    871 #: inc/customizer.php:1224
     881#: inc/customizer.php:1255
    872882msgid "Google Fonts"
    873883msgstr ""
    874884
    875 #: inc/customizer.php:1270
     885#: inc/customizer.php:1301
    876886msgid "Select your desired font for the headings."
    877887msgstr ""
    878888
    879 #: inc/customizer.php:1280
     889#: inc/customizer.php:1311
    880890msgid "Select your desired font for the body."
    881891msgstr ""
    882892
    883 #: inc/customizer.php:1290
     893#: inc/customizer.php:1321
    884894msgid "Select your desired font for the section headings."
    885895msgstr ""
     
    13051315msgstr ""
    13061316
     1317#: inc/upgrade-to-pro.php:24
     1318msgid "Premium Demo"
     1319msgstr ""
     1320
    13071321#: inc/upgrade-to-pro.php:26
    13081322msgid "Rate Us"
     
    13111325#: inc/upgrade-to-pro.php:28
    13121326msgid "Support Forum"
     1327msgstr ""
     1328
     1329#: inc/upgrade-to-pro.php:30
     1330msgid "Theme Page"
     1331msgstr ""
     1332
     1333#: inc/upgrade-to-pro.php:32
     1334msgid "Theme Documentation"
    13131335msgstr ""
    13141336
  • rehab-center/0.2.6/readme.txt

    r296048 r299263  
    55Tested up to: 6.8
    66Requires PHP: 5.6
    7 Stable tag: 0.2.5
     7Stable tag: 0.2.6
    88License: GNU General Public License v2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6464= 0.2.5 =
    6565* 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.
    6673
    6774== Resources ==
  • rehab-center/0.2.6/style.css

    r296048 r299263  
    55Author URI: https://www.theclassictemplates.com/
    66Description: 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.5
     7Version: 0.2.6
    88Tested up to: 6.8
    99Requires PHP: 5.6
     
    177177  color: #000000;
    178178}
     179.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-price del{
     180  margin-right: 6px;
     181  display: inline-flex;
     182}
    179183.single-product .product_meta{
    180184  margin-top: 20px;
Note: See TracChangeset for help on using the changeset viewer.