How To Add Facebook Message Box in Your Website?
How To Add Facebook Message Box in Your Website? How To Add Facebook Message Box in Your Website?
Blog For Knowledge,Tech & Infotainment
I accidentally deleted a folder in a desktop which I came to know was very useful to me. I searched in recycle Bin but could not find and I came to know the solution for the problem that I want to share now. 1. First all open command prompt and write this line vssadmin List … Read moreHow to recover shift+deleted files and folders in windows?
It is sometimes necessary to send data or an array to all the views sometimes. but this is the rare case. For this problem, you can have this solution 1) To send the data to all the i) go to app\providers\appServiceProvider ii) in boot() function do the following ii) if you want to send a … Read moreHow to send a data to all views in laravel
I have a table where I need to show title, image and option. I have already made a datatable jquery and called the data. My table is as below. <table class=”table”> <thead> <tr> <th>#</th> <th>Title</th> <th>Image</th> <th>Option</th> </tr> </thead> <tbody> </tbody> </table> And … Read moreHOW TO SHOW IMAGE IN YAJRA DATATABLE COLUMN [SOLUTION]
Datatable is an excellent pacakage for those who wants to make a normal table interactive. The step to implement the Datatable is as follow. You can also follow the documentation of the laravel https://github.com/yajra/laravel-datatables 1) First of all go to your command prompt and your root folder and hit this command composer require yajra/laravel-datatables-oracle You … Read moreHow to implement Yajra Datatable in Laravel ?
Previously We discussed how to install CKEditor in Laravel. You can click HERE to read the article. I have already installed CKEditor. Now I would like to upload the image in the textarea by CKEditor. 1. First of all create A route. Route::post(‘ckeditor/upload’, ‘CkeditorController@upload’)->name(‘ckeditor.upload’); 2. Then create Controller named as CKeditor Controller. In … Read moreHOW TO UPLAD IMAGE IN CKEDITOR BY USING LARAVEL
The blog I write has a problem and solution. This is the problem I faced while working so it gives to the point solution. You may need it Problem 1 (Installing CKEditor in Laravel) While usingl laravel I got problem to install CKEditor. I downloaded and tried to link the js file but it didn’t … Read moreHow to install CKEditor and upload image in CKEditor
Adsense is one of the best ad agency that I have ever seen. I am using adsense to earn revenue for more than 2 years. In my experience with adsense and other advertisement plans adsense is genine and best plan. If you have adsense account then you probably dont want to loose it due to … Read moreCan I change my theme after Aproval of Adsense?
Alt is crucial part of SEO because it describe the image for engines and screen readers. whereas, the caption is optional and can be used only when you need to provide additional information about the image to website visitors. FOR CAPTION to display caption is an easy task. just you need to put this code … Read moreHOW TO DISPLAY ALT IMAGE AND CAPTION OF IMAGE IN WORDPRESS THEME DEVELOPMENT?
Excerpt is the short form of the whole article. If you want to get the whole article inside the loop you need to echo the tag get_the_content(), but to get short form or the article you can do two method. FIRST AND EASY METHOD you can simply echo get_the_excerpt(); SECOND METHOD BUT FLEXIBLE METHOD you … Read moreEXCERPT SIMPLIFIED IN WORDPRESS THEME DEVELOPMENT