QloApps Forums

    Forum

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. melamanehermanus
    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 6
    • Posts 15
    • Best 0
    • Controversial 0
    • Groups 0

    melamanehermanus

    @melamanehermanus

    0
    Reputation
    230
    Profile views
    15
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    melamanehermanus Unfollow Follow

    Latest posts made by melamanehermanus

    • RE: Not abe to change homepage background

      @Faiz said in Not abe to change homepage background:

      https://prnt.sc/muy8s0

      @zayno70 I had the same issue, try and select "Recompile templates if the files have been updated"
      https://prnt.sc/muy8s0

      it worked for me

      posted in General Discussion
      M
      melamanehermanus
    • RE: Mobile App - Cross-platform

      Thanks @Faiz , I will check out thet PWA module. I will also check with my team and see if we can go the native app route then log a ticket for it. :)

      Thanks

      posted in General Discussion
      M
      melamanehermanus
    • Mobile App - Cross-platform

      Hi @Faiz ,

      are there any plans for releasing a mobile app for Qloapps? I checked on wekbul store but I cannot see it?

      Thanks

      posted in General Discussion mobile app cross-platform
      M
      melamanehermanus
    • RE: Gladly announcing the release of QloApps 1.4.1

      @Faiz Thanks

      posted in Announcements
      M
      melamanehermanus
    • RE: Gladly announcing the release of QloApps 1.4.1

      Hey @Faiz , is there a dockerized version of 1.4.1? I see the dockerized version is way too outdated?

      posted in Announcements
      M
      melamanehermanus
    • RE: Home Page Rooms and and Amenities structure

      thanks @rajfartyal and @Faiz , I have got it... Sorry for the delayed response

      posted in General Discussion
      M
      melamanehermanus
    • Home Page Rooms and and Amenities structure

      I am trying to restructure my home page to have Rooms at the top instead of interior. Which file is used to structure these files in the home page? (Interior, Amenities, Rooms, Testimonials.)

      posted in General Discussion home page rooms amenities structure
      M
      melamanehermanus
    • RE: Book Now button to add room to cart issue

      :) funny how I just found it now right before I check the forum, thanks @Sumit . this is much appriciated.

      posted in General Discussion
      M
      melamanehermanus
    • Book Now button to add room to cart issue

      Hi guys,

      I am trying to find out where ajaxCart.add method is. When I click Book Now button I get this error "Uncaught TypeError: Cannot read property 'length' of undefined"
      It looks like I am passing object id that does not exist. I did print the output of ajaxCart.add on hotelcommerce/themes/hotel-reservation-theme/js/modules/blockcart/ajax-cart.js and I get the above error.

      I would like to know where is function add from ajaxCart.add coming from so I can debug even further. I have removed the hotel dropdown and only using the location search textbox to get the hotels for the location. I have a feeling that it's caused by that but I get the hotel rooms fine, the problem starts when I click on "Book Now" button.

      Below is the function I am on:
      $(document).off('click', '.ajax_add_to_cart_button').on('click', '.ajax_add_to_cart_button', function(e) {
      e.preventDefault();
      var idProduct = parseInt($(this).data('id-product'));
      var idProductAttribute = parseInt($(this).data('id-product-attribute'));

              var dateFrom = $(this).attr('cat_rm_check_in');
              var dateTo = $(this).attr('cat_rm_check_out');
      
              /* By Webkul
               * Note : In our case minimalQuantity is taken from Qty. field
               */
              // var minimalQuantity =  parseInt($(this).data('minimal_quantity'));
              var minimalQuantity = parseInt($(this).data('minimal_quantity'));
              var minimalQuantity = $("#cat_quantity_wanted_" + idProduct).val();
              if (!minimalQuantity)
                  minimalQuantity = 1;
              console.log("datefrom:" + dateFrom);
              console.log("dateTo: " + dateTo );
              console.log("Produict ID: " + idProduct );
              console.log("minimal Quantity: " + minimalQuantity );
              if ($(this).prop('disabled') != 'disabled')
                  **ajaxCart.add(idProduct, idProductAttribute, false, this, minimalQuantity, null, dateFrom, dateTo);**
                  AjaxVariable = ajaxCart.add(idProduct, idProductAttribute, false, this, minimalQuantity, null, dateFrom, dateTo);
                  console.log("p**rinting ajax")
                  console.log(AjaxVariable);
      

      });

      Thanks

      posted in General Discussion book button add room cart
      M
      melamanehermanus
    • RE: DB Structure

      @Sumit I have already figured it out, thanks. I am customizing the the front page to only use the hotel location search textbox and remove the hotel dropdown. I followed the process as per this question I asked a few weeks ago -> https://forums.qloapps.com/topic/258/pass-parameters-to-the-categorycontroller

      This is now fixed. thanks

      posted in General Discussion
      M
      melamanehermanus