Make WordPress Themes

Changeset 299264


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

New version of Robotics Services - 0.3.5

Location:
robotics-services/0.3.5
Files:
7 edited
1 copied

Legend:

Unmodified
Added
Removed
  • robotics-services/0.3.5/404.php

    r286029 r299264  
    2020                    <?php echo esc_html(get_theme_mod('robotics_services_page_not_found_content',__( 'Looks like you have taken a wrong turn.....Don\'t worry... it happens to the best of us.', 'robotics-services' ))); ?>
    2121                </p>
     22                <?php if( get_theme_mod('robotics_services_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('robotics_services_page_not_found_btn',__('Homepage','robotics-services')));?><span class="screen-reader-text"><?php echo esc_html(get_theme_mod('robotics_services_page_not_found_btn',__('Homepage','robotics-services')));?></span></a>
     25                    </div>
     26                <?php } ?>
    2227            </div>
    2328        </section>
  • robotics-services/0.3.5/css/default.css

    r290126 r299264  
    669669  margin: 30px 0 40px 0;
    670670}
     671.error404 .page-not-found .not-found-btn{
     672  background-color: var(--first-theme-color);
     673  display: inline-flex;
     674  padding: 5px;
     675  border-radius: 5px;
     676}
     677.error404 .page-not-found .not-found-btn:hover{
     678  background-color: var(--second-theme-color);
     679}
     680.error404 .page-not-found .not-found-btn a{
     681  color: #fff;
     682  text-decoration: none;
     683  font-size: 16px;
     684  font-weight: 600;
     685}
  • robotics-services/0.3.5/inc/color-scheme/custom-color-control.php

    r290126 r299264  
    118118/*--------------------------- Scroll to Top Button Shape -------------------*/
    119119
    120     $robotics_services_scroll_top_shape = get_theme_mod('robotics_services_scroll_top_shape', 'circle');
    121     if($robotics_services_scroll_top_shape == 'box' ){
    122         $robotics_services_color_scheme_css .='#button{';
    123             $robotics_services_color_scheme_css .=' border-radius: 0%';
    124         $robotics_services_color_scheme_css .='}';
    125     }elseif($robotics_services_scroll_top_shape == 'curved' ){
    126         $robotics_services_color_scheme_css .='#button{';
    127             $robotics_services_color_scheme_css .=' border-radius: 20%';
    128         $robotics_services_color_scheme_css .='}';
    129     }elseif($robotics_services_scroll_top_shape == 'circle' ){
    130         $robotics_services_color_scheme_css .='#button{';
    131             $robotics_services_color_scheme_css .=' border-radius: 50%;';
    132         $robotics_services_color_scheme_css .='}';
    133     }
     120$robotics_services_scroll_top_shape = get_theme_mod('robotics_services_scroll_top_shape', 'circle');
     121if($robotics_services_scroll_top_shape == 'box' ){
     122    $robotics_services_color_scheme_css .='#button{';
     123        $robotics_services_color_scheme_css .=' border-radius: 0%';
     124    $robotics_services_color_scheme_css .='}';
     125}elseif($robotics_services_scroll_top_shape == 'curved' ){
     126    $robotics_services_color_scheme_css .='#button{';
     127        $robotics_services_color_scheme_css .=' border-radius: 20%';
     128    $robotics_services_color_scheme_css .='}';
     129}elseif($robotics_services_scroll_top_shape == 'circle' ){
     130    $robotics_services_color_scheme_css .='#button{';
     131        $robotics_services_color_scheme_css .=' border-radius: 50%;';
     132    $robotics_services_color_scheme_css .='}';
     133}
     134
     135/*--------------------------- Menu Typography -------------------*/
     136
     137$robotics_services_theme_lay = get_theme_mod( 'robotics_services_menu_text_transform','Capitalize');
     138if($robotics_services_theme_lay == 'Uppercase'){
     139    $robotics_services_color_scheme_css .='.main-nav a{';
     140        $robotics_services_color_scheme_css .='text-transform: uppercase;';
     141    $robotics_services_color_scheme_css .='}';
     142}else if($robotics_services_theme_lay == 'Lowercase'){
     143    $robotics_services_color_scheme_css .='.main-nav a{';
     144        $robotics_services_color_scheme_css .='text-transform: lowercase;';
     145    $robotics_services_color_scheme_css .='}';
     146}
     147else if($robotics_services_theme_lay == 'Capitalize'){
     148    $robotics_services_color_scheme_css .='.main-nav a{';
     149        $robotics_services_color_scheme_css .='text-transform: capitalize;';
     150    $robotics_services_color_scheme_css .='}';
     151}
  • robotics-services/0.3.5/inc/customizer.php

    r290126 r299264  
    358358    ));
    359359
     360    // Menu Text Transform
     361    $wp_customize->add_setting( 'robotics_services_menu_text_transform', array(
     362        'default'           => 'Capitalize',
     363        'transport' => 'refresh',
     364        'sanitize_callback' => 'robotics_services_sanitize_choices'
     365    ));
     366
     367    $wp_customize->add_control( 'robotics_services_menu_text_transform', array(
     368        'label'    => __( 'Menu Text Transform', 'robotics-services' ),
     369        'section'  => 'robotics_services_topbar_section',
     370        'type'     => 'select',
     371        'choices'  => array(
     372            'None'       => __( 'None', 'robotics-services' ),
     373            'Capitalize' => __( 'Capitalize', 'robotics-services' ),
     374            'Uppercase'  => __( 'Uppercase', 'robotics-services' ),
     375            'Lowercase'  => __( 'Lowercase', 'robotics-services' ),
     376        ),
     377    ));
     378
    360379    $wp_customize->add_setting( 'robotics_services_topbar_settings_upgraded_features',array(
    361380        'sanitize_callback' => 'sanitize_text_field'
     
    838857        'section'=> 'robotics_services_page_not_found',
    839858        'type'=> 'text'
     859    ));
     860
     861    $wp_customize->add_setting('robotics_services_page_not_found_btn',array(
     862        'default' => 'Homepage',
     863        'sanitize_callback' => 'sanitize_text_field',
     864        'capability' => 'edit_theme_options',
     865    ));
     866    $wp_customize->add_control( 'robotics_services_page_not_found_btn', array(
     867       'settings' => 'robotics_services_page_not_found_btn',
     868       'section'   => 'robotics_services_page_not_found',
     869       'label' => __('404 Button', 'robotics-services'),
     870       'type'      => 'text'
    840871    ));
    841872
  • robotics-services/0.3.5/languages/robotics-services.pot

    r296052 r299264  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Robotics Services 0.3.2\n"
     5"Project-Id-Version: Robotics Services 0.3.5\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/theme/robotics-services\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:06:59+05:30\n"
     12"POT-Creation-Date: 2025-11-04T17:11:13+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:819
     43#: inc/customizer.php:838
    4444msgid "404 Not Found"
    4545msgstr ""
    4646
    4747#: 404.php:20
    48 #: inc/customizer.php:836
     48#: inc/customizer.php:855
    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
     
    111115
    112116#: footer.php:129
    113 #: inc/customizer.php:1028
     117#: inc/customizer.php:1059
    114118msgid "TOP"
    115119msgstr ""
     
    219223
    220224#: functions.php:325
    221 #: inc/addon.php:122
     225#: inc/addon.php:121
    222226msgid "View Demo"
    223227msgstr ""
     
    258262msgstr ""
    259263
    260 #: inc/addon.php:59
     264#: inc/addon.php:60
     265msgid "Free Theme Documentation"
     266msgstr ""
     267
     268#: inc/addon.php:61
     269msgid "Need more details? Please check our full documentation for detailed theme setup."
     270msgstr ""
     271
     272#: inc/addon.php:63
     273msgid "Documentation"
     274msgstr ""
     275
     276#: inc/addon.php:68
     277msgid "Need Help?"
     278msgstr ""
     279
     280#: inc/addon.php:69
     281msgid "Go to our support forum to help you out in case of queries and doubts regarding our theme."
     282msgstr ""
     283
     284#: inc/addon.php:71
     285msgid "Contact Us"
     286msgstr ""
     287
     288#: inc/addon.php:79
    261289msgid "Pro version of our theme"
    262290msgstr ""
    263291
    264 #: inc/addon.php:60
     292#: inc/addon.php:80
    265293msgid "Are you excited for our theme? Then we will proceed for pro version of theme."
    266294msgstr ""
    267295
    268 #: inc/addon.php:62
    269 msgid "Go To Premium"
    270 msgstr ""
    271 
    272 #: inc/addon.php:67
    273 msgid "Need Help?"
    274 msgstr ""
    275 
    276 #: inc/addon.php:68
    277 msgid "Go to our support forum to help you out in case of queries and doubts regarding our theme."
    278 msgstr ""
    279 
    280 #: inc/addon.php:70
    281 msgid "Contact Us"
    282 msgstr ""
    283 
    284 #: inc/addon.php:75
    285 msgid "Check Our Demo"
    286 msgstr ""
    287 
    288 #: inc/addon.php:76
    289 msgid "Here, you can view a live demonstration of our premium theme."
    290 msgstr ""
    291 
    292 #: inc/addon.php:78
    293 #: inc/upgrade-to-pro.php:24
    294 msgid "Premium Demo"
    295 msgstr ""
    296 
    297 #: inc/addon.php:85
    298 msgid "Check all classic features"
    299 msgstr ""
    300 
    301 #: inc/addon.php:86
    302 msgid "Explore all our 100+ Premium Themes Collections"
     296#: inc/addon.php:82
     297#: inc/addon.php:120
     298msgid "Get Premium"
     299msgstr ""
     300
     301#: inc/addon.php:87
     302msgid "Leave us a review"
    303303msgstr ""
    304304
    305305#: inc/addon.php:88
    306 #: inc/upgrade-to-pro.php:30
    307 msgid "Theme Page"
    308 msgstr ""
    309 
    310 #: inc/addon.php:93
    311 msgid "Leave us a review"
    312 msgstr ""
    313 
    314 #: inc/addon.php:94
    315306msgid "Are you enjoying our theme? We would love to hear your feedback."
    316307msgstr ""
    317308
    318 #: inc/addon.php:96
     309#: inc/addon.php:90
    319310msgid "Rate This Theme"
    320311msgstr ""
    321312
    322313#: inc/addon.php:101
    323 #: inc/upgrade-to-pro.php:32
    324 msgid "Theme Documentation"
     314msgid "WordPress Theme Bundle"
    325315msgstr ""
    326316
    327317#: inc/addon.php:102
    328 msgid "Need more details? Please check our full documentation for detailed theme setup."
     318msgid "Get access to a collection of 100+ stunning WordPress themes for just $99 — featuring designs for every business niche!"
    329319msgstr ""
    330320
    331321#: inc/addon.php:104
    332 msgid "Documentation"
     322msgid "Get Bundle at 20% OFF"
    333323msgstr ""
    334324
    335325#. translators: %s: Theme name.
    336 #: inc/addon.php:115
     326#: inc/addon.php:114
    337327msgid "Getting started with %s"
    338328msgstr ""
    339329
    340 #: inc/addon.php:121
    341 msgid "Get Premium"
    342 msgstr ""
    343 
    344 #: inc/addon.php:123
     330#: inc/addon.php:122
    345331msgid "Bundle of 100+ Themes at $99"
    346332msgstr ""
    347333
    348334#. translators: 1: Theme name, 2: Author name, 3: Call to action text.
    349 #: inc/addon.php:138
     335#: inc/addon.php:137
    350336msgid "%1$s is proudly brought to you by %2$s. If you like this theme, %3$s :)"
    351337msgstr ""
    352338
    353 #: inc/addon.php:141
     339#: inc/addon.php:140
    354340msgid "Rate it"
    355341msgstr ""
    356342
    357 #: inc/addon.php:141
     343#: inc/addon.php:140
    358344msgctxt "If you like this theme, rate it"
    359345msgid "rate it"
     
    483469
    484470#: inc/customizer.php:334
    485 #: inc/customizer.php:500
     471#: inc/customizer.php:519
    486472msgid "Add Button Text"
    487473msgstr ""
    488474
    489475#: inc/customizer.php:346
    490 #: inc/customizer.php:512
     476#: inc/customizer.php:531
    491477msgid "Add Button URL"
    492478msgstr ""
     
    496482msgstr ""
    497483
     484#: inc/customizer.php:368
     485msgid "Menu Text Transform"
     486msgstr ""
     487
    498488#: inc/customizer.php:372
     489msgid "None"
     490msgstr ""
     491
     492#: inc/customizer.php:373
     493msgid "Capitalize"
     494msgstr ""
     495
     496#: inc/customizer.php:374
     497msgid "Uppercase"
     498msgstr ""
     499
     500#: inc/customizer.php:375
     501msgid "Lowercase"
     502msgstr ""
     503
     504#: inc/customizer.php:391
    499505msgid "Manage Banner Section"
    500506msgstr ""
    501507
    502 #: inc/customizer.php:374
     508#: inc/customizer.php:393
    503509msgid "<p class=\"sec-title\">Manage Banner Section</p> Select Page from the Dropdowns for banner, Also use the given image dimension (500 x 600)."
    504510msgstr ""
    505511
    506 #: inc/customizer.php:386
     512#: inc/customizer.php:405
    507513msgid "Check To Enable This Section"
    508514msgstr ""
    509515
    510 #: inc/customizer.php:398
     516#: inc/customizer.php:417
    511517msgid "Add Sub-heading"
    512518msgstr ""
    513519
    514 #: inc/customizer.php:410
     520#: inc/customizer.php:429
    515521msgid "Select Page to display Banner"
    516522msgstr ""
    517523
    518 #: inc/customizer.php:423
     524#: inc/customizer.php:442
    519525msgid "Add Banner Button Text"
    520526msgstr ""
    521527
    522 #: inc/customizer.php:433
     528#: inc/customizer.php:452
    523529msgid "Add Banner Button Link"
    524530msgstr ""
    525531
    526 #: inc/customizer.php:450
     532#: inc/customizer.php:469
    527533msgid "Manage Case Study Section"
    528534msgstr ""
    529535
    530 #: inc/customizer.php:451
     536#: inc/customizer.php:470
    531537msgid "<p class=\"sec-title\">Manage Case Study Section</p>"
    532538msgstr ""
    533539
    534 #: inc/customizer.php:464
     540#: inc/customizer.php:483
    535541msgid "Check To Enable Section"
    536542msgstr ""
    537543
    538 #: inc/customizer.php:476
     544#: inc/customizer.php:495
    539545msgid "Add Section Sub-heading"
    540546msgstr ""
    541547
    542 #: inc/customizer.php:488
     548#: inc/customizer.php:507
    543549msgid "Add Section Title"
    544550msgstr ""
    545551
    546 #: inc/customizer.php:531
     552#: inc/customizer.php:550
    547553msgid "Select Post"
    548554msgstr ""
    549555
    550 #: inc/customizer.php:548
     556#: inc/customizer.php:567
    551557msgid "Manage Post Section"
    552558msgstr ""
    553559
    554 #: inc/customizer.php:560
     560#: inc/customizer.php:579
    555561msgid "Check to Enable Date"
    556562msgstr ""
    557563
    558 #: inc/customizer.php:571
     564#: inc/customizer.php:590
    559565msgid "Check to Enable Comments"
    560566msgstr ""
    561567
    562 #: inc/customizer.php:582
     568#: inc/customizer.php:601
    563569msgid "Check to Enable Author"
    564570msgstr ""
    565571
    566 #: inc/customizer.php:593
     572#: inc/customizer.php:612
    567573msgid "Check to Enable Time"
    568574msgstr ""
    569575
    570 #: inc/customizer.php:603
    571 #: inc/customizer.php:742
     576#: inc/customizer.php:622
     577#: inc/customizer.php:761
    572578msgid "Metabox Seperator"
    573579msgstr ""
    574580
    575 #: inc/customizer.php:604
    576 #: inc/customizer.php:743
     581#: inc/customizer.php:623
     582#: inc/customizer.php:762
    577583msgid "Ex: \"/\", \"|\", \"-\", ..."
    578584msgstr ""
    579585
    580 #: inc/customizer.php:615
     586#: inc/customizer.php:634
    581587msgid "Theme Post Sidebar Position"
    582588msgstr ""
    583589
    584 #: inc/customizer.php:616
     590#: inc/customizer.php:635
    585591msgid "This option work for blog page, archive page and search page."
    586592msgstr ""
    587593
    588 #: inc/customizer.php:619
    589 #: inc/customizer.php:756
     594#: inc/customizer.php:638
     595#: inc/customizer.php:775
    590596msgid "Full"
    591597msgstr ""
    592598
    593 #: inc/customizer.php:620
    594 #: inc/customizer.php:757
    595 #: inc/customizer.php:805
    596 #: inc/customizer.php:905
    597 #: inc/customizer.php:1022
     599#: inc/customizer.php:639
     600#: inc/customizer.php:776
     601#: inc/customizer.php:824
     602#: inc/customizer.php:936
     603#: inc/customizer.php:1053
    598604msgid "Left"
    599605msgstr ""
    600606
    601 #: inc/customizer.php:621
    602 #: inc/customizer.php:758
    603 #: inc/customizer.php:806
    604 #: inc/customizer.php:906
    605 #: inc/customizer.php:1021
     607#: inc/customizer.php:640
     608#: inc/customizer.php:777
     609#: inc/customizer.php:825
     610#: inc/customizer.php:937
     611#: inc/customizer.php:1052
    606612msgid "Right"
    607613msgstr ""
    608614
    609 #: inc/customizer.php:622
     615#: inc/customizer.php:641
    610616msgid "Three Columns"
    611617msgstr ""
    612618
    613 #: inc/customizer.php:623
     619#: inc/customizer.php:642
    614620msgid "Four Columns"
    615621msgstr ""
    616622
    617 #: inc/customizer.php:624
     623#: inc/customizer.php:643
    618624msgid "Grid Layout"
    619625msgstr ""
    620626
    621 #: inc/customizer.php:634
     627#: inc/customizer.php:653
    622628msgid "Post Description Length"
    623629msgstr ""
    624630
    625 #: inc/customizer.php:637
     631#: inc/customizer.php:656
    626632msgid "No Content"
    627633msgstr ""
    628634
    629 #: inc/customizer.php:638
     635#: inc/customizer.php:657
    630636msgid "Excerpt Content"
    631637msgstr ""
    632638
    633 #: inc/customizer.php:639
     639#: inc/customizer.php:658
    634640msgid "Full Content"
    635641msgstr ""
    636642
    637 #: inc/customizer.php:649
     643#: inc/customizer.php:668
    638644msgid "Show / Hide Blog Post Thumbnail"
    639645msgstr ""
    640646
    641 #: inc/customizer.php:659
     647#: inc/customizer.php:678
    642648msgid "Blog Page Image Box Shadow"
    643649msgstr ""
    644650
    645 #: inc/customizer.php:681
     651#: inc/customizer.php:700
    646652msgid "Manage Single Post Section"
    647653msgstr ""
    648654
    649 #: inc/customizer.php:692
     655#: inc/customizer.php:711
    650656msgid "Check To Enable Breadcrumb"
    651657msgstr ""
    652658
    653 #: inc/customizer.php:702
     659#: inc/customizer.php:721
    654660msgid "Enable / Disable Date "
    655661msgstr ""
    656662
    657 #: inc/customizer.php:712
     663#: inc/customizer.php:731
    658664msgid "Enable / Disable Author"
    659665msgstr ""
    660666
    661 #: inc/customizer.php:722
     667#: inc/customizer.php:741
    662668msgid "Enable / Disable Comments"
    663669msgstr ""
    664670
    665 #: inc/customizer.php:732
     671#: inc/customizer.php:751
    666672msgid "Enable / Disable Time"
    667673msgstr ""
    668674
    669 #: inc/customizer.php:753
     675#: inc/customizer.php:772
    670676msgid "Single post sidebar layout"
    671677msgstr ""
    672678
    673 #: inc/customizer.php:768
     679#: inc/customizer.php:787
    674680msgid "Single Post Image Box Shadow"
    675681msgstr ""
    676682
    677 #: inc/customizer.php:790
     683#: inc/customizer.php:809
    678684msgid "Manage Page Section"
    679685msgstr ""
    680686
    681 #: inc/customizer.php:802
     687#: inc/customizer.php:821
    682688msgid "Theme Page Sidebar Position"
    683689msgstr ""
    684690
    685 #: inc/customizer.php:807
     691#: inc/customizer.php:826
    686692msgid "No Sidebar"
    687693msgstr ""
    688694
    689 #: inc/customizer.php:813
     695#: inc/customizer.php:832
    690696msgid "Manage 404 Page Section"
    691697msgstr ""
    692698
    693 #: inc/customizer.php:823
     699#: inc/customizer.php:842
    694700msgid "404 Heading"
    695701msgstr ""
    696702
    697 #: inc/customizer.php:834
     703#: inc/customizer.php:853
    698704msgid "404 Text"
    699705msgstr ""
    700706
    701 #: inc/customizer.php:854
     707#: inc/customizer.php:869
     708msgid "404 Button"
     709msgstr ""
     710
     711#: inc/customizer.php:885
    702712msgid "Manage Footer Section"
    703713msgstr ""
    704714
    705 #: inc/customizer.php:855
     715#: inc/customizer.php:886
    706716msgid "<p class=\"sec-title\">Manage Footer Section</p>"
    707717msgstr ""
    708718
    709 #: inc/customizer.php:867
     719#: inc/customizer.php:898
    710720msgid "Check to Enable Footer Widget"
    711721msgstr ""
    712722
    713 #: inc/customizer.php:880
     723#: inc/customizer.php:911
    714724msgid "Footer Background Color"
    715725msgstr ""
    716726
    717 #: inc/customizer.php:889
     727#: inc/customizer.php:920
    718728msgid "Footer Background Image"
    719729msgstr ""
    720730
    721 #: inc/customizer.php:900
     731#: inc/customizer.php:931
    722732msgid "Footer Image Position"
    723733msgstr ""
    724734
    725 #: inc/customizer.php:903
    726 #: inc/customizer.php:1023
     735#: inc/customizer.php:934
     736#: inc/customizer.php:1054
    727737msgid "Center"
    728738msgstr ""
    729739
    730 #: inc/customizer.php:904
     740#: inc/customizer.php:935
    731741msgid "Top"
    732742msgstr ""
    733743
    734 #: inc/customizer.php:907
     744#: inc/customizer.php:938
    735745msgid "Bottom"
    736746msgstr ""
    737747
    738 #: inc/customizer.php:918
     748#: inc/customizer.php:949
    739749msgid "Footer widget area"
    740750msgstr ""
    741751
    742 #: inc/customizer.php:920
     752#: inc/customizer.php:951
    743753msgid "One"
    744754msgstr ""
    745755
    746 #: inc/customizer.php:921
     756#: inc/customizer.php:952
    747757msgid "Two"
    748758msgstr ""
    749759
    750 #: inc/customizer.php:922
     760#: inc/customizer.php:953
    751761msgid "Three"
    752762msgstr ""
    753763
    754 #: inc/customizer.php:923
     764#: inc/customizer.php:954
    755765msgid "Four"
    756766msgstr ""
    757767
    758 #: inc/customizer.php:933
     768#: inc/customizer.php:964
    759769msgid "Copyright Line"
    760770msgstr ""
    761771
    762 #: inc/customizer.php:944
     772#: inc/customizer.php:975
    763773msgid "Copyright Link"
    764774msgstr ""
    765775
    766 #: inc/customizer.php:958
     776#: inc/customizer.php:989
    767777msgid "Coypright Color"
    768778msgstr ""
    769779
    770 #: inc/customizer.php:971
     780#: inc/customizer.php:1002
    771781msgid "Title Color"
    772782msgstr ""
    773783
    774 #: inc/customizer.php:984
     784#: inc/customizer.php:1015
    775785msgid "Description Color"
    776786msgstr ""
    777787
    778 #: inc/customizer.php:997
     788#: inc/customizer.php:1028
    779789msgid "List Color"
    780790msgstr ""
    781791
    782 #: inc/customizer.php:1006
     792#: inc/customizer.php:1037
    783793msgid "Check To Show Scroll To Top"
    784794msgstr ""
    785795
    786 #: inc/customizer.php:1019
     796#: inc/customizer.php:1050
    787797msgid "Scroll To Top Positions"
    788798msgstr ""
    789799
    790 #: inc/customizer.php:1032
     800#: inc/customizer.php:1063
    791801msgid "Scroll To Top Button Text"
    792802msgstr ""
    793803
    794 #: inc/customizer.php:1043
     804#: inc/customizer.php:1074
    795805msgid "Scroll to Top Button Shape"
    796806msgstr ""
    797807
    798 #: inc/customizer.php:1048
     808#: inc/customizer.php:1079
    799809msgid "Box"
    800810msgstr ""
    801811
    802 #: inc/customizer.php:1049
     812#: inc/customizer.php:1080
    803813msgid "Curved"
    804814msgstr ""
    805815
    806 #: inc/customizer.php:1050
     816#: inc/customizer.php:1081
    807817msgid "Circle"
    808818msgstr ""
    809819
    810 #: inc/customizer.php:1066
     820#: inc/customizer.php:1097
    811821msgid "Manage Footer Social Section"
    812822msgstr ""
    813823
    814 #: inc/customizer.php:1067
     824#: inc/customizer.php:1098
    815825msgid "<p class=\"sec-title\">Manage Footer Social Section</p>"
    816826msgstr ""
    817827
    818 #: inc/customizer.php:1080
     828#: inc/customizer.php:1111
    819829msgid "Facebook Link"
    820830msgstr ""
    821831
    822 #: inc/customizer.php:1092
     832#: inc/customizer.php:1123
    823833msgid "Instagram Link"
    824834msgstr ""
    825835
    826 #: inc/customizer.php:1104
     836#: inc/customizer.php:1135
    827837msgid "Pinterest Link"
    828838msgstr ""
    829839
    830 #: inc/customizer.php:1116
     840#: inc/customizer.php:1147
    831841msgid "Twitter Link"
    832842msgstr ""
    833843
    834 #: inc/customizer.php:1128
     844#: inc/customizer.php:1159
    835845msgid "Youtube Link"
    836846msgstr ""
    837847
    838 #: inc/customizer.php:1144
     848#: inc/customizer.php:1175
    839849msgid "Google Fonts"
    840850msgstr ""
    841851
    842 #: inc/customizer.php:1190
     852#: inc/customizer.php:1221
    843853msgid "Select your desired font for the headings."
    844854msgstr ""
    845855
    846 #: inc/customizer.php:1200
     856#: inc/customizer.php:1231
    847857msgid "Select your desired font for the body."
    848858msgstr ""
     
    12681278msgstr ""
    12691279
     1280#: inc/upgrade-to-pro.php:24
     1281msgid "Premium Demo"
     1282msgstr ""
     1283
    12701284#: inc/upgrade-to-pro.php:26
    12711285msgid "Rate Us"
     
    12741288#: inc/upgrade-to-pro.php:28
    12751289msgid "Support Forum"
     1290msgstr ""
     1291
     1292#: inc/upgrade-to-pro.php:30
     1293msgid "Theme Page"
     1294msgstr ""
     1295
     1296#: inc/upgrade-to-pro.php:32
     1297msgid "Theme Documentation"
    12761298msgstr ""
    12771299
  • robotics-services/0.3.5/readme.txt

    r296052 r299264  
    55Tested up to: 6.8
    66Requires PHP: 5.6
    7 Stable tag: 0.3.4
     7Stable tag: 0.3.5
    88License: GNU General Public License v2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5353= 0.3.4 =
    5454* Updated description.
     55
     56= 0.3.5 =
     57* Added menu text transform option in customizer.
     58* Added homepage button option in 404 page section.
     59* Resolved css error in cart page.
     60* Updated pot file.
    5561
    5662== Resources ==
  • robotics-services/0.3.5/style.css

    r296052 r299264  
    55Author URI: https://www.theclassictemplates.com/
    66Description: Robotics Services is a sleek, modern, and SEO-friendly theme crafted for robotics engineers, automation companies, AI startups, machine learning firms, and industrial technology providers looking to create a professional online presence. Its futuristic layout and smooth navigation make it ideal for showcasing robotic process automation, IoT devices, AI-driven projects, research case studies, and engineering innovations in an engaging and organized way. Built on a Bootstrap framework, the theme ensures fast loading speed, responsive design, and flawless performance across all devices. It offers extensive customization options, allowing users to personalize colors, fonts, layouts, and sections without any coding knowledge. You can easily display your services, portfolio, client testimonials, and achievements, helping build authority and trust within the robotics industry. Compatibility with essential plugins like Contact Form 7, Yoast SEO, Mailchimp, and Elementor Addons boosts its functionality—enabling seamless communication, search optimization, and lead generation. Translation-ready and cross-browser compatible, this theme ensures a global reach while maintaining an advanced, tech-inspired look. Perfect for AI labs, research institutes, industrial automation providers, and engineering startups, Robotics Services delivers a high-performance, professional, and innovative website experience that reflects the future of robotics and intelligent automation.
    7 Version: 0.3.4
     7Version: 0.3.5
    88Tested up to: 6.8
    99Requires PHP: 5.6
     
    941941  margin: 7px 0;
    942942}
     943.wp-block-woocommerce-empty-cart-block .wc-block-grid__product-price del{
     944  margin-right: 6px;
     945  display: inline-flex;
     946}
     947.wp-block-woocommerce-cart .wp-block-woocommerce-empty-cart-block .wc-block-grid__product-onsale {
     948  left: 22px !important;
     949}
    943950.single-product .summary button.woosw-btn, .single-product .related.products button.woosw-btn, .woocommerce-shop button.woosw-btn, .woosw-popup-content .add_to_cart_inline .added_to_cart, .woosw-list .woosw-item--actions .added_to_cart, .woosw-list .woosw-copy #woosw_copy_btn{
    944951  padding: 7px 15px;
Note: See TracChangeset for help on using the changeset viewer.