• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar
logo

Tutsplanet

Free Technical and Blogging Resources

  • Home
  • Web Hosting
  • Programming
  • Plugins
  • Write For US
  • News
  • About Us
  • Tools

General

How to Add Music to Videos and Edit the Audio?

Jan 23, 2021 by Editorial Staff Leave a Comment

Using a proper piece of background music that perfectly matches the video is very helpful for creating a mood. The good news is that it is not a daunting task to add music to video. In this article, you will learn 2 simple methods to add background music, popular songs, or an audio recording, to […]

Filed Under: General

7 Best Softwares For Organizing Your Work Life

Jan 17, 2021 by Editorial Staff Leave a Comment

Whether in the office or working from home, organization in your work life can get tricky. With busy days, long to-do lists, and endless distractions, it can become overwhelming to manage tasks and prioritize your day. Even if you follow tips on how to stay productive, using additional tools can be beneficial, too. Although sticky […]

Filed Under: General

Introduction to Magic Gradients in Xamarin.Forms

Jan 12, 2021 by Editorial Staff Leave a Comment

Xamarin.Forms is a fully-featured mobile app development platform that has support for astonishing features. For instance, you could possibly create an animation by using a trigger, applying a material design rule, implementing unique effects, etc. Here, in this blog, we will learn about a NuGet package called Magic Gradient which helps in adding unique effects […]

Filed Under: General, Programming

Top 20 Alternatives to Notepad++

Jan 11, 2021 by Editorial Staff Leave a Comment

Notepad++ becomes a very simple and powerful tool for IT professionals. If you are interested to know, the top 20 alternatives for Notepad++, this article is for you.

Filed Under: General

Stop or remove all Docker containers

Oct 4, 2020 by Editorial Staff Leave a Comment

The below code can be used to stop/remove all the running docker containers in your system. docker stop $(docker ps -a -q) docker rm $(docker ps -a -q)

Filed Under: General, Programming

How To Load Stock Item Using product_id In Magento 2?

Sep 28, 2020 by Editorial Staff Leave a Comment

