Blogs

Role Update Notification in Word...

24 Jun 2021 Admin 0

831

When updated user role user get a notification email. This solution using php and html .  #wp_mail() #user_role_update // Role Update Notification [action on the...

Install React

17 Jun 2021 Admin 0

818

The Process of install react js on local pc Install Node JS [Download node js exe and install] Set env variable on my computer properties []

Create Custom Post Type And Taxo...

25 May 2021 Admin 0

838

Create a custom post type and its taxonomy with php in wordpress // for media corner // custom post type with category function media_corner_post_type() { // Set U...

Wordpress Shortcode With Attribu...

18 May 2021 Admin 0

828

Generate Wordpress shortcode with attribute. Multi lang url generate with shortcode. add style with shortcode attribute. Add image with shortcode in wordpress. Wordpress shortcode attribute and con...

Get Post by Custom Query in Word...

01 Apr 2021 Admin 0

788

Get Post by query like category_name, post_type etc $blog_posts = new WP_Query( array( 'post_type' => 'post', 'post_status’' => 'publish', 'posts_per_page' => 3,'category_name' =...

Files and folders of a Custom Wo...

31 Mar 2021 Admin 0

840

Wordpress Theme Files style.css = Theme information[theme name, author,author uri, description, version, License ect ]. style-...

Node Router in another file

14 Mar 2021 Admin 0

1020

Defining routes like above is very tedious to maintain. To separate the routes from our main index.js file, we will use Express.Router. Create a new file called things.js and type the following in...

Scroll Dispatch Module Not in 'a...

13 Mar 2021 Admin 0

987

  #problem : @angular/cdk version 9.0.1 does not export member ScrollDispatchModule. [on Angular 9]    

Why JQuery Get Method Not Suppor...

13 Mar 2021 Admin 0

749

Ajax Get method not supported in javascript because of using the jquery slim version. And use Jquery at head. to activate the get method in ajax use the orginal version of jquery....

The Automatic Build After Save a...

12 Mar 2021 Admin 0

802

nodemon is a package which help to build the node js project automaticly after save. install  -g nodemon ''to install nodemon in gl...

Node Js readFile

12 Mar 2021 Admin 0

803

The data.json file is {"name":"John", "age":31, "city":"New York"} The node file is var fileSystem = requir...

Multi word property names in Jav...

10 Feb 2021 Admin 0

811

We can also use multiword property names, but then they must be quoted: let myVar = { user: 'Mr.rakib hasan', phone: 999898989, &#39...

why my html remove the ckeditor

30 Jan 2021 Admin 0

774

In my html the ckeditor automaticly removed my custom html code. I am solved this issue here .  Update your script where you declear the ck editor at bottom . <script&nb...

Hesto Multi Auth for Laravel

15 Dec 2020 Admin 0

734

Hesto Multi Auth for Laravel - 5.8 Step 1: Install Through Composer composer require hesto/multi-auth Step 2: I...

Angular Router Change Event 2

15 Dec 2020 Admin 0

771

Angular Router Change Event  with Router  First import the router on top -  import { ActivatedRoute, Router } from&nb...

Laravel default public path remo...

10 Dec 2020 Admin 0

841

Laravel default public path remove with htaccess. http://localhost/my-laravel/public - To - http://localhost/my-laravel keep The HTACCESS in your root directory as...

MQTT in Angular

03 Dec 2020 Admin 0

822

#ngx-mqtt in angular #ngx-mqtt in angular 7 More Details at https://sclausen.github.io/ngx-mqtt/

Base64 encoded images rendering...

30 Nov 2020 Admin 0

776

Show Large base64 encoded image. Solve Unsafe error on base64 image view. Solve, Unsafe image in angular. Show Large Base 64 Image in angular. Image in Angular. Angular Image view....

Angular Router Change Event

25 Nov 2020 Admin 0

746

Subscribe Router Params . Set OnRouter Change. On Url Change. Subscribe to router. Angular 8+ Router Change Event.  getParticipantsPhotos(...

Useful Meta Tags and Preloader

14 Nov 2020 Admin 0

760

There many kinds of meta tag to make your webpage more valuable .   <meta charset="utf-8">     <meta name="viewport" cont...

Owl Carousel Focus Item

14 Nov 2020 Admin 0

782

Here we make a carousel with js library of  "OwlCarousel 2" & Bootstrap. First add the bootstrap and jquery. Bootstrap css+js...

Angular Component Interaction

14 Nov 2020 Admin 0

833

There many kinds of component  Interaction, the most used Interaction's are Parent to child Child to parent Sibling to sibling ...

local Storage Set Array Item And...

12 Nov 2020 Admin 0

761

local Storage Set Array Item And Get Array Item  userIsAdmin() { // Set item (Keep in Local)  localStorage.setItem(&#3...

How to Show the javascript metho...

05 Nov 2020 Admin 0

740

Show the javascript method raw  code in import  such as a function is function getActiveChannelID(){ let a = 10; let b = 250;...

Add Google Map in Angular 2 Proj...

04 Nov 2020 Admin 0

752

Setting up Angular Google Maps Install Angular Google Maps npm install @agm/core Setup @NgModule

Get URL Path and url Encoding in...

01 Nov 2020 Admin 0

730

URL Structure: https://site.com:8080/blog/angular?p1=device1#specification Origin: protocol = https host = site.co...

How to get query string values i...

20 Oct 2020 Admin 0

556

JavaScript URLSearchParams https://test.com/?device_id=md00142&location=dhaka https://test.com/device?device_id=md78547 const params =...

No directive found with exportAs...

19 Oct 2020 Admin 0

867

No directive found with exportAs 'ngModel' Errors No directive found with exportAs 'ngModel' No directive fo...

Make Custom Events in Javascript

05 Oct 2020 Admin 0

810

We can not only assign handlers, but also generate events from JavaScript. Custom events can be used to create “graphical components”. For instance, a root element of our own...

Browser Default Actions

05 Oct 2020 Admin 0

782

Many events automatically lead to certain actions performed by the browser. For instance: A click on a link – initiates navigatio...