Changeset 299264
- Timestamp:
- 11/19/2025 04:27:56 PM (5 days ago)
- Location:
- robotics-services/0.3.5
- Files:
-
- 7 edited
- 1 copied
-
. (copied) (copied from robotics-services/0.3.4)
-
404.php (modified) (1 diff)
-
css/default.css (modified) (1 diff)
-
inc/color-scheme/custom-color-control.php (modified) (1 diff)
-
inc/customizer.php (modified) (2 diffs)
-
languages/robotics-services.pot (modified) (10 diffs)
-
readme.txt (modified) (2 diffs)
-
style.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
robotics-services/0.3.5/404.php
r286029 r299264 20 20 <?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' ))); ?> 21 21 </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 } ?> 22 27 </div> 23 28 </section> -
robotics-services/0.3.5/css/default.css
r290126 r299264 669 669 margin: 30px 0 40px 0; 670 670 } 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 118 118 /*--------------------------- Scroll to Top Button Shape -------------------*/ 119 119 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'); 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 } 134 135 /*--------------------------- Menu Typography -------------------*/ 136 137 $robotics_services_theme_lay = get_theme_mod( 'robotics_services_menu_text_transform','Capitalize'); 138 if($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 } 147 else 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 358 358 )); 359 359 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 360 379 $wp_customize->add_setting( 'robotics_services_topbar_settings_upgraded_features',array( 361 380 'sanitize_callback' => 'sanitize_text_field' … … 838 857 'section'=> 'robotics_services_page_not_found', 839 858 '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' 840 871 )); 841 872 -
robotics-services/0.3.5/languages/robotics-services.pot
r296052 r299264 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Robotics Services 0.3. 2\n"5 "Project-Id-Version: Robotics Services 0.3.5\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/theme/robotics-services\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:06:59+05:30\n"12 "POT-Creation-Date: 2025-11-04T17:11:13+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:8 1943 #: inc/customizer.php:838 44 44 msgid "404 Not Found" 45 45 msgstr "" 46 46 47 47 #: 404.php:20 48 #: inc/customizer.php:8 3648 #: inc/customizer.php:855 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 … … 111 115 112 116 #: footer.php:129 113 #: inc/customizer.php:10 28117 #: inc/customizer.php:1059 114 118 msgid "TOP" 115 119 msgstr "" … … 219 223 220 224 #: functions.php:325 221 #: inc/addon.php:12 2225 #: inc/addon.php:121 222 226 msgid "View Demo" 223 227 msgstr "" … … 258 262 msgstr "" 259 263 260 #: inc/addon.php:59 264 #: inc/addon.php:60 265 msgid "Free Theme Documentation" 266 msgstr "" 267 268 #: inc/addon.php:61 269 msgid "Need more details? Please check our full documentation for detailed theme setup." 270 msgstr "" 271 272 #: inc/addon.php:63 273 msgid "Documentation" 274 msgstr "" 275 276 #: inc/addon.php:68 277 msgid "Need Help?" 278 msgstr "" 279 280 #: inc/addon.php:69 281 msgid "Go to our support forum to help you out in case of queries and doubts regarding our theme." 282 msgstr "" 283 284 #: inc/addon.php:71 285 msgid "Contact Us" 286 msgstr "" 287 288 #: inc/addon.php:79 261 289 msgid "Pro version of our theme" 262 290 msgstr "" 263 291 264 #: inc/addon.php: 60292 #: inc/addon.php:80 265 293 msgid "Are you excited for our theme? Then we will proceed for pro version of theme." 266 294 msgstr "" 267 295 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 298 msgid "Get Premium" 299 msgstr "" 300 301 #: inc/addon.php:87 302 msgid "Leave us a review" 303 303 msgstr "" 304 304 305 305 #: inc/addon.php:88 306 #: inc/upgrade-to-pro.php:30307 msgid "Theme Page"308 msgstr ""309 310 #: inc/addon.php:93311 msgid "Leave us a review"312 msgstr ""313 314 #: inc/addon.php:94315 306 msgid "Are you enjoying our theme? We would love to hear your feedback." 316 307 msgstr "" 317 308 318 #: inc/addon.php:9 6309 #: inc/addon.php:90 319 310 msgid "Rate This Theme" 320 311 msgstr "" 321 312 322 313 #: inc/addon.php:101 323 #: inc/upgrade-to-pro.php:32 324 msgid "Theme Documentation" 314 msgid "WordPress Theme Bundle" 325 315 msgstr "" 326 316 327 317 #: inc/addon.php:102 328 msgid " Need more details? Please check our full documentation for detailed theme setup."318 msgid "Get access to a collection of 100+ stunning WordPress themes for just $99 — featuring designs for every business niche!" 329 319 msgstr "" 330 320 331 321 #: inc/addon.php:104 332 msgid " Documentation"322 msgid "Get Bundle at 20% OFF" 333 323 msgstr "" 334 324 335 325 #. translators: %s: Theme name. 336 #: inc/addon.php:11 5326 #: inc/addon.php:114 337 327 msgid "Getting started with %s" 338 328 msgstr "" 339 329 340 #: inc/addon.php:121 341 msgid "Get Premium" 342 msgstr "" 343 344 #: inc/addon.php:123 330 #: inc/addon.php:122 345 331 msgid "Bundle of 100+ Themes at $99" 346 332 msgstr "" 347 333 348 334 #. translators: 1: Theme name, 2: Author name, 3: Call to action text. 349 #: inc/addon.php:13 8335 #: inc/addon.php:137 350 336 msgid "%1$s is proudly brought to you by %2$s. If you like this theme, %3$s :)" 351 337 msgstr "" 352 338 353 #: inc/addon.php:14 1339 #: inc/addon.php:140 354 340 msgid "Rate it" 355 341 msgstr "" 356 342 357 #: inc/addon.php:14 1343 #: inc/addon.php:140 358 344 msgctxt "If you like this theme, rate it" 359 345 msgid "rate it" … … 483 469 484 470 #: inc/customizer.php:334 485 #: inc/customizer.php:5 00471 #: inc/customizer.php:519 486 472 msgid "Add Button Text" 487 473 msgstr "" 488 474 489 475 #: inc/customizer.php:346 490 #: inc/customizer.php:5 12476 #: inc/customizer.php:531 491 477 msgid "Add Button URL" 492 478 msgstr "" … … 496 482 msgstr "" 497 483 484 #: inc/customizer.php:368 485 msgid "Menu Text Transform" 486 msgstr "" 487 498 488 #: inc/customizer.php:372 489 msgid "None" 490 msgstr "" 491 492 #: inc/customizer.php:373 493 msgid "Capitalize" 494 msgstr "" 495 496 #: inc/customizer.php:374 497 msgid "Uppercase" 498 msgstr "" 499 500 #: inc/customizer.php:375 501 msgid "Lowercase" 502 msgstr "" 503 504 #: inc/customizer.php:391 499 505 msgid "Manage Banner Section" 500 506 msgstr "" 501 507 502 #: inc/customizer.php:3 74508 #: inc/customizer.php:393 503 509 msgid "<p class=\"sec-title\">Manage Banner Section</p> Select Page from the Dropdowns for banner, Also use the given image dimension (500 x 600)." 504 510 msgstr "" 505 511 506 #: inc/customizer.php: 386512 #: inc/customizer.php:405 507 513 msgid "Check To Enable This Section" 508 514 msgstr "" 509 515 510 #: inc/customizer.php: 398516 #: inc/customizer.php:417 511 517 msgid "Add Sub-heading" 512 518 msgstr "" 513 519 514 #: inc/customizer.php:4 10520 #: inc/customizer.php:429 515 521 msgid "Select Page to display Banner" 516 522 msgstr "" 517 523 518 #: inc/customizer.php:4 23524 #: inc/customizer.php:442 519 525 msgid "Add Banner Button Text" 520 526 msgstr "" 521 527 522 #: inc/customizer.php:4 33528 #: inc/customizer.php:452 523 529 msgid "Add Banner Button Link" 524 530 msgstr "" 525 531 526 #: inc/customizer.php:4 50532 #: inc/customizer.php:469 527 533 msgid "Manage Case Study Section" 528 534 msgstr "" 529 535 530 #: inc/customizer.php:4 51536 #: inc/customizer.php:470 531 537 msgid "<p class=\"sec-title\">Manage Case Study Section</p>" 532 538 msgstr "" 533 539 534 #: inc/customizer.php:4 64540 #: inc/customizer.php:483 535 541 msgid "Check To Enable Section" 536 542 msgstr "" 537 543 538 #: inc/customizer.php:4 76544 #: inc/customizer.php:495 539 545 msgid "Add Section Sub-heading" 540 546 msgstr "" 541 547 542 #: inc/customizer.php: 488548 #: inc/customizer.php:507 543 549 msgid "Add Section Title" 544 550 msgstr "" 545 551 546 #: inc/customizer.php:5 31552 #: inc/customizer.php:550 547 553 msgid "Select Post" 548 554 msgstr "" 549 555 550 #: inc/customizer.php:5 48556 #: inc/customizer.php:567 551 557 msgid "Manage Post Section" 552 558 msgstr "" 553 559 554 #: inc/customizer.php:5 60560 #: inc/customizer.php:579 555 561 msgid "Check to Enable Date" 556 562 msgstr "" 557 563 558 #: inc/customizer.php:5 71564 #: inc/customizer.php:590 559 565 msgid "Check to Enable Comments" 560 566 msgstr "" 561 567 562 #: inc/customizer.php: 582568 #: inc/customizer.php:601 563 569 msgid "Check to Enable Author" 564 570 msgstr "" 565 571 566 #: inc/customizer.php: 593572 #: inc/customizer.php:612 567 573 msgid "Check to Enable Time" 568 574 msgstr "" 569 575 570 #: inc/customizer.php:6 03571 #: inc/customizer.php:7 42576 #: inc/customizer.php:622 577 #: inc/customizer.php:761 572 578 msgid "Metabox Seperator" 573 579 msgstr "" 574 580 575 #: inc/customizer.php:6 04576 #: inc/customizer.php:7 43581 #: inc/customizer.php:623 582 #: inc/customizer.php:762 577 583 msgid "Ex: \"/\", \"|\", \"-\", ..." 578 584 msgstr "" 579 585 580 #: inc/customizer.php:6 15586 #: inc/customizer.php:634 581 587 msgid "Theme Post Sidebar Position" 582 588 msgstr "" 583 589 584 #: inc/customizer.php:6 16590 #: inc/customizer.php:635 585 591 msgid "This option work for blog page, archive page and search page." 586 592 msgstr "" 587 593 588 #: inc/customizer.php:6 19589 #: inc/customizer.php:7 56594 #: inc/customizer.php:638 595 #: inc/customizer.php:775 590 596 msgid "Full" 591 597 msgstr "" 592 598 593 #: inc/customizer.php:6 20594 #: inc/customizer.php:7 57595 #: inc/customizer.php:8 05596 #: inc/customizer.php:9 05597 #: inc/customizer.php:10 22599 #: inc/customizer.php:639 600 #: inc/customizer.php:776 601 #: inc/customizer.php:824 602 #: inc/customizer.php:936 603 #: inc/customizer.php:1053 598 604 msgid "Left" 599 605 msgstr "" 600 606 601 #: inc/customizer.php:6 21602 #: inc/customizer.php:7 58603 #: inc/customizer.php:8 06604 #: inc/customizer.php:9 06605 #: inc/customizer.php:10 21607 #: inc/customizer.php:640 608 #: inc/customizer.php:777 609 #: inc/customizer.php:825 610 #: inc/customizer.php:937 611 #: inc/customizer.php:1052 606 612 msgid "Right" 607 613 msgstr "" 608 614 609 #: inc/customizer.php:6 22615 #: inc/customizer.php:641 610 616 msgid "Three Columns" 611 617 msgstr "" 612 618 613 #: inc/customizer.php:6 23619 #: inc/customizer.php:642 614 620 msgid "Four Columns" 615 621 msgstr "" 616 622 617 #: inc/customizer.php:6 24623 #: inc/customizer.php:643 618 624 msgid "Grid Layout" 619 625 msgstr "" 620 626 621 #: inc/customizer.php:6 34627 #: inc/customizer.php:653 622 628 msgid "Post Description Length" 623 629 msgstr "" 624 630 625 #: inc/customizer.php:6 37631 #: inc/customizer.php:656 626 632 msgid "No Content" 627 633 msgstr "" 628 634 629 #: inc/customizer.php:6 38635 #: inc/customizer.php:657 630 636 msgid "Excerpt Content" 631 637 msgstr "" 632 638 633 #: inc/customizer.php:6 39639 #: inc/customizer.php:658 634 640 msgid "Full Content" 635 641 msgstr "" 636 642 637 #: inc/customizer.php:6 49643 #: inc/customizer.php:668 638 644 msgid "Show / Hide Blog Post Thumbnail" 639 645 msgstr "" 640 646 641 #: inc/customizer.php:6 59647 #: inc/customizer.php:678 642 648 msgid "Blog Page Image Box Shadow" 643 649 msgstr "" 644 650 645 #: inc/customizer.php: 681651 #: inc/customizer.php:700 646 652 msgid "Manage Single Post Section" 647 653 msgstr "" 648 654 649 #: inc/customizer.php: 692655 #: inc/customizer.php:711 650 656 msgid "Check To Enable Breadcrumb" 651 657 msgstr "" 652 658 653 #: inc/customizer.php:7 02659 #: inc/customizer.php:721 654 660 msgid "Enable / Disable Date " 655 661 msgstr "" 656 662 657 #: inc/customizer.php:7 12663 #: inc/customizer.php:731 658 664 msgid "Enable / Disable Author" 659 665 msgstr "" 660 666 661 #: inc/customizer.php:7 22667 #: inc/customizer.php:741 662 668 msgid "Enable / Disable Comments" 663 669 msgstr "" 664 670 665 #: inc/customizer.php:7 32671 #: inc/customizer.php:751 666 672 msgid "Enable / Disable Time" 667 673 msgstr "" 668 674 669 #: inc/customizer.php:7 53675 #: inc/customizer.php:772 670 676 msgid "Single post sidebar layout" 671 677 msgstr "" 672 678 673 #: inc/customizer.php:7 68679 #: inc/customizer.php:787 674 680 msgid "Single Post Image Box Shadow" 675 681 msgstr "" 676 682 677 #: inc/customizer.php: 790683 #: inc/customizer.php:809 678 684 msgid "Manage Page Section" 679 685 msgstr "" 680 686 681 #: inc/customizer.php:8 02687 #: inc/customizer.php:821 682 688 msgid "Theme Page Sidebar Position" 683 689 msgstr "" 684 690 685 #: inc/customizer.php:8 07691 #: inc/customizer.php:826 686 692 msgid "No Sidebar" 687 693 msgstr "" 688 694 689 #: inc/customizer.php:8 13695 #: inc/customizer.php:832 690 696 msgid "Manage 404 Page Section" 691 697 msgstr "" 692 698 693 #: inc/customizer.php:8 23699 #: inc/customizer.php:842 694 700 msgid "404 Heading" 695 701 msgstr "" 696 702 697 #: inc/customizer.php:8 34703 #: inc/customizer.php:853 698 704 msgid "404 Text" 699 705 msgstr "" 700 706 701 #: inc/customizer.php:854 707 #: inc/customizer.php:869 708 msgid "404 Button" 709 msgstr "" 710 711 #: inc/customizer.php:885 702 712 msgid "Manage Footer Section" 703 713 msgstr "" 704 714 705 #: inc/customizer.php:8 55715 #: inc/customizer.php:886 706 716 msgid "<p class=\"sec-title\">Manage Footer Section</p>" 707 717 msgstr "" 708 718 709 #: inc/customizer.php:8 67719 #: inc/customizer.php:898 710 720 msgid "Check to Enable Footer Widget" 711 721 msgstr "" 712 722 713 #: inc/customizer.php: 880723 #: inc/customizer.php:911 714 724 msgid "Footer Background Color" 715 725 msgstr "" 716 726 717 #: inc/customizer.php: 889727 #: inc/customizer.php:920 718 728 msgid "Footer Background Image" 719 729 msgstr "" 720 730 721 #: inc/customizer.php:9 00731 #: inc/customizer.php:931 722 732 msgid "Footer Image Position" 723 733 msgstr "" 724 734 725 #: inc/customizer.php:9 03726 #: inc/customizer.php:10 23735 #: inc/customizer.php:934 736 #: inc/customizer.php:1054 727 737 msgid "Center" 728 738 msgstr "" 729 739 730 #: inc/customizer.php:9 04740 #: inc/customizer.php:935 731 741 msgid "Top" 732 742 msgstr "" 733 743 734 #: inc/customizer.php:9 07744 #: inc/customizer.php:938 735 745 msgid "Bottom" 736 746 msgstr "" 737 747 738 #: inc/customizer.php:9 18748 #: inc/customizer.php:949 739 749 msgid "Footer widget area" 740 750 msgstr "" 741 751 742 #: inc/customizer.php:9 20752 #: inc/customizer.php:951 743 753 msgid "One" 744 754 msgstr "" 745 755 746 #: inc/customizer.php:9 21756 #: inc/customizer.php:952 747 757 msgid "Two" 748 758 msgstr "" 749 759 750 #: inc/customizer.php:9 22760 #: inc/customizer.php:953 751 761 msgid "Three" 752 762 msgstr "" 753 763 754 #: inc/customizer.php:9 23764 #: inc/customizer.php:954 755 765 msgid "Four" 756 766 msgstr "" 757 767 758 #: inc/customizer.php:9 33768 #: inc/customizer.php:964 759 769 msgid "Copyright Line" 760 770 msgstr "" 761 771 762 #: inc/customizer.php:9 44772 #: inc/customizer.php:975 763 773 msgid "Copyright Link" 764 774 msgstr "" 765 775 766 #: inc/customizer.php:9 58776 #: inc/customizer.php:989 767 777 msgid "Coypright Color" 768 778 msgstr "" 769 779 770 #: inc/customizer.php: 971780 #: inc/customizer.php:1002 771 781 msgid "Title Color" 772 782 msgstr "" 773 783 774 #: inc/customizer.php: 984784 #: inc/customizer.php:1015 775 785 msgid "Description Color" 776 786 msgstr "" 777 787 778 #: inc/customizer.php: 997788 #: inc/customizer.php:1028 779 789 msgid "List Color" 780 790 msgstr "" 781 791 782 #: inc/customizer.php:10 06792 #: inc/customizer.php:1037 783 793 msgid "Check To Show Scroll To Top" 784 794 msgstr "" 785 795 786 #: inc/customizer.php:10 19796 #: inc/customizer.php:1050 787 797 msgid "Scroll To Top Positions" 788 798 msgstr "" 789 799 790 #: inc/customizer.php:10 32800 #: inc/customizer.php:1063 791 801 msgid "Scroll To Top Button Text" 792 802 msgstr "" 793 803 794 #: inc/customizer.php:10 43804 #: inc/customizer.php:1074 795 805 msgid "Scroll to Top Button Shape" 796 806 msgstr "" 797 807 798 #: inc/customizer.php:10 48808 #: inc/customizer.php:1079 799 809 msgid "Box" 800 810 msgstr "" 801 811 802 #: inc/customizer.php:10 49812 #: inc/customizer.php:1080 803 813 msgid "Curved" 804 814 msgstr "" 805 815 806 #: inc/customizer.php:10 50816 #: inc/customizer.php:1081 807 817 msgid "Circle" 808 818 msgstr "" 809 819 810 #: inc/customizer.php:10 66820 #: inc/customizer.php:1097 811 821 msgid "Manage Footer Social Section" 812 822 msgstr "" 813 823 814 #: inc/customizer.php:10 67824 #: inc/customizer.php:1098 815 825 msgid "<p class=\"sec-title\">Manage Footer Social Section</p>" 816 826 msgstr "" 817 827 818 #: inc/customizer.php:1 080828 #: inc/customizer.php:1111 819 829 msgid "Facebook Link" 820 830 msgstr "" 821 831 822 #: inc/customizer.php:1 092832 #: inc/customizer.php:1123 823 833 msgid "Instagram Link" 824 834 msgstr "" 825 835 826 #: inc/customizer.php:11 04836 #: inc/customizer.php:1135 827 837 msgid "Pinterest Link" 828 838 msgstr "" 829 839 830 #: inc/customizer.php:11 16840 #: inc/customizer.php:1147 831 841 msgid "Twitter Link" 832 842 msgstr "" 833 843 834 #: inc/customizer.php:11 28844 #: inc/customizer.php:1159 835 845 msgid "Youtube Link" 836 846 msgstr "" 837 847 838 #: inc/customizer.php:11 44848 #: inc/customizer.php:1175 839 849 msgid "Google Fonts" 840 850 msgstr "" 841 851 842 #: inc/customizer.php:1 190852 #: inc/customizer.php:1221 843 853 msgid "Select your desired font for the headings." 844 854 msgstr "" 845 855 846 #: inc/customizer.php:12 00856 #: inc/customizer.php:1231 847 857 msgid "Select your desired font for the body." 848 858 msgstr "" … … 1268 1278 msgstr "" 1269 1279 1280 #: inc/upgrade-to-pro.php:24 1281 msgid "Premium Demo" 1282 msgstr "" 1283 1270 1284 #: inc/upgrade-to-pro.php:26 1271 1285 msgid "Rate Us" … … 1274 1288 #: inc/upgrade-to-pro.php:28 1275 1289 msgid "Support Forum" 1290 msgstr "" 1291 1292 #: inc/upgrade-to-pro.php:30 1293 msgid "Theme Page" 1294 msgstr "" 1295 1296 #: inc/upgrade-to-pro.php:32 1297 msgid "Theme Documentation" 1276 1298 msgstr "" 1277 1299 -
robotics-services/0.3.5/readme.txt
r296052 r299264 5 5 Tested up to: 6.8 6 6 Requires PHP: 5.6 7 Stable tag: 0.3. 47 Stable tag: 0.3.5 8 8 License: GNU General Public License v2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 53 53 = 0.3.4 = 54 54 * 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. 55 61 56 62 == Resources == -
robotics-services/0.3.5/style.css
r296052 r299264 5 5 Author URI: https://www.theclassictemplates.com/ 6 6 Description: 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. 47 Version: 0.3.5 8 8 Tested up to: 6.8 9 9 Requires PHP: 5.6 … … 941 941 margin: 7px 0; 942 942 } 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 } 943 950 .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{ 944 951 padding: 7px 15px;
Note: See TracChangeset
for help on using the changeset viewer.