Disable for specific page add this on top of the file /* eslint-disable */ Disable for whole project Create a file named .eslintignore and enter **/*
ARCHIVE
Tips
Posted on September 4 2018 / in Tips
In your command prompt / powershell enter git config --global core.autocrlf false if you are getting errors when cloning git products in PHPSTORM
Posted on August 1 2018 / in Javascript, Tips
Go to the text editor ( where you can input html content ) and input: <script>setInterval(function(){ if(window.jQuery){ jQuery(window).trigger('resize'); } },3000);</script>
This is the code function sanitize_youtube_url_to_id($arg){ if(strpos($arg,'youtube.com/embed')!==false){ $auxa = explode('/','youtube.com/embed/'); if($auxa[1]){ return $auxa[1]; } } if(strpos($arg,'youtube.com')!==false || strpos($arg,'youtu.be')!==false ){ if(DZSHelpers::get_query_arg($arg,'v')){ return DZSHelpers::get_query_arg($arg,'v'); } if(strpos($arg,'youtu.be')!==false){ $auxa = explode('/','youtube.com/embed/'); $arg = $auxa[count($auxa)-1]; } } return arg; }
Posted on May 23 2018 / in Tips
Just use this in SQL update dzsap set site_url = REPLACE(site_url, 'wwww.', '')
In your site right click on the background. And find the element that has the background property It might be body root element or might be a descendant of body. In this case it’s #ht-site-container-child You will also need the id of the page if you want to edit for only that current
assign Contributor role to the user you wish to allow this install User Role Editor plugin and activate for the pages you want to allow just that user to edit, make them author you can do this from Quick edit menu from the Pages menu in users , select your user, click Capabilities check edit_pages
Recent Comments