This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| In WordPress Editor: | |
| [youtube id='U3TC03kQ_Do'] | |
| [youtube id='U3TC03kQ_Do' align="right"] | |
| [youtube id='U3TC03kQ_Do' align="left"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //Display for current post | |
| echo rrssb(); | |
| //Display for a specific post (by post ID) | |
| echo rrssb(13); | |
| ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| chosen_browser_is_supported = function() { | |
| if (window.navigator.appName === "Microsoft Internet Explorer") { | |
| return document.documentMode >= 8; | |
| } | |
| if (/iP(od|hone)/i.test(window.navigator.userAgent)) { | |
| return false; | |
| } | |
| if (/Android/i.test(window.navigator.userAgent)) { | |
| if (/Mobile/i.test(window.navigator.userAgent)) { | |
| return false; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Update Image Path from Old to New Domain | |
| UPDATE wp_posts SET post_content = REPLACE (post_content, 'src="http://OLDURL.com', 'src="http://NEWURL.com'); | |
| UPDATE wp_posts SET guid = REPLACE (guid, 'http://OLDURL.com', 'http://NEWURL.com') WHERE post_type = 'attachment'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Edit Hosts File | |
| sudo nano /private/etc/hosts | |
| //Flush DNS | |
| sudo killall -HUP mDNSResponder |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .row { width: 100%; display: table; table-layout: fixed; } | |
| .row .col { display: table-cell; padding: 0 15px; } | |
| .row .col:first-child { padding-left: 0; } | |
| .row .col:last-child { padding-right: 0; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div class="gf_browser_chrome gform_wrapper" id="gform_wrapper_1"><a id="gf_1" class="gform_anchor"></a> | |
| <form method="post" enctype="multipart/form-data" target="gform_ajax_frame_1" id="gform_1" action="/sample-page/#gf_1"> | |
| <div class="gform_heading"> | |
| <h3 class="gform_title">Contact Us</h3> | |
| <span class="gform_description">Optional form description.</span> </div> | |
| <div class="gform_body"> | |
| <ul id="gform_fields_1" class="gform_fields top_label form_sublabel_below description_below"> | |
| <li id="field_1_1" class="gfield gfield_contains_required field_sublabel_below field_description_below"> | |
| <label class="gfield_label" for="input_1_1_3">Name<span class="gfield_required">*</span></label> | |
| <div class="ginput_complex ginput_container no_prefix has_first_name no_middle_name has_last_name no_suffix gf_name_has_2 ginput_container_name" id="input_1_1"> <span id="input_1_1_3_container" class="name_first"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .pointer-events-on-click { cursor: pointer; } | |
| .pointer-events-on-click iframe { pointer-events: none; } |