Tag Archives: front end

How to configure WordPress SMTP without plugin
23. Mar 2018 17:31 • WordPress • #, #, #, #, #

How to configure WordPress SMTP without plugin

TL;DR: You don’t need a plugin to send WordPress email over SMTP. Define SMTP creds in wp-config.php and hook phpmailer_init in your theme (or a small “must-use” mu-plugin) to configure PHPMailer. Test with wp_mail() or WP-CLI. Why do this? Assumptions: You’re comfortable editing theme files / mu-plugins and have SMTP credentials from a provider. Tested…Read More

How to create simple slider with jQuery
20. Feb 2018 21:00 • Development, Tutorials • #, #, #, #, #, #

How to create simple slider with jQuery

There are plenty of great jQuery slider plugins/scripts out there, like bxSlider, but what if you need just simple slideshow and don’t want to use any of those scripts because they are overkill? No worries, it isn’t that hard to do, and we are going to go trough step by step to build one. We…Read More

Smooth scroll to element using jQuery
18. Feb 2018 18:50 • Snippets • #, #, #, #

Smooth scroll to element using jQuery

If you are currently developing one page website, or just having a page where you navigate to certain elements, chances are that you’ll want that scroll to be a smooth and clean. Immediately you think I will need some scrolling JS plugin/script (like ScrollMagic), but there is a much simpler and easier way: Just change…Read More