# king-addons/51.1.78/includes/widgets/Woo_Archive_Description/script.js

King Addons for Elementor – 80+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce, Mega Menu, Popup Builder, version 51.1.78. 35 lines.

- Page: https://pluginprobe.com/plugins/king-addons/51.1.78/code/includes/widgets/Woo_Archive_Description/script.js
- Raw: https://pluginprobe.com/plugins/king-addons/51.1.78/raw/includes/widgets/Woo_Archive_Description/script.js
- Modified: 2026-08-25T03:27:10+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/king-addons/51.1.78/code/includes/widgets/Woo_Archive_Description/script.js#L10-L20`.

```javascript
/**
 * Woo Archive Description widget behavior.
 *
 * This widget is static; behavior is handled by WooCommerce/theme templates.
 * We keep an Elementor hook to ensure correct initialization in the editor.
 */
(function ($) {
  "use strict";

  /**
   * Initialize widget instance.
   *
   * @param {Object} $scope Elementor scope.
   * @returns {void}
   */
  const initWooArchiveDescription = ($scope) => {
    void $scope;
  };

  $(window).on("elementor/frontend/init", function () {
    elementorFrontend.hooks.addAction(
      "frontend/element_ready/woo_archive_description.default",
      function ($scope) {
        initWooArchiveDescription($scope);
      }
    );
  });
})(jQuery);







```
