Changeset 3429488
- Timestamp:
- 12/30/2025 08:29:11 AM (3 weeks ago)
- Location:
- custom-iframe
- Files:
-
- 12 edited
- 1 copied
-
tags/1.0.18 (copied) (copied from custom-iframe/trunk)
-
tags/1.0.18/assets/css/admin/admin.css (modified) (6 diffs)
-
tags/1.0.18/custom-iframe-widget.php (modified) (2 diffs)
-
tags/1.0.18/includes/class-custif-admin.php (modified) (1 diff)
-
tags/1.0.18/languages/custom-iframe.pot (modified) (4 diffs)
-
tags/1.0.18/readme.txt (modified) (3 diffs)
-
tags/1.0.18/widget/class-custom-iframe-widget.php (modified) (1 diff)
-
trunk/assets/css/admin/admin.css (modified) (6 diffs)
-
trunk/custom-iframe-widget.php (modified) (2 diffs)
-
trunk/includes/class-custif-admin.php (modified) (1 diff)
-
trunk/languages/custom-iframe.pot (modified) (4 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/widget/class-custom-iframe-widget.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
custom-iframe/tags/1.0.18/assets/css/admin/admin.css
r3342477 r3429488 12 12 --error: #F44336; 13 13 } 14 .welcome-section{ 14 15 .welcome-section { 15 16 background-image: url('../../images/dashboard-preview.png'); 16 17 background-size: cover; … … 21 22 background-position: right; 22 23 } 24 23 25 .custif-admin-wrap { 24 26 margin: 20px 20px 0 0; 25 font-family: 'Figtree', sans-serif; /* Apply font only to the wrapper */ 27 font-family: 'Figtree', sans-serif; 28 /* Apply font only to the wrapper */ 26 29 } 27 30 … … 481 484 482 485 .pro-features-list .coming-soon { 483 font-size: 1 2px;484 color: # 100D3F;486 font-size: 11px; 487 color: #ffffff; 485 488 margin-left: 5px; 486 font-style: italic;487 489 white-space: nowrap; 488 font-weight: 500; 490 background: var(--primary); 491 padding: 3px 5px; 492 border-radius: 5px; 493 font-weight: 700; 494 text-transform: capitalize; 489 495 } 490 496 … … 640 646 margin-top: 30px; 641 647 } 648 642 649 .get-started-section .section-title { 643 650 margin-top: 0; 644 651 margin-bottom: 20px; 645 652 } 653 646 654 .video-container { 647 655 position: relative; 648 padding-bottom: 56.25%; /* 16:9 Aspect Ratio */ 656 padding-bottom: 56.25%; 657 /* 16:9 Aspect Ratio */ 649 658 height: 0; 650 659 overflow: hidden; … … 652 661 background: #000; 653 662 } 663 654 664 .video-container iframe { 655 665 position: absolute; … … 718 728 justify-content: center; 719 729 } 720 } 730 } -
custom-iframe/tags/1.0.18/custom-iframe-widget.php
r3427581 r3429488 4 4 * Plugin URI: https://coderzstudio.com/plugins/custom-iframe 5 5 * Description: An advanced Elementor widget to embed iFrames with customizable options. 6 * Version: 1.0.1 76 * Version: 1.0.18 7 7 * Author: Coderz Studio 8 8 * Author URI: https://coderzstudio.com/ … … 51 51 52 52 // Define constants. 53 define( 'CUSTIF_VERSION', '1.0.1 7' );53 define( 'CUSTIF_VERSION', '1.0.18' ); 54 54 define( 'CUSTIF_URL', plugin_dir_url( __FILE__ ) ); 55 55 define( 'CUSTIF_PATH', plugin_dir_path( __FILE__ ) ); -
custom-iframe/tags/1.0.18/includes/class-custif-admin.php
r3342477 r3429488 224 224 <li>🌐 <?php esc_html_e( '100+ Embed Sources', 'custom-iframe' ); ?></li> 225 225 <li>⚙️ <?php esc_html_e( 'Custom iFrame Attributes', 'custom-iframe' ); ?></li> 226 <li> 🔒 <?php esc_html_e( 'Advanced Security Options', 'custom-iframe' ); ?></li>226 <li>🎨 <?php esc_html_e( 'Custom Watermarks', 'custom-iframe' ); ?> <span class="coming-soon"><?php esc_html_e( 'new', 'custom-iframe' ); ?></span></li> 227 227 </ul> 228 228 </div> 229 229 <div class="pro-features-column"> 230 230 <ul class="pro-features-list"> 231 <li>🔒 <?php esc_html_e( 'Advanced Security Options', 'custom-iframe' ); ?></li> 231 232 <li>🎥 <?php esc_html_e( 'YouTube & Vimeo Controls', 'custom-iframe' ); ?></li> 232 233 <li>🐦 <?php esc_html_e( 'Enhanced X (Twitter) Options', 'custom-iframe' ); ?></li> 233 <li>🎨 <?php esc_html_e( 'Custom Watermarks', 'custom-iframe' ); ?> <span class="coming-soon">(<?php esc_html_e( 'coming soon', 'custom-iframe' ); ?>)</span></li> 234 <li>📚 <?php esc_html_e( '3D Flipbook PDF', 'custom-iframe' ); ?> <span class="coming-soon">(<?php esc_html_e( 'coming soon', 'custom-iframe' ); ?>)</span></li> 235 <li>📱 <?php esc_html_e( 'Device Frame Display', 'custom-iframe' ); ?> <span class="coming-soon">(<?php esc_html_e( 'coming soon', 'custom-iframe' ); ?>)</span></li> 234 <li>📚 <?php esc_html_e( '3D Flipbook PDF', 'custom-iframe' ); ?> <span class="coming-soon"><?php esc_html_e( 'popular', 'custom-iframe' ); ?></span></li> 235 <li>📱 <?php esc_html_e( 'Device Frame Display', 'custom-iframe' ); ?> <span class="coming-soon"><?php esc_html_e( 'new', 'custom-iframe' ); ?></span></li> 236 236 </ul> 237 237 </div> -
custom-iframe/tags/1.0.18/languages/custom-iframe.pot
r3427581 r3429488 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Custom iFrame 1.0.1 6\n"5 "Project-Id-Version: Custom iFrame 1.0.18\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-iframe\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-12- 10T08:46:22+00:00\n"12 "POT-Creation-Date: 2025-12-30T08:18:24+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" … … 112 112 113 113 #: includes/class-custif-admin.php:226 114 msgid "Custom Watermarks" 115 msgstr "" 116 117 #: includes/class-custif-admin.php:226 118 #: includes/class-custif-admin.php:235 119 msgid "new" 120 msgstr "" 121 122 #: includes/class-custif-admin.php:231 114 123 msgid "Advanced Security Options" 115 124 msgstr "" 116 125 117 #: includes/class-custif-admin.php:23 1126 #: includes/class-custif-admin.php:232 118 127 msgid "YouTube & Vimeo Controls" 119 128 msgstr "" 120 129 121 #: includes/class-custif-admin.php:23 2130 #: includes/class-custif-admin.php:233 122 131 msgid "Enhanced X (Twitter) Options" 123 msgstr ""124 125 #: includes/class-custif-admin.php:233126 msgid "Custom Watermarks"127 msgstr ""128 129 #: includes/class-custif-admin.php:233130 #: includes/class-custif-admin.php:234131 #: includes/class-custif-admin.php:235132 msgid "coming soon"133 132 msgstr "" 134 133 135 134 #: includes/class-custif-admin.php:234 136 135 msgid "3D Flipbook PDF" 136 msgstr "" 137 138 #: includes/class-custif-admin.php:234 139 msgid "popular" 137 140 msgstr "" 138 141 … … 365 368 366 369 #: widget/class-custom-iframe-widget.php:270 370 msgid "3D Flipbook View" 371 msgstr "" 372 373 #: widget/class-custom-iframe-widget.php:272 374 #: widget/class-custom-iframe-widget.php:338 375 #: widget/class-custom-iframe-widget.php:390 376 #: widget/class-custom-iframe-widget.php:418 377 msgid "Yes" 378 msgstr "" 379 380 #: widget/class-custom-iframe-widget.php:273 381 #: widget/class-custom-iframe-widget.php:339 382 #: widget/class-custom-iframe-widget.php:391 383 #: widget/class-custom-iframe-widget.php:419 384 msgid "No" 385 msgstr "" 386 387 #: widget/class-custom-iframe-widget.php:301 367 388 msgid "Height" 368 389 msgstr "" 369 390 370 #: widget/class-custom-iframe-widget.php: 291391 #: widget/class-custom-iframe-widget.php:322 371 392 msgid "height is not supported when using the X Embed Post." 372 393 msgstr "" 373 394 374 #: widget/class-custom-iframe-widget.php:3 05395 #: widget/class-custom-iframe-widget.php:336 375 396 msgid "Auto Height" 376 397 msgstr "" 377 398 378 #: widget/class-custom-iframe-widget.php:307 379 #: widget/class-custom-iframe-widget.php:359 380 #: widget/class-custom-iframe-widget.php:387 381 msgid "Yes" 382 msgstr "" 383 384 #: widget/class-custom-iframe-widget.php:308 385 #: widget/class-custom-iframe-widget.php:360 399 #: widget/class-custom-iframe-widget.php:343 400 msgid "Auto height only works when cross domain with \"allow origin all in header\"." 401 msgstr "" 402 403 #: widget/class-custom-iframe-widget.php:350 404 msgid "Show Scrollbars" 405 msgstr "" 406 407 #: widget/class-custom-iframe-widget.php:363 408 msgid "Refresh Interval (seconds)" 409 msgstr "" 410 411 #: widget/class-custom-iframe-widget.php:368 412 msgid "Set 0 to disable auto-refresh" 413 msgstr "" 414 415 #: widget/class-custom-iframe-widget.php:380 416 msgid "Smart Load" 417 msgstr "" 418 386 419 #: widget/class-custom-iframe-widget.php:388 387 msgid "No" 388 msgstr "" 389 390 #: widget/class-custom-iframe-widget.php:312 391 msgid "Auto height only works when cross domain with \"allow origin all in header\"." 392 msgstr "" 393 394 #: widget/class-custom-iframe-widget.php:319 395 msgid "Show Scrollbars" 396 msgstr "" 397 398 #: widget/class-custom-iframe-widget.php:332 399 msgid "Refresh Interval (seconds)" 400 msgstr "" 401 402 #: widget/class-custom-iframe-widget.php:337 403 msgid "Set 0 to disable auto-refresh" 404 msgstr "" 405 406 #: widget/class-custom-iframe-widget.php:349 407 msgid "Smart Load" 408 msgstr "" 409 410 #: widget/class-custom-iframe-widget.php:357 411 #: widget/class-custom-iframe-widget.php:385 420 #: widget/class-custom-iframe-widget.php:416 412 421 msgid "Lazy Load" 413 422 msgstr "" 414 423 415 #: widget/class-custom-iframe-widget.php:4 01424 #: widget/class-custom-iframe-widget.php:432 416 425 msgid "Placeholder Image" 417 426 msgstr "" 418 427 419 #: widget/class-custom-iframe-widget.php:4 15420 #: widget/class-custom-iframe-widget.php:4 42428 #: widget/class-custom-iframe-widget.php:446 429 #: widget/class-custom-iframe-widget.php:473 421 430 msgid "X Basic Options" 422 431 msgstr "" 423 432 424 #: widget/class-custom-iframe-widget.php: 469433 #: widget/class-custom-iframe-widget.php:500 425 434 msgid "Basic Options" 426 435 msgstr "" 427 436 428 #: widget/class-custom-iframe-widget.php: 496437 #: widget/class-custom-iframe-widget.php:527 429 438 msgid "YouTube Playback" 430 439 msgstr "" 431 440 432 #: widget/class-custom-iframe-widget.php:5 23441 #: widget/class-custom-iframe-widget.php:554 433 442 msgid "YouTube Appearance" 434 443 msgstr "" 435 444 436 #: widget/class-custom-iframe-widget.php:5 50445 #: widget/class-custom-iframe-widget.php:581 437 446 msgid "YouTube Advanced" 438 447 msgstr "" 439 448 440 #: widget/class-custom-iframe-widget.php: 577449 #: widget/class-custom-iframe-widget.php:608 441 450 msgid "YouTube Captions" 442 451 msgstr "" 443 452 444 #: widget/class-custom-iframe-widget.php:6 04453 #: widget/class-custom-iframe-widget.php:635 445 454 msgid "Vimeo Basic Options" 446 455 msgstr "" 447 456 448 #: widget/class-custom-iframe-widget.php:6 31457 #: widget/class-custom-iframe-widget.php:662 449 458 msgid "Vimeo Playback" 450 459 msgstr "" 451 460 452 #: widget/class-custom-iframe-widget.php:6 58461 #: widget/class-custom-iframe-widget.php:689 453 462 msgid "Vimeo Appearance" 454 463 msgstr "" 455 464 456 #: widget/class-custom-iframe-widget.php: 685465 #: widget/class-custom-iframe-widget.php:716 457 466 msgid "Display Options" 458 467 msgstr "" 459 468 460 #: widget/class-custom-iframe-widget.php: 697469 #: widget/class-custom-iframe-widget.php:728 461 470 msgid "Theme" 462 471 msgstr "" 463 472 464 #: widget/class-custom-iframe-widget.php:7 01473 #: widget/class-custom-iframe-widget.php:732 465 474 msgid "System Default" 466 475 msgstr "" 467 476 468 #: widget/class-custom-iframe-widget.php:7 02477 #: widget/class-custom-iframe-widget.php:733 469 478 msgid "Dark" 470 479 msgstr "" 471 480 472 #: widget/class-custom-iframe-widget.php:7 03481 #: widget/class-custom-iframe-widget.php:734 473 482 msgid "Light" 474 483 msgstr "" 475 484 476 #: widget/class-custom-iframe-widget.php:7 04477 #: widget/class-custom-iframe-widget.php:7 38485 #: widget/class-custom-iframe-widget.php:735 486 #: widget/class-custom-iframe-widget.php:769 478 487 msgid "Custom" 479 488 msgstr "" 480 489 481 #: widget/class-custom-iframe-widget.php:7 16490 #: widget/class-custom-iframe-widget.php:747 482 491 msgid "Custom Color" 483 492 msgstr "" 484 493 485 #: widget/class-custom-iframe-widget.php:7 30494 #: widget/class-custom-iframe-widget.php:761 486 495 msgid "Zoom" 487 496 msgstr "" 488 497 489 #: widget/class-custom-iframe-widget.php:7 34498 #: widget/class-custom-iframe-widget.php:765 490 499 msgid "Automatic Zoom" 491 500 msgstr "" 492 501 493 #: widget/class-custom-iframe-widget.php:7 35502 #: widget/class-custom-iframe-widget.php:766 494 503 msgid "Actual Size" 495 504 msgstr "" 496 505 497 #: widget/class-custom-iframe-widget.php:7 36506 #: widget/class-custom-iframe-widget.php:767 498 507 msgid "Page Fit" 499 508 msgstr "" 500 509 501 #: widget/class-custom-iframe-widget.php:7 37510 #: widget/class-custom-iframe-widget.php:768 502 511 msgid "Page Width" 503 512 msgstr "" 504 513 505 #: widget/class-custom-iframe-widget.php:7 39514 #: widget/class-custom-iframe-widget.php:770 506 515 msgid "50%" 507 516 msgstr "" 508 517 509 #: widget/class-custom-iframe-widget.php:7 40518 #: widget/class-custom-iframe-widget.php:771 510 519 msgid "75%" 511 520 msgstr "" 512 521 513 #: widget/class-custom-iframe-widget.php:7 41522 #: widget/class-custom-iframe-widget.php:772 514 523 msgid "100%" 515 524 msgstr "" 516 525 517 #: widget/class-custom-iframe-widget.php:7 42526 #: widget/class-custom-iframe-widget.php:773 518 527 msgid "125%" 519 528 msgstr "" 520 529 521 #: widget/class-custom-iframe-widget.php:7 43530 #: widget/class-custom-iframe-widget.php:774 522 531 msgid "150%" 523 532 msgstr "" 524 533 525 #: widget/class-custom-iframe-widget.php:7 44534 #: widget/class-custom-iframe-widget.php:775 526 535 msgid "200%" 527 536 msgstr "" 528 537 529 #: widget/class-custom-iframe-widget.php:7 45538 #: widget/class-custom-iframe-widget.php:776 530 539 msgid "300%" 531 540 msgstr "" 532 541 533 #: widget/class-custom-iframe-widget.php:7 46542 #: widget/class-custom-iframe-widget.php:777 534 543 msgid "400%" 535 544 msgstr "" 536 545 537 #: widget/class-custom-iframe-widget.php:7 48546 #: widget/class-custom-iframe-widget.php:779 538 547 msgid "Note: Initial zoom value when the file is loaded." 539 548 msgstr "" 540 549 541 #: widget/class-custom-iframe-widget.php:7 59550 #: widget/class-custom-iframe-widget.php:790 542 551 msgid "Custom Zoom" 543 552 msgstr "" 544 553 545 #: widget/class-custom-iframe-widget.php: 772554 #: widget/class-custom-iframe-widget.php:803 546 555 msgid "Default Selection Tool" 547 556 msgstr "" 548 557 549 #: widget/class-custom-iframe-widget.php: 775558 #: widget/class-custom-iframe-widget.php:806 550 559 msgid "Text Tool" 551 560 msgstr "" 552 561 553 #: widget/class-custom-iframe-widget.php: 776562 #: widget/class-custom-iframe-widget.php:807 554 563 msgid "Hand Tool" 555 564 msgstr "" 556 565 557 #: widget/class-custom-iframe-widget.php: 789566 #: widget/class-custom-iframe-widget.php:820 558 567 msgid "Default Scrolling" 559 568 msgstr "" 560 569 561 #: widget/class-custom-iframe-widget.php: 792570 #: widget/class-custom-iframe-widget.php:823 562 571 msgid "Page Scrolling" 563 572 msgstr "" 564 573 565 #: widget/class-custom-iframe-widget.php: 793574 #: widget/class-custom-iframe-widget.php:824 566 575 msgid "Vertical Scrolling" 567 576 msgstr "" 568 577 569 #: widget/class-custom-iframe-widget.php: 794578 #: widget/class-custom-iframe-widget.php:825 570 579 msgid "Horizontal Scrolling" 571 580 msgstr "" 572 581 573 #: widget/class-custom-iframe-widget.php: 795582 #: widget/class-custom-iframe-widget.php:826 574 583 msgid "Wrapped Scrolling" 575 584 msgstr "" 576 585 577 #: widget/class-custom-iframe-widget.php:8 08586 #: widget/class-custom-iframe-widget.php:839 578 587 msgid "Default Spreads" 579 588 msgstr "" 580 589 581 #: widget/class-custom-iframe-widget.php:8 11590 #: widget/class-custom-iframe-widget.php:842 582 591 msgid "No Spreads" 583 592 msgstr "" 584 593 585 #: widget/class-custom-iframe-widget.php:8 12594 #: widget/class-custom-iframe-widget.php:843 586 595 msgid "Odd Spreads" 587 596 msgstr "" 588 597 589 #: widget/class-custom-iframe-widget.php:8 13598 #: widget/class-custom-iframe-widget.php:844 590 599 msgid "Even Spreads" 591 600 msgstr "" 592 601 593 #: widget/class-custom-iframe-widget.php:8 29602 #: widget/class-custom-iframe-widget.php:860 594 603 msgid "Toolbar Settings" 595 604 msgstr "" 596 605 597 #: widget/class-custom-iframe-widget.php:8 41606 #: widget/class-custom-iframe-widget.php:872 598 607 msgid "Toolbar" 599 608 msgstr "" 600 609 601 #: widget/class-custom-iframe-widget.php:8 43602 #: widget/class-custom-iframe-widget.php: 884603 #: widget/class-custom-iframe-widget.php:9 01604 #: widget/class-custom-iframe-widget.php:9 18605 #: widget/class-custom-iframe-widget.php:9 35606 #: widget/class-custom-iframe-widget.php:9 52607 #: widget/class-custom-iframe-widget.php: 969608 #: widget/class-custom-iframe-widget.php: 986609 #: widget/class-custom-iframe-widget.php:10 03610 #: widget/class-custom-iframe-widget.php:874 611 #: widget/class-custom-iframe-widget.php:915 612 #: widget/class-custom-iframe-widget.php:932 613 #: widget/class-custom-iframe-widget.php:949 614 #: widget/class-custom-iframe-widget.php:966 615 #: widget/class-custom-iframe-widget.php:983 616 #: widget/class-custom-iframe-widget.php:1000 617 #: widget/class-custom-iframe-widget.php:1017 618 #: widget/class-custom-iframe-widget.php:1034 610 619 msgid "Show" 611 620 msgstr "" 612 621 613 #: widget/class-custom-iframe-widget.php:8 44614 #: widget/class-custom-iframe-widget.php: 885615 #: widget/class-custom-iframe-widget.php:9 02616 #: widget/class-custom-iframe-widget.php:9 19617 #: widget/class-custom-iframe-widget.php:9 36618 #: widget/class-custom-iframe-widget.php:9 53619 #: widget/class-custom-iframe-widget.php: 970620 #: widget/class-custom-iframe-widget.php: 987621 #: widget/class-custom-iframe-widget.php:10 04622 #: widget/class-custom-iframe-widget.php:875 623 #: widget/class-custom-iframe-widget.php:916 624 #: widget/class-custom-iframe-widget.php:933 625 #: widget/class-custom-iframe-widget.php:950 626 #: widget/class-custom-iframe-widget.php:967 627 #: widget/class-custom-iframe-widget.php:984 628 #: widget/class-custom-iframe-widget.php:1001 629 #: widget/class-custom-iframe-widget.php:1018 630 #: widget/class-custom-iframe-widget.php:1035 622 631 msgid "Hide" 623 632 msgstr "" 624 633 625 #: widget/class-custom-iframe-widget.php:8 57634 #: widget/class-custom-iframe-widget.php:888 626 635 msgid "Toolbar Position" 627 636 msgstr "" 628 637 629 #: widget/class-custom-iframe-widget.php:8 61638 #: widget/class-custom-iframe-widget.php:892 630 639 msgid "Top" 631 640 msgstr "" 632 641 633 #: widget/class-custom-iframe-widget.php:8 65642 #: widget/class-custom-iframe-widget.php:896 634 643 msgid "Bottom" 635 644 msgstr "" 636 645 637 #: widget/class-custom-iframe-widget.php: 882646 #: widget/class-custom-iframe-widget.php:913 638 647 msgid "Print/Download" 639 648 msgstr "" 640 649 641 #: widget/class-custom-iframe-widget.php: 899650 #: widget/class-custom-iframe-widget.php:930 642 651 msgid "Presentation Mode" 643 652 msgstr "" 644 653 645 #: widget/class-custom-iframe-widget.php:9 16654 #: widget/class-custom-iframe-widget.php:947 646 655 msgid "Copy Text" 647 656 msgstr "" 648 657 649 #: widget/class-custom-iframe-widget.php:9 33658 #: widget/class-custom-iframe-widget.php:964 650 659 msgid "Add Text" 651 660 msgstr "" 652 661 653 #: widget/class-custom-iframe-widget.php:9 50662 #: widget/class-custom-iframe-widget.php:981 654 663 msgid "Draw" 655 664 msgstr "" 656 665 657 #: widget/class-custom-iframe-widget.php:9 67666 #: widget/class-custom-iframe-widget.php:998 658 667 msgid "Add Image" 659 668 msgstr "" 660 669 661 #: widget/class-custom-iframe-widget.php: 984670 #: widget/class-custom-iframe-widget.php:1015 662 671 msgid "Rotation" 663 672 msgstr "" 664 673 665 #: widget/class-custom-iframe-widget.php:10 01674 #: widget/class-custom-iframe-widget.php:1032 666 675 msgid "Properties" 667 676 msgstr "" 668 677 669 #: widget/class-custom-iframe-widget.php:10 20678 #: widget/class-custom-iframe-widget.php:1051 670 679 msgid "Advance" 671 680 msgstr "" 672 681 673 #: widget/class-custom-iframe-widget.php:10 28682 #: widget/class-custom-iframe-widget.php:1059 674 683 msgid "Custom ID" 675 684 msgstr "" 676 685 677 #: widget/class-custom-iframe-widget.php:10 30686 #: widget/class-custom-iframe-widget.php:1061 678 687 msgid "my-custom-iframe" 679 688 msgstr "" 680 689 681 #: widget/class-custom-iframe-widget.php:10 31690 #: widget/class-custom-iframe-widget.php:1062 682 691 msgid "Enter an ID for custom CSS or JavaScript. Leave empty for an auto-generated ID." 683 692 msgstr "" 684 693 685 #: widget/class-custom-iframe-widget.php:10 43694 #: widget/class-custom-iframe-widget.php:1074 686 695 msgid "Enable Sandbox" 687 696 msgstr "" 688 697 689 #: widget/class-custom-iframe-widget.php:10 66698 #: widget/class-custom-iframe-widget.php:1097 690 699 msgid "Attributes" 691 700 msgstr "" 692 701 693 #: widget/class-custom-iframe-widget.php:1 091702 #: widget/class-custom-iframe-widget.php:1122 694 703 msgid "Watermark" 695 704 msgstr "" 696 705 697 #: widget/class-custom-iframe-widget.php:11 12706 #: widget/class-custom-iframe-widget.php:1143 698 707 msgid "Device Frame" 699 708 msgstr "" 700 709 701 #: widget/class-custom-iframe-widget.php:11 33710 #: widget/class-custom-iframe-widget.php:1164 702 711 msgid "Style" 703 712 msgstr "" 704 713 705 #: widget/class-custom-iframe-widget.php:11 41714 #: widget/class-custom-iframe-widget.php:1172 706 715 msgid "Padding" 707 716 msgstr "" 708 717 709 #: widget/class-custom-iframe-widget.php:11 54718 #: widget/class-custom-iframe-widget.php:1185 710 719 msgid "Container Width" 711 720 msgstr "" 712 721 713 #: widget/class-custom-iframe-widget.php:1 185722 #: widget/class-custom-iframe-widget.php:1216 714 723 msgid "Alignment" 715 724 msgstr "" 716 725 717 #: widget/class-custom-iframe-widget.php:1 189726 #: widget/class-custom-iframe-widget.php:1220 718 727 msgid "Left" 719 728 msgstr "" 720 729 721 #: widget/class-custom-iframe-widget.php:1 193730 #: widget/class-custom-iframe-widget.php:1224 722 731 msgid "Center" 723 732 msgstr "" 724 733 725 #: widget/class-custom-iframe-widget.php:1 197734 #: widget/class-custom-iframe-widget.php:1228 726 735 msgid "Right" 727 736 msgstr "" 728 737 729 #: widget/class-custom-iframe-widget.php:12 11730 #: widget/class-custom-iframe-widget.php:12 19738 #: widget/class-custom-iframe-widget.php:1242 739 #: widget/class-custom-iframe-widget.php:1250 731 740 msgid "Background Style" 732 741 msgstr "" 733 742 734 #: widget/class-custom-iframe-widget.php:12 30743 #: widget/class-custom-iframe-widget.php:1261 735 744 msgid "Border Style" 736 745 msgstr "" 737 746 738 #: widget/class-custom-iframe-widget.php:12 45747 #: widget/class-custom-iframe-widget.php:1276 739 748 msgid "Border Radius" 740 749 msgstr "" 741 750 742 #: widget/class-custom-iframe-widget.php:12 58751 #: widget/class-custom-iframe-widget.php:1289 743 752 msgid "Box Shadow Style" 744 753 msgstr "" 745 754 746 #: widget/class-custom-iframe-widget.php:13 44755 #: widget/class-custom-iframe-widget.php:1375 747 756 msgid "Please enter a valid URL" 748 757 msgstr "" -
custom-iframe/tags/1.0.18/readme.txt
r3427581 r3429488 4 4 Requires at least: 5.8 5 5 Tested up to: 6.9 6 Stable tag: 1.0.1 76 Stable tag: 1.0.18 7 7 Requires PHP: 7.4 8 8 License: GPL-2.0+ … … 47 47 - 🐦 **Enhanced X (Twitter) Options** – Better control over X post embeds 48 48 - 🎨 **Custom Watermarks** – Add your branding to embeds 49 - 📚 **3D Flipbook PDF Viewer** – Interactive PDF viewing experience (coming soon)49 - 📚 **3D Flipbook PDF Viewer** – Interactive PDF viewing experience 50 50 - 📱 **Device Frame Display** – Show content in device frames 51 51 … … 117 117 118 118 == Changelog == 119 120 = 1.0.18 (December 30, 2025) = 121 * Improvements : Improves admin dashboard design. 119 122 120 123 = 1.0.17 (December 26, 2025) = -
custom-iframe/tags/1.0.18/widget/class-custom-iframe-widget.php
r3427581 r3429488 277 277 'source' => 'Pdf', 278 278 ), 279 'separator' => 'before',279 'separator' => 'before', 280 280 ) 281 281 ); -
custom-iframe/trunk/assets/css/admin/admin.css
r3342477 r3429488 12 12 --error: #F44336; 13 13 } 14 .welcome-section{ 14 15 .welcome-section { 15 16 background-image: url('../../images/dashboard-preview.png'); 16 17 background-size: cover; … … 21 22 background-position: right; 22 23 } 24 23 25 .custif-admin-wrap { 24 26 margin: 20px 20px 0 0; 25 font-family: 'Figtree', sans-serif; /* Apply font only to the wrapper */ 27 font-family: 'Figtree', sans-serif; 28 /* Apply font only to the wrapper */ 26 29 } 27 30 … … 481 484 482 485 .pro-features-list .coming-soon { 483 font-size: 1 2px;484 color: # 100D3F;486 font-size: 11px; 487 color: #ffffff; 485 488 margin-left: 5px; 486 font-style: italic;487 489 white-space: nowrap; 488 font-weight: 500; 490 background: var(--primary); 491 padding: 3px 5px; 492 border-radius: 5px; 493 font-weight: 700; 494 text-transform: capitalize; 489 495 } 490 496 … … 640 646 margin-top: 30px; 641 647 } 648 642 649 .get-started-section .section-title { 643 650 margin-top: 0; 644 651 margin-bottom: 20px; 645 652 } 653 646 654 .video-container { 647 655 position: relative; 648 padding-bottom: 56.25%; /* 16:9 Aspect Ratio */ 656 padding-bottom: 56.25%; 657 /* 16:9 Aspect Ratio */ 649 658 height: 0; 650 659 overflow: hidden; … … 652 661 background: #000; 653 662 } 663 654 664 .video-container iframe { 655 665 position: absolute; … … 718 728 justify-content: center; 719 729 } 720 } 730 } -
custom-iframe/trunk/custom-iframe-widget.php
r3427581 r3429488 4 4 * Plugin URI: https://coderzstudio.com/plugins/custom-iframe 5 5 * Description: An advanced Elementor widget to embed iFrames with customizable options. 6 * Version: 1.0.1 76 * Version: 1.0.18 7 7 * Author: Coderz Studio 8 8 * Author URI: https://coderzstudio.com/ … … 51 51 52 52 // Define constants. 53 define( 'CUSTIF_VERSION', '1.0.1 7' );53 define( 'CUSTIF_VERSION', '1.0.18' ); 54 54 define( 'CUSTIF_URL', plugin_dir_url( __FILE__ ) ); 55 55 define( 'CUSTIF_PATH', plugin_dir_path( __FILE__ ) ); -
custom-iframe/trunk/includes/class-custif-admin.php
r3342477 r3429488 224 224 <li>🌐 <?php esc_html_e( '100+ Embed Sources', 'custom-iframe' ); ?></li> 225 225 <li>⚙️ <?php esc_html_e( 'Custom iFrame Attributes', 'custom-iframe' ); ?></li> 226 <li> 🔒 <?php esc_html_e( 'Advanced Security Options', 'custom-iframe' ); ?></li>226 <li>🎨 <?php esc_html_e( 'Custom Watermarks', 'custom-iframe' ); ?> <span class="coming-soon"><?php esc_html_e( 'new', 'custom-iframe' ); ?></span></li> 227 227 </ul> 228 228 </div> 229 229 <div class="pro-features-column"> 230 230 <ul class="pro-features-list"> 231 <li>🔒 <?php esc_html_e( 'Advanced Security Options', 'custom-iframe' ); ?></li> 231 232 <li>🎥 <?php esc_html_e( 'YouTube & Vimeo Controls', 'custom-iframe' ); ?></li> 232 233 <li>🐦 <?php esc_html_e( 'Enhanced X (Twitter) Options', 'custom-iframe' ); ?></li> 233 <li>🎨 <?php esc_html_e( 'Custom Watermarks', 'custom-iframe' ); ?> <span class="coming-soon">(<?php esc_html_e( 'coming soon', 'custom-iframe' ); ?>)</span></li> 234 <li>📚 <?php esc_html_e( '3D Flipbook PDF', 'custom-iframe' ); ?> <span class="coming-soon">(<?php esc_html_e( 'coming soon', 'custom-iframe' ); ?>)</span></li> 235 <li>📱 <?php esc_html_e( 'Device Frame Display', 'custom-iframe' ); ?> <span class="coming-soon">(<?php esc_html_e( 'coming soon', 'custom-iframe' ); ?>)</span></li> 234 <li>📚 <?php esc_html_e( '3D Flipbook PDF', 'custom-iframe' ); ?> <span class="coming-soon"><?php esc_html_e( 'popular', 'custom-iframe' ); ?></span></li> 235 <li>📱 <?php esc_html_e( 'Device Frame Display', 'custom-iframe' ); ?> <span class="coming-soon"><?php esc_html_e( 'new', 'custom-iframe' ); ?></span></li> 236 236 </ul> 237 237 </div> -
custom-iframe/trunk/languages/custom-iframe.pot
r3427581 r3429488 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Custom iFrame 1.0.1 6\n"5 "Project-Id-Version: Custom iFrame 1.0.18\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/custom-iframe\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-12- 10T08:46:22+00:00\n"12 "POT-Creation-Date: 2025-12-30T08:18:24+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.11.0\n" … … 112 112 113 113 #: includes/class-custif-admin.php:226 114 msgid "Custom Watermarks" 115 msgstr "" 116 117 #: includes/class-custif-admin.php:226 118 #: includes/class-custif-admin.php:235 119 msgid "new" 120 msgstr "" 121 122 #: includes/class-custif-admin.php:231 114 123 msgid "Advanced Security Options" 115 124 msgstr "" 116 125 117 #: includes/class-custif-admin.php:23 1126 #: includes/class-custif-admin.php:232 118 127 msgid "YouTube & Vimeo Controls" 119 128 msgstr "" 120 129 121 #: includes/class-custif-admin.php:23 2130 #: includes/class-custif-admin.php:233 122 131 msgid "Enhanced X (Twitter) Options" 123 msgstr ""124 125 #: includes/class-custif-admin.php:233126 msgid "Custom Watermarks"127 msgstr ""128 129 #: includes/class-custif-admin.php:233130 #: includes/class-custif-admin.php:234131 #: includes/class-custif-admin.php:235132 msgid "coming soon"133 132 msgstr "" 134 133 135 134 #: includes/class-custif-admin.php:234 136 135 msgid "3D Flipbook PDF" 136 msgstr "" 137 138 #: includes/class-custif-admin.php:234 139 msgid "popular" 137 140 msgstr "" 138 141 … … 365 368 366 369 #: widget/class-custom-iframe-widget.php:270 370 msgid "3D Flipbook View" 371 msgstr "" 372 373 #: widget/class-custom-iframe-widget.php:272 374 #: widget/class-custom-iframe-widget.php:338 375 #: widget/class-custom-iframe-widget.php:390 376 #: widget/class-custom-iframe-widget.php:418 377 msgid "Yes" 378 msgstr "" 379 380 #: widget/class-custom-iframe-widget.php:273 381 #: widget/class-custom-iframe-widget.php:339 382 #: widget/class-custom-iframe-widget.php:391 383 #: widget/class-custom-iframe-widget.php:419 384 msgid "No" 385 msgstr "" 386 387 #: widget/class-custom-iframe-widget.php:301 367 388 msgid "Height" 368 389 msgstr "" 369 390 370 #: widget/class-custom-iframe-widget.php: 291391 #: widget/class-custom-iframe-widget.php:322 371 392 msgid "height is not supported when using the X Embed Post." 372 393 msgstr "" 373 394 374 #: widget/class-custom-iframe-widget.php:3 05395 #: widget/class-custom-iframe-widget.php:336 375 396 msgid "Auto Height" 376 397 msgstr "" 377 398 378 #: widget/class-custom-iframe-widget.php:307 379 #: widget/class-custom-iframe-widget.php:359 380 #: widget/class-custom-iframe-widget.php:387 381 msgid "Yes" 382 msgstr "" 383 384 #: widget/class-custom-iframe-widget.php:308 385 #: widget/class-custom-iframe-widget.php:360 399 #: widget/class-custom-iframe-widget.php:343 400 msgid "Auto height only works when cross domain with \"allow origin all in header\"." 401 msgstr "" 402 403 #: widget/class-custom-iframe-widget.php:350 404 msgid "Show Scrollbars" 405 msgstr "" 406 407 #: widget/class-custom-iframe-widget.php:363 408 msgid "Refresh Interval (seconds)" 409 msgstr "" 410 411 #: widget/class-custom-iframe-widget.php:368 412 msgid "Set 0 to disable auto-refresh" 413 msgstr "" 414 415 #: widget/class-custom-iframe-widget.php:380 416 msgid "Smart Load" 417 msgstr "" 418 386 419 #: widget/class-custom-iframe-widget.php:388 387 msgid "No" 388 msgstr "" 389 390 #: widget/class-custom-iframe-widget.php:312 391 msgid "Auto height only works when cross domain with \"allow origin all in header\"." 392 msgstr "" 393 394 #: widget/class-custom-iframe-widget.php:319 395 msgid "Show Scrollbars" 396 msgstr "" 397 398 #: widget/class-custom-iframe-widget.php:332 399 msgid "Refresh Interval (seconds)" 400 msgstr "" 401 402 #: widget/class-custom-iframe-widget.php:337 403 msgid "Set 0 to disable auto-refresh" 404 msgstr "" 405 406 #: widget/class-custom-iframe-widget.php:349 407 msgid "Smart Load" 408 msgstr "" 409 410 #: widget/class-custom-iframe-widget.php:357 411 #: widget/class-custom-iframe-widget.php:385 420 #: widget/class-custom-iframe-widget.php:416 412 421 msgid "Lazy Load" 413 422 msgstr "" 414 423 415 #: widget/class-custom-iframe-widget.php:4 01424 #: widget/class-custom-iframe-widget.php:432 416 425 msgid "Placeholder Image" 417 426 msgstr "" 418 427 419 #: widget/class-custom-iframe-widget.php:4 15420 #: widget/class-custom-iframe-widget.php:4 42428 #: widget/class-custom-iframe-widget.php:446 429 #: widget/class-custom-iframe-widget.php:473 421 430 msgid "X Basic Options" 422 431 msgstr "" 423 432 424 #: widget/class-custom-iframe-widget.php: 469433 #: widget/class-custom-iframe-widget.php:500 425 434 msgid "Basic Options" 426 435 msgstr "" 427 436 428 #: widget/class-custom-iframe-widget.php: 496437 #: widget/class-custom-iframe-widget.php:527 429 438 msgid "YouTube Playback" 430 439 msgstr "" 431 440 432 #: widget/class-custom-iframe-widget.php:5 23441 #: widget/class-custom-iframe-widget.php:554 433 442 msgid "YouTube Appearance" 434 443 msgstr "" 435 444 436 #: widget/class-custom-iframe-widget.php:5 50445 #: widget/class-custom-iframe-widget.php:581 437 446 msgid "YouTube Advanced" 438 447 msgstr "" 439 448 440 #: widget/class-custom-iframe-widget.php: 577449 #: widget/class-custom-iframe-widget.php:608 441 450 msgid "YouTube Captions" 442 451 msgstr "" 443 452 444 #: widget/class-custom-iframe-widget.php:6 04453 #: widget/class-custom-iframe-widget.php:635 445 454 msgid "Vimeo Basic Options" 446 455 msgstr "" 447 456 448 #: widget/class-custom-iframe-widget.php:6 31457 #: widget/class-custom-iframe-widget.php:662 449 458 msgid "Vimeo Playback" 450 459 msgstr "" 451 460 452 #: widget/class-custom-iframe-widget.php:6 58461 #: widget/class-custom-iframe-widget.php:689 453 462 msgid "Vimeo Appearance" 454 463 msgstr "" 455 464 456 #: widget/class-custom-iframe-widget.php: 685465 #: widget/class-custom-iframe-widget.php:716 457 466 msgid "Display Options" 458 467 msgstr "" 459 468 460 #: widget/class-custom-iframe-widget.php: 697469 #: widget/class-custom-iframe-widget.php:728 461 470 msgid "Theme" 462 471 msgstr "" 463 472 464 #: widget/class-custom-iframe-widget.php:7 01473 #: widget/class-custom-iframe-widget.php:732 465 474 msgid "System Default" 466 475 msgstr "" 467 476 468 #: widget/class-custom-iframe-widget.php:7 02477 #: widget/class-custom-iframe-widget.php:733 469 478 msgid "Dark" 470 479 msgstr "" 471 480 472 #: widget/class-custom-iframe-widget.php:7 03481 #: widget/class-custom-iframe-widget.php:734 473 482 msgid "Light" 474 483 msgstr "" 475 484 476 #: widget/class-custom-iframe-widget.php:7 04477 #: widget/class-custom-iframe-widget.php:7 38485 #: widget/class-custom-iframe-widget.php:735 486 #: widget/class-custom-iframe-widget.php:769 478 487 msgid "Custom" 479 488 msgstr "" 480 489 481 #: widget/class-custom-iframe-widget.php:7 16490 #: widget/class-custom-iframe-widget.php:747 482 491 msgid "Custom Color" 483 492 msgstr "" 484 493 485 #: widget/class-custom-iframe-widget.php:7 30494 #: widget/class-custom-iframe-widget.php:761 486 495 msgid "Zoom" 487 496 msgstr "" 488 497 489 #: widget/class-custom-iframe-widget.php:7 34498 #: widget/class-custom-iframe-widget.php:765 490 499 msgid "Automatic Zoom" 491 500 msgstr "" 492 501 493 #: widget/class-custom-iframe-widget.php:7 35502 #: widget/class-custom-iframe-widget.php:766 494 503 msgid "Actual Size" 495 504 msgstr "" 496 505 497 #: widget/class-custom-iframe-widget.php:7 36506 #: widget/class-custom-iframe-widget.php:767 498 507 msgid "Page Fit" 499 508 msgstr "" 500 509 501 #: widget/class-custom-iframe-widget.php:7 37510 #: widget/class-custom-iframe-widget.php:768 502 511 msgid "Page Width" 503 512 msgstr "" 504 513 505 #: widget/class-custom-iframe-widget.php:7 39514 #: widget/class-custom-iframe-widget.php:770 506 515 msgid "50%" 507 516 msgstr "" 508 517 509 #: widget/class-custom-iframe-widget.php:7 40518 #: widget/class-custom-iframe-widget.php:771 510 519 msgid "75%" 511 520 msgstr "" 512 521 513 #: widget/class-custom-iframe-widget.php:7 41522 #: widget/class-custom-iframe-widget.php:772 514 523 msgid "100%" 515 524 msgstr "" 516 525 517 #: widget/class-custom-iframe-widget.php:7 42526 #: widget/class-custom-iframe-widget.php:773 518 527 msgid "125%" 519 528 msgstr "" 520 529 521 #: widget/class-custom-iframe-widget.php:7 43530 #: widget/class-custom-iframe-widget.php:774 522 531 msgid "150%" 523 532 msgstr "" 524 533 525 #: widget/class-custom-iframe-widget.php:7 44534 #: widget/class-custom-iframe-widget.php:775 526 535 msgid "200%" 527 536 msgstr "" 528 537 529 #: widget/class-custom-iframe-widget.php:7 45538 #: widget/class-custom-iframe-widget.php:776 530 539 msgid "300%" 531 540 msgstr "" 532 541 533 #: widget/class-custom-iframe-widget.php:7 46542 #: widget/class-custom-iframe-widget.php:777 534 543 msgid "400%" 535 544 msgstr "" 536 545 537 #: widget/class-custom-iframe-widget.php:7 48546 #: widget/class-custom-iframe-widget.php:779 538 547 msgid "Note: Initial zoom value when the file is loaded." 539 548 msgstr "" 540 549 541 #: widget/class-custom-iframe-widget.php:7 59550 #: widget/class-custom-iframe-widget.php:790 542 551 msgid "Custom Zoom" 543 552 msgstr "" 544 553 545 #: widget/class-custom-iframe-widget.php: 772554 #: widget/class-custom-iframe-widget.php:803 546 555 msgid "Default Selection Tool" 547 556 msgstr "" 548 557 549 #: widget/class-custom-iframe-widget.php: 775558 #: widget/class-custom-iframe-widget.php:806 550 559 msgid "Text Tool" 551 560 msgstr "" 552 561 553 #: widget/class-custom-iframe-widget.php: 776562 #: widget/class-custom-iframe-widget.php:807 554 563 msgid "Hand Tool" 555 564 msgstr "" 556 565 557 #: widget/class-custom-iframe-widget.php: 789566 #: widget/class-custom-iframe-widget.php:820 558 567 msgid "Default Scrolling" 559 568 msgstr "" 560 569 561 #: widget/class-custom-iframe-widget.php: 792570 #: widget/class-custom-iframe-widget.php:823 562 571 msgid "Page Scrolling" 563 572 msgstr "" 564 573 565 #: widget/class-custom-iframe-widget.php: 793574 #: widget/class-custom-iframe-widget.php:824 566 575 msgid "Vertical Scrolling" 567 576 msgstr "" 568 577 569 #: widget/class-custom-iframe-widget.php: 794578 #: widget/class-custom-iframe-widget.php:825 570 579 msgid "Horizontal Scrolling" 571 580 msgstr "" 572 581 573 #: widget/class-custom-iframe-widget.php: 795582 #: widget/class-custom-iframe-widget.php:826 574 583 msgid "Wrapped Scrolling" 575 584 msgstr "" 576 585 577 #: widget/class-custom-iframe-widget.php:8 08586 #: widget/class-custom-iframe-widget.php:839 578 587 msgid "Default Spreads" 579 588 msgstr "" 580 589 581 #: widget/class-custom-iframe-widget.php:8 11590 #: widget/class-custom-iframe-widget.php:842 582 591 msgid "No Spreads" 583 592 msgstr "" 584 593 585 #: widget/class-custom-iframe-widget.php:8 12594 #: widget/class-custom-iframe-widget.php:843 586 595 msgid "Odd Spreads" 587 596 msgstr "" 588 597 589 #: widget/class-custom-iframe-widget.php:8 13598 #: widget/class-custom-iframe-widget.php:844 590 599 msgid "Even Spreads" 591 600 msgstr "" 592 601 593 #: widget/class-custom-iframe-widget.php:8 29602 #: widget/class-custom-iframe-widget.php:860 594 603 msgid "Toolbar Settings" 595 604 msgstr "" 596 605 597 #: widget/class-custom-iframe-widget.php:8 41606 #: widget/class-custom-iframe-widget.php:872 598 607 msgid "Toolbar" 599 608 msgstr "" 600 609 601 #: widget/class-custom-iframe-widget.php:8 43602 #: widget/class-custom-iframe-widget.php: 884603 #: widget/class-custom-iframe-widget.php:9 01604 #: widget/class-custom-iframe-widget.php:9 18605 #: widget/class-custom-iframe-widget.php:9 35606 #: widget/class-custom-iframe-widget.php:9 52607 #: widget/class-custom-iframe-widget.php: 969608 #: widget/class-custom-iframe-widget.php: 986609 #: widget/class-custom-iframe-widget.php:10 03610 #: widget/class-custom-iframe-widget.php:874 611 #: widget/class-custom-iframe-widget.php:915 612 #: widget/class-custom-iframe-widget.php:932 613 #: widget/class-custom-iframe-widget.php:949 614 #: widget/class-custom-iframe-widget.php:966 615 #: widget/class-custom-iframe-widget.php:983 616 #: widget/class-custom-iframe-widget.php:1000 617 #: widget/class-custom-iframe-widget.php:1017 618 #: widget/class-custom-iframe-widget.php:1034 610 619 msgid "Show" 611 620 msgstr "" 612 621 613 #: widget/class-custom-iframe-widget.php:8 44614 #: widget/class-custom-iframe-widget.php: 885615 #: widget/class-custom-iframe-widget.php:9 02616 #: widget/class-custom-iframe-widget.php:9 19617 #: widget/class-custom-iframe-widget.php:9 36618 #: widget/class-custom-iframe-widget.php:9 53619 #: widget/class-custom-iframe-widget.php: 970620 #: widget/class-custom-iframe-widget.php: 987621 #: widget/class-custom-iframe-widget.php:10 04622 #: widget/class-custom-iframe-widget.php:875 623 #: widget/class-custom-iframe-widget.php:916 624 #: widget/class-custom-iframe-widget.php:933 625 #: widget/class-custom-iframe-widget.php:950 626 #: widget/class-custom-iframe-widget.php:967 627 #: widget/class-custom-iframe-widget.php:984 628 #: widget/class-custom-iframe-widget.php:1001 629 #: widget/class-custom-iframe-widget.php:1018 630 #: widget/class-custom-iframe-widget.php:1035 622 631 msgid "Hide" 623 632 msgstr "" 624 633 625 #: widget/class-custom-iframe-widget.php:8 57634 #: widget/class-custom-iframe-widget.php:888 626 635 msgid "Toolbar Position" 627 636 msgstr "" 628 637 629 #: widget/class-custom-iframe-widget.php:8 61638 #: widget/class-custom-iframe-widget.php:892 630 639 msgid "Top" 631 640 msgstr "" 632 641 633 #: widget/class-custom-iframe-widget.php:8 65642 #: widget/class-custom-iframe-widget.php:896 634 643 msgid "Bottom" 635 644 msgstr "" 636 645 637 #: widget/class-custom-iframe-widget.php: 882646 #: widget/class-custom-iframe-widget.php:913 638 647 msgid "Print/Download" 639 648 msgstr "" 640 649 641 #: widget/class-custom-iframe-widget.php: 899650 #: widget/class-custom-iframe-widget.php:930 642 651 msgid "Presentation Mode" 643 652 msgstr "" 644 653 645 #: widget/class-custom-iframe-widget.php:9 16654 #: widget/class-custom-iframe-widget.php:947 646 655 msgid "Copy Text" 647 656 msgstr "" 648 657 649 #: widget/class-custom-iframe-widget.php:9 33658 #: widget/class-custom-iframe-widget.php:964 650 659 msgid "Add Text" 651 660 msgstr "" 652 661 653 #: widget/class-custom-iframe-widget.php:9 50662 #: widget/class-custom-iframe-widget.php:981 654 663 msgid "Draw" 655 664 msgstr "" 656 665 657 #: widget/class-custom-iframe-widget.php:9 67666 #: widget/class-custom-iframe-widget.php:998 658 667 msgid "Add Image" 659 668 msgstr "" 660 669 661 #: widget/class-custom-iframe-widget.php: 984670 #: widget/class-custom-iframe-widget.php:1015 662 671 msgid "Rotation" 663 672 msgstr "" 664 673 665 #: widget/class-custom-iframe-widget.php:10 01674 #: widget/class-custom-iframe-widget.php:1032 666 675 msgid "Properties" 667 676 msgstr "" 668 677 669 #: widget/class-custom-iframe-widget.php:10 20678 #: widget/class-custom-iframe-widget.php:1051 670 679 msgid "Advance" 671 680 msgstr "" 672 681 673 #: widget/class-custom-iframe-widget.php:10 28682 #: widget/class-custom-iframe-widget.php:1059 674 683 msgid "Custom ID" 675 684 msgstr "" 676 685 677 #: widget/class-custom-iframe-widget.php:10 30686 #: widget/class-custom-iframe-widget.php:1061 678 687 msgid "my-custom-iframe" 679 688 msgstr "" 680 689 681 #: widget/class-custom-iframe-widget.php:10 31690 #: widget/class-custom-iframe-widget.php:1062 682 691 msgid "Enter an ID for custom CSS or JavaScript. Leave empty for an auto-generated ID." 683 692 msgstr "" 684 693 685 #: widget/class-custom-iframe-widget.php:10 43694 #: widget/class-custom-iframe-widget.php:1074 686 695 msgid "Enable Sandbox" 687 696 msgstr "" 688 697 689 #: widget/class-custom-iframe-widget.php:10 66698 #: widget/class-custom-iframe-widget.php:1097 690 699 msgid "Attributes" 691 700 msgstr "" 692 701 693 #: widget/class-custom-iframe-widget.php:1 091702 #: widget/class-custom-iframe-widget.php:1122 694 703 msgid "Watermark" 695 704 msgstr "" 696 705 697 #: widget/class-custom-iframe-widget.php:11 12706 #: widget/class-custom-iframe-widget.php:1143 698 707 msgid "Device Frame" 699 708 msgstr "" 700 709 701 #: widget/class-custom-iframe-widget.php:11 33710 #: widget/class-custom-iframe-widget.php:1164 702 711 msgid "Style" 703 712 msgstr "" 704 713 705 #: widget/class-custom-iframe-widget.php:11 41714 #: widget/class-custom-iframe-widget.php:1172 706 715 msgid "Padding" 707 716 msgstr "" 708 717 709 #: widget/class-custom-iframe-widget.php:11 54718 #: widget/class-custom-iframe-widget.php:1185 710 719 msgid "Container Width" 711 720 msgstr "" 712 721 713 #: widget/class-custom-iframe-widget.php:1 185722 #: widget/class-custom-iframe-widget.php:1216 714 723 msgid "Alignment" 715 724 msgstr "" 716 725 717 #: widget/class-custom-iframe-widget.php:1 189726 #: widget/class-custom-iframe-widget.php:1220 718 727 msgid "Left" 719 728 msgstr "" 720 729 721 #: widget/class-custom-iframe-widget.php:1 193730 #: widget/class-custom-iframe-widget.php:1224 722 731 msgid "Center" 723 732 msgstr "" 724 733 725 #: widget/class-custom-iframe-widget.php:1 197734 #: widget/class-custom-iframe-widget.php:1228 726 735 msgid "Right" 727 736 msgstr "" 728 737 729 #: widget/class-custom-iframe-widget.php:12 11730 #: widget/class-custom-iframe-widget.php:12 19738 #: widget/class-custom-iframe-widget.php:1242 739 #: widget/class-custom-iframe-widget.php:1250 731 740 msgid "Background Style" 732 741 msgstr "" 733 742 734 #: widget/class-custom-iframe-widget.php:12 30743 #: widget/class-custom-iframe-widget.php:1261 735 744 msgid "Border Style" 736 745 msgstr "" 737 746 738 #: widget/class-custom-iframe-widget.php:12 45747 #: widget/class-custom-iframe-widget.php:1276 739 748 msgid "Border Radius" 740 749 msgstr "" 741 750 742 #: widget/class-custom-iframe-widget.php:12 58751 #: widget/class-custom-iframe-widget.php:1289 743 752 msgid "Box Shadow Style" 744 753 msgstr "" 745 754 746 #: widget/class-custom-iframe-widget.php:13 44755 #: widget/class-custom-iframe-widget.php:1375 747 756 msgid "Please enter a valid URL" 748 757 msgstr "" -
custom-iframe/trunk/readme.txt
r3427581 r3429488 4 4 Requires at least: 5.8 5 5 Tested up to: 6.9 6 Stable tag: 1.0.1 76 Stable tag: 1.0.18 7 7 Requires PHP: 7.4 8 8 License: GPL-2.0+ … … 47 47 - 🐦 **Enhanced X (Twitter) Options** – Better control over X post embeds 48 48 - 🎨 **Custom Watermarks** – Add your branding to embeds 49 - 📚 **3D Flipbook PDF Viewer** – Interactive PDF viewing experience (coming soon)49 - 📚 **3D Flipbook PDF Viewer** – Interactive PDF viewing experience 50 50 - 📱 **Device Frame Display** – Show content in device frames 51 51 … … 117 117 118 118 == Changelog == 119 120 = 1.0.18 (December 30, 2025) = 121 * Improvements : Improves admin dashboard design. 119 122 120 123 = 1.0.17 (December 26, 2025) = -
custom-iframe/trunk/widget/class-custom-iframe-widget.php
r3427581 r3429488 277 277 'source' => 'Pdf', 278 278 ), 279 'separator' => 'before',279 'separator' => 'before', 280 280 ) 281 281 );
Note: See TracChangeset
for help on using the changeset viewer.