Galley image for ecommorce product single page with crop features

  <script> $(document).ready(function(){ $('#add_more_galleries1').click(function(){ $(".add_more_gallery_images2").show(); $(this).hide(); $("#add_more_galleries2").show(); }); $('#add_more_galleries2').click(function(){ $(".add_more_gallery_images3").show(); $(this).hide(); $("#add_more_galleries3").show(); }); $('#add_more_galleries2').click(function(){ $(".add_more_gallery_images3").show(); $(this).hide(); $("#add_more_galleries3").show(); }); $('#add_more_galleries3').click(function(){ $(".add_more_gallery_images4").show(); $(this).hide(); $("#add_more_galleries4").show(); }); $('#add_more_galleries4').click(function(){ $(".add_more_gallery_images5").show(); $(this).hide(); $("#add_more_galleries5").show(); }); $('#add_more_galleries5').click(function(){ $(".add_more_gallery_images6").show();…

0 Comments

Integrate zoom with laravel

  https://marketplace.zoom.us/ Goto right corner develop dropdown and enter mouse it and click on create build app link client_id = GBtAuW3fQuyz0MgyIWM_mA client_secret = 4caJamU31pXeCm27pXiaMv79UYkr2Hwe composer require macsidigital/laravel-zoom right cmd: composer…

0 Comments

Multi select dropdown

  <!-- jQuery --> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> <!-- Select2 CSS and JS --> <link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css" rel="stylesheet" /> <script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.min.js"></script> <select id="mySelect" multiple="multiple" style="width: 300px;" name="select_fruits[]"> <option value="apple">Apple</option> <option value="banana">Banana</option> <option value="cherry">Cherry</option>…

0 Comments

How to create a loader

  <style> .loader { border: 16px solid #f3f3f3; border-radius: 50%; border-top: 16px solid #3498db; width: 120px; height: 120px; -webkit-animation: spin 2s linear infinite; /* Safari */ animation: spin 2s linear…

0 Comments

Appointment booking system using calendor in laravel

  Appointment booking system @extends('layouts.admin') @push('title', get_phrase('Edit Appointment')) @push('meta')@endpush @push('css')@endpush @section('content') <script src='https://cdn.jsdelivr.net/npm/fullcalendar-scheduler@6.1.11/index.global.min.js'></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script> <!-- Mani section header and breadcrumb --> <div class="ol-card radius-8px print-d-none"> <div class="ol-card-body my-3 py-4…

0 Comments

Fetch data from site review plugin

  [site_reviews pagination="true" per_page="25"] $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $reviews_per_page = 5; $args = array( 'post_type' => 'review', // Custom post type for reviews 'posts_per_page' => $reviews_per_page, 'paged'…

0 Comments