Author: Test

  • DJSv2

    Test button

  • test lazy render

    test paragraph
    Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry’s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

    Card Image

    Card Title

    This is a brief description of the card content. You can provide some interesting details here.

    Learn More

    This is a heading

    • This is a list
    • item 2 from list
    • item 3 from list

    When you assume you make an ASS of U and ME

    [custom_card
    title=”Test SHORTCODE”
    description=”This is content from a shortcode” image=”https://rocketlabsqa.ovh/atf_lcp_h/city_640x427/” button_text=“Learn More“
    button_url=“#”
    ]

  • code highlight

    add_action('wp_footer', function () {
            
            ?>
            <script type="text/javascript">
            jQuery( document ).ready( function( $ ){
                        function waitForFlatpicker( callback ) {
                            if ( typeof window.flatpickr !== 'function' ) {
                                setTimeout( function() { waitForFlatpicker( callback ) }, 100 );
                            }
                            callback();
                        }
                        waitForFlatpicker( function(){
                            flatpickr.l10ns.pt = {
                                weekdays: {
                                    shorthand: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"],
                                    longhand: [
                                        "Sonntag",
    									"Montag",
                                        "Dienstag",
                                        "Mittwoch",
                                        "Donnerstag",
                                        "Freitag",
                                        "Samstag",
                                    ],
                                },
                                months: {
                                    shorthand: [
                                        "Jan",
                                        "Feb",
                                        "Mar",
                                        "Apr",
                                        "Mai",
                                        "Jun",
                                        "Jul",
                                        "Aug",
                                        "Sep",
                                        "Okt",
                                        "Nov",
                                        "Dez",
                                    ],
                                    longhand: [
                                        "Januar",
                                        "Februar",
                                        "März",
                                        "April",
                                        "Mai",
                                        "Juni",
                                        "Juli",
                                        "August",
                                        "September",
                                        "Oktober",
                                        "November",
                                        "Dezember",
                                    ],
                                },
                                rangeSeparator: " até ",
                            };
                            
            //set translations
                            flatpickr.localize(flatpickr.l10ns.pt);
                            flatpickr('.flatpickr-input');
                            //set format
                            
                        });
            });
            </script>
            <?php
    } );