HOW TO SHOW IMAGE IN YAJRA DATATABLE COLUMN [SOLUTION]

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]

How to implement Yajra Datatable in Laravel ?

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 ?

HOW TO UPLAD IMAGE IN CKEDITOR BY USING 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

HOW TO DISPLAY ALT IMAGE AND CAPTION OF IMAGE IN WORDPRESS THEME DEVELOPMENT?

wordpress theme development

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?

DISPLAY CATEGORY LIST OF POST IN WORDPRESS DEVELOPMENT.

In wordpress there can be more than one category. Thus it has to be kept in unordered list <ul> . The php command get_the_category() gives the array form of all the category. If you want to separate category by only comma you can do this <?php $category=get_the_category(); $separator=”, “; $catall=”; foreach($category as $cato){ $catall=$catall.”<a href=”.get_category_link($cato->term_id).”>”.$cato->cat_name.”</a>”.$separator; … Read moreDISPLAY CATEGORY LIST OF POST IN WORDPRESS DEVELOPMENT.

CUSTOM LOGO IN WORDPRESS DEVELOPMENT .

Custom Logo is your Brand Logo which is shown usually above or on navbar. During the development of wordpress theme, you need to setup the custom logo design. The image or log is shown in the dashboard>customize>site identity. But It is not shown unless you put these code in the function.php . /* customize theme … Read moreCUSTOM LOGO IN WORDPRESS DEVELOPMENT .

How To display Favicon, Site Title and Tagline on wordpress development?

What is site Icon?It is small icon on the tab bar of your websiteWhat is title and tagline?They are name and short description on title of your site. Favion along with site title and Tagline is found in dashboard>customize>site identityDuring development of wordpress you have to hard code for showing these. First of all lets … Read moreHow To display Favicon, Site Title and Tagline on wordpress development?