Articles

Anything from tips & tricks, development tutorials, freebeies, quick snippets to random stuff from my life.
3 Top Tips for Solopreneur Success
04. Dec 2019 15:53 • Entrepreneurship • #, #, #

3 Top Tips for Solopreneur Success

It can be argued that the solopreneur life is not for the fainthearted, and yet today, there are some 20 million solopreneurs in America alone. And with so many awesome advantages of being a solopreneur, it’s no wonder this figure is rising by the day. But it also goes without saying that it won’t be…Read More

Disable WordPress automatically creating image sizes
20. Mar 2018 20:47 • Snippets, WordPress • #, #, #, #

Disable WordPress automatically creating image sizes

Have you ever looked inside the uploads folder of WordPress site and saw a lot of almost the same image files? Do not worry, this is not some malware or anything similar, it’s the default behaviour of WordPress called thumbnails or image sizes. For any larger image you upload, WordPress creates multiple resized versions of…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

Redirect all HTTP requests to HTTPS
19. Feb 2018 17:48 • Snippets • #, #, #, #, #, #

Redirect all HTTP requests to HTTPS

If you just acquired your SSL certificate and set it up, chances are that you will need to force the website to use secure HTTPS version by default. This is done very easily, you’ll just need to create .htaccess file (if it doesn’t exist already)  in root folder of your website, and on top of…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: $(‘a[href*=”#”]’).on(‘click’, function…Read More