HEX
Server: Apache
System: Linux server-674799.igrow.ws 5.14.0-611.30.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 11 06:42:00 EST 2026 x86_64
User: elrashedytravel (1025)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/elrashedytravel/www/wp-content/themes/bloglo/assets/js/dev/bloglo-wc.js
//--------------------------------------------------------------------//
// Bloglo WooCommerce compatibility script.
//--------------------------------------------------------------------//
(function ($) {
  "use strict";

  /**
   * Cart dropdown timer.
   * @type {Boolean}
   */
  var cartDropdownTimer = false;

  /**
   * Common element caching.
   */
  var $body = $("body");
  var $wrapper = $("#page");

  /**
   * Holds most important methods that bootstrap the whole theme.
   *
   * @type {Object}
   */
  var BlogloWC = {
    /**
     * Start the engine.
     *
     * @since 1.0.0
     */
    init: function () {
      // Document ready.
      $(document).ready(BlogloWC.ready);

      // Ajax complete event.
      $(document).ajaxComplete(BlogloWC.ajaxComplete);

      // On WooCommerce ajax added to cart event.
      $body.on("added_to_cart", BlogloWC.addedToCart);

      // Bind UI actions.
      BlogloWC.bindUIActions();
    },

    //--------------------------------------------------------------------//
    // Events
    //--------------------------------------------------------------------//

    /**
     * Document ready.
     *
     * @since 1.0.0
     */
    ready: function () {
      BlogloWC.customDropdown();
      BlogloWC.quantButtons();
    },

    /**
     * On ajax request complete.
     *
     * @since 1.0.0
     */
    ajaxComplete: function () {
      BlogloWC.quantButtons();
    },

    /**
     * On WooCommerce added to cart event.
     *
     * @since 1.0.0
     */
    addedToCart: function () {
      BlogloWC.showCartDropdown();
    },

    /**
     * Bind UI actions.
     *
     * @since 1.0.0
     */
    bindUIActions: function () {
      BlogloWC.removeCartItem();
    },

    //--------------------------------------------------------------------//
    // Functions
    //--------------------------------------------------------------------//

    /**
     * Adds plus-munus quantity buttons to WooCommerce.
     *
     * @since 1.0.0
     */
    quantButtons: function () {
      var $newQuantity, $quantity, $input, $this;

      // Append plus and minus buttons to cart quantity.
      var $quantInput = $(
        "div.quantity:not(.appended), td.quantity:not(.appended)"
      ).find(".qty");

      if (
        $quantInput.length &&
        "date" !== $quantInput.prop("type") &&
        "hidden" !== $quantInput.prop("type")
      ) {
        // Add plus and minus icons
        $quantInput.parent().addClass("appended");
        $quantInput.after(
          '<a href="#" class="bloglo-woo-minus">-</a><a href="#" class="bloglo-woo-plus">+</a>'
        );

        $(".bloglo-woo-plus, .bloglo-woo-minus").unbind("click");
        $(".bloglo-woo-plus, .bloglo-woo-minus").on("click", function (e) {
          e.preventDefault();

          $this = $(this);
          $input = $this.parent().find("input");
          $quantity = $input.val();
          $newQuantity = 0;

          if ($this.hasClass("bloglo-woo-plus")) {
            $newQuantity = parseInt($quantity) + 1;
          } else {
            if (0 < $quantity) {
              $newQuantity = parseInt($quantity) - 1;
            }
          }

          $input.val($newQuantity);

          // Trigger change.
          $quantInput.trigger("change");
        });
      }
    },

    /**
     * Shows cart dropdown widget for 5 seconds aftern an item has been added to the cart.
     *
     * @since 1.0.0
     */
    showCartDropdown: function () {
      // Exit if header cart dropdown is not available.
      if (!$(".bloglo-header-widget__cart").length) {
        return;
      }

      $(".bloglo-header-widget__cart").addClass("dropdown-visible");

      setTimeout(function () {
        $("#bloglo-header-inner")
          .find(".bloglo-cart")
          .find(".bloglo-cart-count")
          .addClass("animate-pop");
      }, 100);

      if (cartDropdownTimer) {
        clearTimeout(cartDropdownTimer);
        cartDropdownTimer = false;
      }

      cartDropdownTimer = setTimeout(function () {
        $(".bloglo-header-widget__cart")
          .removeClass("dropdown-visible")
          .find(".dropdown-item")
          .removeAttr("style");
      }, 5000);
    },

    /**
     * Adds custom dropdown field for shop orderby.
     *
     * @since 1.0.0
     */
    customDropdown: function () {
      if (!$("form.woocommerce-ordering").length) {
        return;
      }

      var $select = $("form.woocommerce-ordering .orderby");
      var $formWrap = $("form.woocommerce-ordering");
      var $sellOption = $(
        "form.woocommerce-ordering .orderby option:selected"
      ).text();
      var chevronSvg =
        '<svg class="bloglo-icon" xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><path d="M24.958 10.483a1.29 1.29 0 00-1.868 0l-7.074 7.074-7.074-7.074c-.534-.534-1.335-.534-1.868 0s-.534 1.335 0 1.868l8.008 8.008c.267.267.667.4.934.4s.667-.133.934-.4l8.008-8.008a1.29 1.29 0 000-1.868z"/></svg>';

      $formWrap.append(
        '<span id="bloglo-orderby"><span>' +
          $sellOption +
          "</span>" +
          chevronSvg +
          "</span>"
      );
      $select.addClass("custom-select-loaded");

      var $appended = $("#bloglo-orderby");
      $select.width($appended.width()).css("height", $appended.height() + "px");

      $select.change(function () {
        $appended
          .find("span")
          .html($("form.woocommerce-ordering .orderby option:selected").text());
        $(this).width($appended.width());
      });
    },

    /**
     * Removes an item from cart via ajax.
     *
     * @since 1.0.0
     */
    removeCartItem: function () {
      var $this;

      // Exit if there is no cart item remove button.
      if (!$(".bloglo-remove-cart-item").length) {
        return;
      }

      $wrapper.on("click", ".bloglo-remove-cart-item", function (e) {
        e.preventDefault();
        $this = $(this);

        $this.closest(".bloglo-cart-item").addClass("removing");

        var data = {
          action: "bloglo_remove_wc_cart_item",
          /* eslint-disable camelcase */
          _ajax_nonce: blogloVars.nonce,
          product_key: $this.data("product_key"),
          /* eslint-enable camelcase */
        };

        $.post(blogloVars.ajaxurl, data, function (response) {
          if (response.success) {
            $body.trigger("wc_fragment_refresh");
          } else {
            $this.closest(".bloglo-cart-item").removeClass("removing");
          }
        });
      });
    },
  }; // END var BlogloWC.

  BlogloWC.init();
  window.bloglo_wc = BlogloWC; // eslint-disable-line camelcase
})(jQuery);