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 | |
| //Original | |
| function zeo_final_title(){ | |
| // Use object to avoid namespace collisions | |
| $zeo_rewrite_title = new zeo_rewrite_title(); | |
| // We want to act when the page is 99% complete | |
| add_action('wp_footer', array(&$zeo_rewrite_title, 'wpzeo_footer')); |
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 | |
| /* | |
| Plugin Name: Nextend Social Login - Username length | |
| */ | |
| add_filter('nsl_validate_username', function ($isValid, $username, $errors) { | |
| if (strlen($username) < 6) { | |
| $errors->add('invalid_username', '<strong>' . __('ERROR') . '</strong>:' . __('Sorry, username must contain at least 6 characters.')); | |
| $isValid = 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
| <div><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 120" preserveAspectRatio="none"><br /> | |
| <g class="n2-ss-divider-start"> | |
| <path fill="RGBA(255,255,255,1)" opacity="0.25" d="M1920,0 0,120 0,0z" duration="1" delay="0" data-original="M1920,0 0,0 0,0z"></path> | |
| <path fill="RGBA(255,255,255,1)" opacity="0.5" d="M1920,0 0,80 0,0z" duration="1" delay="0.2" data-original="M1920,0 0,0 0,0z"></path> | |
| <path fill="RGBA(255,255,255,1)" d="M1920,0 0,40 0,0z" duration="1" delay="0.4" data-original="M1920,0 0,0 0,0z"></path> | |
| </g><br /> | |
| <g class="n2-ss-divider-end"> | |
| <path fill="RGBA(255,255,255,1)" opacity="0.25" d="M1920,0 0,120 0,0z"></path> | |
| <path fill="RGBA(255,255,255,1)" opacity="0.5" d="M1920,0 0,80 0,0z"></path> | |
| <path fill="RGBA(255,255,255,1)" d="M1920,0 0,40 0,0z"></path> |
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 | |
| /* | |
| Plugin Name: Test | |
| */ | |
| function test() { | |
| return '<div><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 120" preserveAspectRatio="none"> | |
| <g class="n2-ss-divider-start"> | |
| <path fill="RGBA(255,255,255,1)" opacity="0.25" d="M1920,0 0,120 0,0z" duration="1" delay="0" data-original="M1920,0 0,0 0,0z"></path> | |
| <path fill="RGBA(255,255,255,1)" opacity="0.5" d="M1920,0 0,80 0,0z" duration="1" delay="0.2" data-original="M1920,0 0,0 0,0z"></path> |
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 | |
| add_action('nsl_register_new_user', function ($user_id) { | |
| if (NextendSocialLogin::getTrackerData() == 'editor') { | |
| $user = new WP_User($user_id); | |
| $user->set_role('editor'); | |
| } | |
| }); |
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 | |
| if(class_exists('NextendSocialLogin', false)){ | |
| NextendSocialLogin::renderButtonsWithContainer(); | |
| } |
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
| Hi, there is not such ready-to-use feature in Smart Slider, but you can do what you need. | |
| You need to separate it into two task: | |
| Task #1: On page load, scroll the browser to the slider with id 31: | |
| <script type="text/javascript"> | |
| jQuery(window).on('ready', function() { | |
| jQuery('html, body').scrollTop($('#n2-ss-31').offset().top); | |
| }); | |
| </script> |
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 | |
| function ob_end_clean_all() { | |
| $handlers = ob_list_handlers(); | |
| while (count($handlers) > 0 && $handlers[count($handlers) - 1] != 'ob_gzhandler' && $handlers[count($handlers) - 1] != 'zlib output compression') { | |
| ob_end_clean(); | |
| $handlers = ob_list_handlers(); | |
| } | |
| } |
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
| // http://stackoverflow.com/questions/3860351/relative-position-in-dom-of-elements-in-jquery | |
| // What this does is .add() the additional element (or selector) | |
| // (which jQuery keeps in document order) and then checks if it's the second of the two. | |
| (function($) { | |
| $.fn.isBefore = function(elem) { | |
| if(typeof(elem) == "string") elem = $(elem); | |
| return this.add(elem).index(elem) > 0; | |
| } | |
| })(jQuery) |