In some cases you have to load stock item using product_id in Magento2. Today’s snippet we are showing how to do that. For illustration purpose we use a model example. namespace Vendor\Module\Model; use Magento\CatalogInventory\Model\Stock\StockItemRepository; class HelloWorld extends extends \Magento\Framework\Model\AbstractModel { protected $stockItemRepository; public function __construct( StockItemRepository $stockItemRepository ) { $this->stockItemRepository = $stockItemRepository; } public function […]

Filed Under: General Tagged With: Magento 2

How to change PHP version on MAMP – Mac OSX

Aug 26, 2020 by Editorial Staff Leave a Comment

It’s very often that you want to change the PHP version in order to install different softwares in your development environment. But the MAMP version in your system comes with pre-installed version of PHP, and you want to go with it.

Filed Under: General, How To Tagged With: osx

How to Enable Flat Catalog in Magento 2

Jul 15, 2020 by Editorial Staff Leave a Comment

Using flat catalog will speedup your website to a certain extent as  Magento does not need to join multiple tables to pull products details. When you use the flat catalog system, all the EAV attributes will  copied to flat table on the fly.

Filed Under: General

How To Change The Magento 2 Admin Session Timeout

Jul 10, 2020 by Editorial Staff Leave a Comment

It’s quite annoying that every time page goes to login page  when we try to refresh a page or saving a product in Magento 2 admin side. So this can be achieved by changing the admin session timeout in Magento 2.

Filed Under: General Tagged With: Magento 2

Deny all, allow only one IP through htaccess

Jul 6, 2020 by Editorial Staff 1 Comment

If you want to deny all the traffic except a single IP use the below snippet in your .htaccess.

Filed Under: General

Magento 2 – How To Disable Wishlist Feature

Jul 1, 2020 by Editorial Staff Leave a Comment

Wish list is a good feature for websites as users can save their items for a future purchase. Even they can send this to their friends as well. But some storefronts, there is no need for wish list feature, but in Magento 2 this is a feature comes built in. So how does we disable […]

Filed Under: General

How to load a Slideshow on the Home Page – Magento 2

Jun 21, 2020 by Editorial Staff Leave a Comment

In this article we will show how to load a slideshow in your Magento 2 website’s homepage. We use  Slick JS Library for this example.

Filed Under: General

Make your own stickers for WhatsApp and iMessages

May 20, 2020 by Editorial Staff Leave a Comment

You might be noticed that some of your friends  sending nice stickers in Whatsapp as reply to your chat. Sometimes it will a picture from your favorite movie scene or some other instance. Now you also can create stickers for WhatsApp, by using a app called sticker.ly. Just search in the app store/play store for […]

Filed Under: General

How to Improve Cart & Checkout Page of Your eCommerce Store

Jan 8, 2020 by Editorial Staff 1 Comment

The cart page performs the duties of a lead-maker, whereas, the checkout is the deal-binder. Both are the significant parts of a buyer’s journey. Improving them simply means streamlining the buyers’ passage towards absolute purchases. However, the tricky part is deciding how to improve these pages for higher usability and conversions. The marketers and webmasters […]

Filed Under: General Tagged With: magento2

Solution: windows photo viewer opens each time save a pic file

Sep 17, 2019 by Editorial Staff Leave a Comment

Problem: When I download a file from internet, it always opens in the default photo viewer after download complete. This is a really annoying thing that every time we need to close the image opened automatically. To solve this you can go through the below steps.

Filed Under: General Tagged With: Windows 10

What is Inbound Marketing in SEO?

May 21, 2019 by Editorial Staff 1 Comment

What is Inbound Marketing in SEO? If you want to sustain in the online market, you need to have an online presence. This can only work out if you know the right marketing and SEO techniques. Since it incorporates a lot of hard work and analytics, most companies prefer hiring experts for their SEO and […]

Filed Under: General

Powerful New Magento 2.3.0 Released

Nov 29, 2018 by Editorial Staff 1 Comment

Magento 2.3.0 is now available delivering powerful new tools that enhance both merchant and developer experiences. Key features in this release are: Easily manage inventory across multiple locations, accelerate fulfillment, and improve checkout performance with Multi-Source Inventory Build superior mobile shopping experiences and lower total cost of ownership with Progressive Web Apps Create new pages […]

Filed Under: General Tagged With: magento2

What are some good alternatives to Algolia search?

Oct 21, 2018 by Editorial Staff Leave a Comment

Algolia, very widely used ultra fast search engine solution powering so many websites in the world of internet. But did you ever think alternative solution for Algolia. Here you find a list of alternative services to Algolia search platform. EXPERTREC CUSTOM SEARCH ENGINE AWS CloudSearch Azure Search SearchIQ Searchify Searchly Typesense Elasticsearch Cludo

Filed Under: General

Display preview of selected image in input type file

Aug 23, 2018 by Editorial Staff Leave a Comment

In modern web images are very essential thing for understanding the content better, so do the image upload. Sometimes we have to preview the image before upload. So the user knows which image they are going to upload to server. In this case we can use this instant preview of image while they select the […]

Filed Under: General

How to select specific columns in laravel eloquent ORM?

Aug 8, 2018 by Editorial Staff Leave a Comment

Model::select(‘field1′,’field2’)->where(‘type’, ‘post’)->get()

Filed Under: General, Snippets List

Timeline.js – Create a timeline slider

May 23, 2018 by Editorial Staff Leave a Comment

Timeline.js is pretty good jQuery plugin, creates a carousal that progresses based on chronological points. It includes a  lot of options to set up this timeline carousal.

Filed Under: General Tagged With: jQuery Plugins

How to get Query Strings Value from a URL in Laravel 5.5?

Dec 19, 2017 by Editorial Staff Leave a Comment

When you work with Laravel it is very common to get query string values from URL. In native PHP you can get this via $_GET variable. But when you want to get Query strings from a URL in Laravel you can use the below methods. Either you can use Request Facade or Input facade in […]

Filed Under: General, PHP Tagged With: Laravel, Laravel 5.5

Create RSS feed for a website in PHP

Nov 20, 2017 by Editorial Staff Leave a Comment

Short for Really Simple Syndication or Rich Site Summary, it’s the way to communicate to your website. If you like a website that producing good content, you need to check the website every day to read latest updates. That’s where RSS comes to help . If they have RSS feeds in their website you can […]

Filed Under: General

How to set and get config values in Laravel 5

Oct 24, 2017 by Editorial Staff Leave a Comment

Configuration files make it easy to access the config options across the application. In Laravel there is no exception.  It is very clean approach keeping the all config items in one place. Create a Config file To create a custom config file in Laravel, go to config directory and create a php file.  In my […]

Filed Under: General

Free online tools to check website performance and speed

Sep 16, 2017 by Editorial Staff Leave a Comment

Website performance and speed become a critical factor for websites. Google’s new algorithm gives more importance for the website’s speed. So website speed affects your websites’ search engine ranking. If your website takes too much time to load, you might lose your visitors, so the revenue. In that case, you have to optimize your website for […]

Filed Under: General

jQuery Text Counter Plugin

Sep 2, 2017 by Editorial Staff Leave a Comment

A jQuery plugin for counting and limiting characters/words on text input, or textarea, elements.

Filed Under: General

Embed Player : jQuery Audio Video players

Sep 2, 2017 by Editorial Staff Leave a Comment

Unified jQuery interface to various audio/video players without dependency on their official JavaScript libraries. Currently supported players: YouTube Vimeo Twitch SoundCloud Dailymotion HMTL 5 audio/video Internet Explorer <=8 is not supported. Why you need a unified player, because you can have all these services in one player.

Filed Under: General Tagged With: Best jQuery Html5 Audio Player Plugins & Tutorials with Demo

7 Top Reddit Alternatives that You Will Find it Amazing

Aug 18, 2017 by Editorial Staff Leave a Comment

Reddit is on the way to secure a great place on the web as one of the most visited websites.  It’s a highly user curated content from all over the world.  The most voted posts will be on the front page of the Reddit will have most attention. There are many people find it as […]

Filed Under: General

How To Change DNS Servers in Windows 8

Aug 7, 2017 by Editorial Staff Leave a Comment

When you change DNS servers on your computer, you actually changes the server helps to translate the IP to hostname.  You may know that all websites will  have a IP address and a hostname. Since this DNS servers may cause issues and it leads to your internet connection problem. In Windows 8,  it automatically fetch […]

Filed Under: General

The 11 best blogging and publishing platforms on the Internet today

Aug 7, 2017 by Editorial Staff Leave a Comment

10 years back, if you want to start a blog,  options were very limited over the internet. You have had Blogspot and wordpress.com, these were the only key players allow you to publish your articles without any cost. Why blogging so important? Blogging is the most important aspect of content marketing when you want to rank in […]

Filed Under: General, Softwares

  • Go to page 1
  • Go to page 2
  • Go to page 3
  • Go to Next Page »

Primary Sidebar




Quick Links

  • A Simple YouTube Video Downloader Script in PHP
  • The 50 Most Useful jQuery Plugins for Frontend Development
  • Word Set 01
  • Convert PNG to JPG Online

Subscribe

* indicates required

Share

   

Hot topics

  • A Simple YouTube Video Downloader Script in PHP 13.3k views
  • Open a URL in a new tab using JavaScript 10.7k views
  • Using Third-Party Libraries in Codeigniter 8.4k views
  • Add FTP/SFTP in Visual Studio Code 6.1k views
  • Replace “\n” with new line characters, using Notepad++ 4.8k views
  • Manually Install APK Files In Android Studio Emulator 4.7k views
  • Upload Multiple Images and Store in Database using PHP and MySQL. 4.5k views
  • How To Install And Use CKEditor In Laravel? 4.2k views
  • Simple PHP Shopping Cart 4k views
  • Spout, an awesome library for reading and writing in Excel. 3.3k views

Categories

  • Design & Development
  • Drupal
  • Facebook
  • General
  • How To
  • ios
  • Javascript
  • Linux
  • Magento
  • Marketing
  • News
  • PHP
  • Plugins
  • Programming
  • Snippets List
  • Social Media
  • Softwares
  • Themes
  • Tips
  • Wordpress
  • YouTube

Copyright © 2021 · TutsPlanet Gene Theme on Genesis Framework · Powered By BunnyCDN