grep -rnw ‘/path/to/somewhere/’ -e ‘pattern’ Eg: grep -rnw ‘/var/www/sarankumar.xyz/htdocs/’ -e ‘google.com’ -r or -R is recursive, -n is line number, and -w stands for match […]

Just a Developer Blog
grep -rnw ‘/path/to/somewhere/’ -e ‘pattern’ Eg: grep -rnw ‘/var/www/sarankumar.xyz/htdocs/’ -e ‘google.com’ -r or -R is recursive, -n is line number, and -w stands for match […]
some times we need to woocommerce change product price programmatically. add_action( ‘woocommerce_before_calculate_totals’, ‘add_custom_price’ ); function add_custom_price( $cart_object ) { $custom_price = 10; // This will be […]
WordPress plugin that create an awesome flexslider gallery instead of the default static thumbnails.No custom classes or extra posts necessary, just use the normal add […]
Plugin help to remove some default admin bar menus. WordPress logo,sitename,comments,updates,loginout etc can be easily removed. Also you can change the color of the adminbar […]
If your server setup support SSH then use following code to upload the folders from local system. scp -r mydirectory [email protected]:destdir The -r means “recursive” so it […]
Step 1: Create a new angular app by following command. ng new my-foundation-app Step 2: change directory to new created app folder. cd my-foundation-app Step […]
I have using wordpress for my clients and personally using for business purpose too. While checking with wordpress gutenburg I can see that the most […]
This is angular 6 tutorial for beginners. Steps you need to do is: Install Nodejs Install NPM(Package manager will automatically install while installing Nodejs) Install […]