├── admin ├── base.helper.php ├── basesection.helper.php ├── basestyle.helper.php ├── index.php ├── notices.class.php ├── settings │ ├── general.class.php │ ├── index.php │ ├── integrations.class.php │ ├── settings.class.php │ ├── style.class.php │ └── upgrade.class.php ├── tinvwl.class.php └── wishlist.class.php ├── assets ├── css │ ├── admin-form-rtl.css │ ├── admin-form-rtl.min.css │ ├── admin-form.css │ ├── admin-form.min.css │ ├── admin-rtl.css │ ├── admin-rtl.min.css │ ├── admin-setup-rtl.css │ ├── admin-setup-rtl.min.css │ ├── admin-setup.css │ ├── admin-setup.min.css │ ├── admin.css │ ├── admin.min.css │ ├── public-rtl.css │ ├── public-rtl.min.css │ ├── public.css │ ├── public.min.css │ ├── theme-rtl.css │ ├── theme-rtl.min.css │ ├── theme.css │ ├── theme.min.css │ ├── webfont-rtl.css │ ├── webfont-rtl.min.css │ ├── webfont.css │ └── webfont.min.css ├── fonts │ ├── tinvwl-webfont.eot │ ├── tinvwl-webfont.svg │ ├── tinvwl-webfont.ttf │ ├── tinvwl-webfont.woff │ └── tinvwl-webfont.woff2 ├── img │ ├── admin-rescue.png │ ├── admin-rescue@2x.png │ ├── admin-update.png │ ├── admin-update@2x.png │ ├── chevron_down.png │ ├── chevron_down@2x.png │ ├── chevron_icon.png │ ├── chevron_icon@2x.png │ ├── color_icon.png │ ├── color_icon@2x.png │ ├── cyber_monday.png │ ├── heart-tinv.svg │ ├── icon_menu.png │ ├── icon_menu@2x.png │ ├── logo_heart.png │ ├── logo_heart@2x.png │ ├── money-back.svg │ ├── premium_logo.png │ ├── raw │ │ ├── admin-rescue.png │ │ ├── admin-rescue@2x.png │ │ ├── admin-update.png │ │ ├── admin-update@2x.png │ │ ├── chevron_down.png │ │ ├── chevron_down@2x.png │ │ ├── chevron_icon.png │ │ ├── chevron_icon@2x.png │ │ ├── color_icon.png │ │ ├── color_icon@2x.png │ │ ├── cyber_monday.png │ │ ├── icon_menu.png │ │ ├── icon_menu@2x.png │ │ ├── logo_heart.png │ │ ├── logo_heart@2x.png │ │ ├── premium_logo.png │ │ ├── select_caret.png │ │ ├── select_caret@2x.png │ │ ├── select_caret_t.png │ │ ├── select_caret_t@2x.png │ │ ├── wishlists_table.png │ │ ├── wizard_logo.png │ │ ├── wizard_logo@2x.png │ │ ├── wizard_setup.png │ │ └── wizard_setup@2x.png │ ├── select_caret.png │ ├── select_caret@2x.png │ ├── select_caret_t.png │ ├── select_caret_t@2x.png │ ├── wishlists_table.png │ ├── wizard_logo.png │ ├── wizard_logo@2x.png │ ├── wizard_setup.png │ └── wizard_setup@2x.png └── js │ ├── admin.js │ ├── admin.min.js │ ├── admin │ └── admin.js │ ├── blocks.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── clipboard.min.js │ ├── editor.js │ ├── public.js │ ├── public.min.js │ └── public │ ├── button.js │ ├── misc.js │ └── table.js ├── composer.json ├── gulpfile.babel.js ├── includes ├── activator.class.php ├── analytics.class.php ├── api.class.php ├── api │ └── wishlist.class.php ├── deprecated.class.php ├── deprecated │ ├── actions.class.php │ └── filters.class.php ├── export.class.php ├── form.helper.php ├── index.php ├── pluginextend.helper.php ├── product.helper.php ├── product │ ├── index.php │ ├── legacy.class.php │ └── local.class.php ├── tinvwl.class.php ├── update.helper.php ├── view.helper.php ├── viewsection.helper.php ├── wishlist.class.php ├── wizard.class.php └── wizardsetup.helper.php ├── index.php ├── integrations ├── advanced-product-fields-for-woocommerce-pro.php ├── advanced-product-fields-for-woocommerce.php ├── automatewoo.php ├── automatewoo │ ├── trigger-wishlist-item-added-to-cart.php │ ├── trigger-wishlist-item-added.php │ ├── trigger-wishlist-item-purchased.php │ ├── trigger-wishlist-item-removed.php │ ├── trigger-wishlist-reminder.php │ └── wishlist.class.php ├── buy-now-button-for-woocommerce.php ├── check-pincodezipcode-for-shipping-woocommerce.php ├── cleantalk-spam-protect.php ├── clever-swatches.php ├── comet-cache.php ├── duracelltomi-google-tag-manager.php ├── elex-woocommerce-catalog-mode.php ├── gift-cards-for-woocommerce.php ├── hide-price-add-to-cart-button.php ├── honeypot.php ├── improved-variable-product-attributes.php ├── ione360-configurator.php ├── litespeed-cache.php ├── mycred.php ├── nasa-core.php ├── product-extras-for-woocommerce.php ├── product-quantity-for-woocommerce.php ├── pw-woocommerce-gift-cards.php ├── shopengine.php ├── show-single-variations.php ├── sitepress-multilingual-cms.php ├── theme-divi.php ├── theme-flatsome.php ├── theme-kallyas.php ├── theme-oceanwp.php ├── uni-woo-custom-product-options.php ├── vad-product-design.php ├── wc-fields-factory.php ├── woo-advanced-qty.php ├── woo-custom-product-addons.php ├── woo-extra-product-options.php ├── woo-payment-gateway.php ├── woo-product-bundle.php ├── woo-variation-swatches-pro.php ├── woo-variations-table-grid.php ├── woocommerce-booking.php ├── woocommerce-bookings.php ├── woocommerce-composite-products.php ├── woocommerce-custom-fields.php ├── woocommerce-fast-cart.php ├── woocommerce-gravityforms-product-addons.php ├── woocommerce-mix-and-match-products.php ├── woocommerce-multilingual.php ├── woocommerce-product-addon.php ├── woocommerce-product-addons.php ├── woocommerce-product-bundles.php ├── woocommerce-product-table.php ├── woocommerce-rental-and-booking.php ├── woocommerce-square.php ├── woocommerce-tm-extra-product-options.php ├── woocommerce-waitlist.php ├── wp-fastest-cache.php ├── wp-grid-builder.php ├── wp-multilang.php ├── wp-rocket.php ├── wpc-variations-radio-buttons.php ├── yith-woocommerce-product-add-ons.php ├── yith-woocommerce-product-bundles.php └── yith-woocommerce-quick-view.php ├── languages └── ti-woocommerce-wishlist.pot ├── package.json ├── public ├── addtowishlist.class.php ├── cart.class.php ├── index.php ├── tinvwl.class.php ├── widget │ ├── index.php │ └── wishlistcounter.class.php ├── wishlist │ ├── ajax.class.php │ ├── buttons.class.php │ ├── index.php │ ├── social.class.php │ └── view.class.php └── wishlistcounter.class.php ├── readme.md ├── readme.txt ├── sass ├── admin.scss ├── public.scss ├── theme.scss └── webfont.scss ├── templates ├── ti-addedtowishlist-dialogbox.php ├── ti-addtowishlist.php ├── ti-wishlist-empty.php ├── ti-wishlist-header.php ├── ti-wishlist-item-data.php ├── ti-wishlist-null.php ├── ti-wishlist-product-counter.php ├── ti-wishlist-social.php ├── ti-wishlist-user.php └── ti-wishlist.php ├── ti-woocommerce-wishlist.php ├── tinv-wishlists-function.php ├── views ├── admin │ ├── export-import-settings.php │ ├── index.php │ ├── premium-features.php │ ├── templates-status.php │ └── wishlists.php ├── general.php ├── header.php ├── index.php ├── message.php ├── null.php ├── section-field-html.php ├── section-field-style.php ├── section-field.php ├── section-general.php ├── section-group-style-e.php ├── section-group-style.php ├── section-group.php ├── section-infoblock.php └── wizard │ ├── finish.php │ ├── footer.php │ ├── header.php │ ├── index.php │ ├── intro.php │ ├── step-button.php │ ├── step-page-field.php │ ├── step-page.php │ ├── step-processing.php │ ├── step-social.php │ └── step-support.php ├── wpgulp.config.js ├── wpm-config.json └── wpml-config.xml /admin/base.helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/admin/base.helper.php -------------------------------------------------------------------------------- /admin/basesection.helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/admin/basesection.helper.php -------------------------------------------------------------------------------- /admin/basestyle.helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/admin/basestyle.helper.php -------------------------------------------------------------------------------- /admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/admin/index.php -------------------------------------------------------------------------------- /admin/notices.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/admin/notices.class.php -------------------------------------------------------------------------------- /admin/settings/general.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/admin/settings/general.class.php -------------------------------------------------------------------------------- /admin/settings/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/admin/settings/index.php -------------------------------------------------------------------------------- /admin/settings/integrations.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/admin/settings/integrations.class.php -------------------------------------------------------------------------------- /admin/settings/settings.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/admin/settings/settings.class.php -------------------------------------------------------------------------------- /admin/settings/style.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/admin/settings/style.class.php -------------------------------------------------------------------------------- /admin/settings/upgrade.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/admin/settings/upgrade.class.php -------------------------------------------------------------------------------- /admin/tinvwl.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/admin/tinvwl.class.php -------------------------------------------------------------------------------- /admin/wishlist.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/admin/wishlist.class.php -------------------------------------------------------------------------------- /assets/css/admin-form-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/admin-form-rtl.css -------------------------------------------------------------------------------- /assets/css/admin-form-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/admin-form-rtl.min.css -------------------------------------------------------------------------------- /assets/css/admin-form.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/admin-form.css -------------------------------------------------------------------------------- /assets/css/admin-form.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/admin-form.min.css -------------------------------------------------------------------------------- /assets/css/admin-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/admin-rtl.css -------------------------------------------------------------------------------- /assets/css/admin-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/admin-rtl.min.css -------------------------------------------------------------------------------- /assets/css/admin-setup-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/admin-setup-rtl.css -------------------------------------------------------------------------------- /assets/css/admin-setup-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/admin-setup-rtl.min.css -------------------------------------------------------------------------------- /assets/css/admin-setup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/admin-setup.css -------------------------------------------------------------------------------- /assets/css/admin-setup.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/admin-setup.min.css -------------------------------------------------------------------------------- /assets/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/admin.css -------------------------------------------------------------------------------- /assets/css/admin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/admin.min.css -------------------------------------------------------------------------------- /assets/css/public-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/public-rtl.css -------------------------------------------------------------------------------- /assets/css/public-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/public-rtl.min.css -------------------------------------------------------------------------------- /assets/css/public.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/public.css -------------------------------------------------------------------------------- /assets/css/public.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/public.min.css -------------------------------------------------------------------------------- /assets/css/theme-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/theme-rtl.css -------------------------------------------------------------------------------- /assets/css/theme-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/theme-rtl.min.css -------------------------------------------------------------------------------- /assets/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/theme.css -------------------------------------------------------------------------------- /assets/css/theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/theme.min.css -------------------------------------------------------------------------------- /assets/css/webfont-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/webfont-rtl.css -------------------------------------------------------------------------------- /assets/css/webfont-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/webfont-rtl.min.css -------------------------------------------------------------------------------- /assets/css/webfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/webfont.css -------------------------------------------------------------------------------- /assets/css/webfont.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/css/webfont.min.css -------------------------------------------------------------------------------- /assets/fonts/tinvwl-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/fonts/tinvwl-webfont.eot -------------------------------------------------------------------------------- /assets/fonts/tinvwl-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/fonts/tinvwl-webfont.svg -------------------------------------------------------------------------------- /assets/fonts/tinvwl-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/fonts/tinvwl-webfont.ttf -------------------------------------------------------------------------------- /assets/fonts/tinvwl-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/fonts/tinvwl-webfont.woff -------------------------------------------------------------------------------- /assets/fonts/tinvwl-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/fonts/tinvwl-webfont.woff2 -------------------------------------------------------------------------------- /assets/img/admin-rescue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/admin-rescue.png -------------------------------------------------------------------------------- /assets/img/admin-rescue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/admin-rescue@2x.png -------------------------------------------------------------------------------- /assets/img/admin-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/admin-update.png -------------------------------------------------------------------------------- /assets/img/admin-update@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/admin-update@2x.png -------------------------------------------------------------------------------- /assets/img/chevron_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/chevron_down.png -------------------------------------------------------------------------------- /assets/img/chevron_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/chevron_down@2x.png -------------------------------------------------------------------------------- /assets/img/chevron_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/chevron_icon.png -------------------------------------------------------------------------------- /assets/img/chevron_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/chevron_icon@2x.png -------------------------------------------------------------------------------- /assets/img/color_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/color_icon.png -------------------------------------------------------------------------------- /assets/img/color_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/color_icon@2x.png -------------------------------------------------------------------------------- /assets/img/cyber_monday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/cyber_monday.png -------------------------------------------------------------------------------- /assets/img/heart-tinv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/heart-tinv.svg -------------------------------------------------------------------------------- /assets/img/icon_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/icon_menu.png -------------------------------------------------------------------------------- /assets/img/icon_menu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/icon_menu@2x.png -------------------------------------------------------------------------------- /assets/img/logo_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/logo_heart.png -------------------------------------------------------------------------------- /assets/img/logo_heart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/logo_heart@2x.png -------------------------------------------------------------------------------- /assets/img/money-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/money-back.svg -------------------------------------------------------------------------------- /assets/img/premium_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/premium_logo.png -------------------------------------------------------------------------------- /assets/img/raw/admin-rescue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/admin-rescue.png -------------------------------------------------------------------------------- /assets/img/raw/admin-rescue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/admin-rescue@2x.png -------------------------------------------------------------------------------- /assets/img/raw/admin-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/admin-update.png -------------------------------------------------------------------------------- /assets/img/raw/admin-update@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/admin-update@2x.png -------------------------------------------------------------------------------- /assets/img/raw/chevron_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/chevron_down.png -------------------------------------------------------------------------------- /assets/img/raw/chevron_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/chevron_down@2x.png -------------------------------------------------------------------------------- /assets/img/raw/chevron_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/chevron_icon.png -------------------------------------------------------------------------------- /assets/img/raw/chevron_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/chevron_icon@2x.png -------------------------------------------------------------------------------- /assets/img/raw/color_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/color_icon.png -------------------------------------------------------------------------------- /assets/img/raw/color_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/color_icon@2x.png -------------------------------------------------------------------------------- /assets/img/raw/cyber_monday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/cyber_monday.png -------------------------------------------------------------------------------- /assets/img/raw/icon_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/icon_menu.png -------------------------------------------------------------------------------- /assets/img/raw/icon_menu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/icon_menu@2x.png -------------------------------------------------------------------------------- /assets/img/raw/logo_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/logo_heart.png -------------------------------------------------------------------------------- /assets/img/raw/logo_heart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/logo_heart@2x.png -------------------------------------------------------------------------------- /assets/img/raw/premium_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/premium_logo.png -------------------------------------------------------------------------------- /assets/img/raw/select_caret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/select_caret.png -------------------------------------------------------------------------------- /assets/img/raw/select_caret@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/select_caret@2x.png -------------------------------------------------------------------------------- /assets/img/raw/select_caret_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/select_caret_t.png -------------------------------------------------------------------------------- /assets/img/raw/select_caret_t@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/select_caret_t@2x.png -------------------------------------------------------------------------------- /assets/img/raw/wishlists_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/wishlists_table.png -------------------------------------------------------------------------------- /assets/img/raw/wizard_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/wizard_logo.png -------------------------------------------------------------------------------- /assets/img/raw/wizard_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/wizard_logo@2x.png -------------------------------------------------------------------------------- /assets/img/raw/wizard_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/wizard_setup.png -------------------------------------------------------------------------------- /assets/img/raw/wizard_setup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/raw/wizard_setup@2x.png -------------------------------------------------------------------------------- /assets/img/select_caret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/select_caret.png -------------------------------------------------------------------------------- /assets/img/select_caret@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/select_caret@2x.png -------------------------------------------------------------------------------- /assets/img/select_caret_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/select_caret_t.png -------------------------------------------------------------------------------- /assets/img/select_caret_t@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/select_caret_t@2x.png -------------------------------------------------------------------------------- /assets/img/wishlists_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/wishlists_table.png -------------------------------------------------------------------------------- /assets/img/wizard_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/wizard_logo.png -------------------------------------------------------------------------------- /assets/img/wizard_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/wizard_logo@2x.png -------------------------------------------------------------------------------- /assets/img/wizard_setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/wizard_setup.png -------------------------------------------------------------------------------- /assets/img/wizard_setup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/img/wizard_setup@2x.png -------------------------------------------------------------------------------- /assets/js/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/js/admin.js -------------------------------------------------------------------------------- /assets/js/admin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/js/admin.min.js -------------------------------------------------------------------------------- /assets/js/admin/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/js/admin/admin.js -------------------------------------------------------------------------------- /assets/js/blocks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/js/blocks.js -------------------------------------------------------------------------------- /assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/js/bootstrap.js -------------------------------------------------------------------------------- /assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/js/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/js/clipboard.min.js -------------------------------------------------------------------------------- /assets/js/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/js/editor.js -------------------------------------------------------------------------------- /assets/js/public.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/js/public.js -------------------------------------------------------------------------------- /assets/js/public.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/js/public.min.js -------------------------------------------------------------------------------- /assets/js/public/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/js/public/button.js -------------------------------------------------------------------------------- /assets/js/public/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/js/public/misc.js -------------------------------------------------------------------------------- /assets/js/public/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/assets/js/public/table.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/composer.json -------------------------------------------------------------------------------- /gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/gulpfile.babel.js -------------------------------------------------------------------------------- /includes/activator.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/includes/activator.class.php -------------------------------------------------------------------------------- /includes/analytics.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/includes/analytics.class.php -------------------------------------------------------------------------------- /includes/api.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/includes/api.class.php -------------------------------------------------------------------------------- /includes/api/wishlist.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/includes/api/wishlist.class.php -------------------------------------------------------------------------------- /includes/deprecated.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/includes/deprecated.class.php -------------------------------------------------------------------------------- /includes/deprecated/actions.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/includes/deprecated/actions.class.php -------------------------------------------------------------------------------- /includes/deprecated/filters.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/includes/deprecated/filters.class.php -------------------------------------------------------------------------------- /includes/export.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/includes/export.class.php -------------------------------------------------------------------------------- /includes/form.helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/includes/form.helper.php -------------------------------------------------------------------------------- /includes/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/includes/index.php -------------------------------------------------------------------------------- /includes/pluginextend.helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/includes/pluginextend.helper.php -------------------------------------------------------------------------------- /includes/product.helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/includes/product.helper.php -------------------------------------------------------------------------------- /includes/product/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/includes/product/index.php -------------------------------------------------------------------------------- /includes/product/legacy.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/includes/product/legacy.class.php -------------------------------------------------------------------------------- /includes/product/local.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/includes/product/local.class.php -------------------------------------------------------------------------------- /includes/tinvwl.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/includes/tinvwl.class.php -------------------------------------------------------------------------------- /includes/update.helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/includes/update.helper.php -------------------------------------------------------------------------------- /includes/view.helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/includes/view.helper.php -------------------------------------------------------------------------------- /includes/viewsection.helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/includes/viewsection.helper.php -------------------------------------------------------------------------------- /includes/wishlist.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/includes/wishlist.class.php -------------------------------------------------------------------------------- /includes/wizard.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/includes/wizard.class.php -------------------------------------------------------------------------------- /includes/wizardsetup.helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/includes/wizardsetup.helper.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/index.php -------------------------------------------------------------------------------- /integrations/advanced-product-fields-for-woocommerce-pro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/advanced-product-fields-for-woocommerce-pro.php -------------------------------------------------------------------------------- /integrations/advanced-product-fields-for-woocommerce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/advanced-product-fields-for-woocommerce.php -------------------------------------------------------------------------------- /integrations/automatewoo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/automatewoo.php -------------------------------------------------------------------------------- /integrations/automatewoo/trigger-wishlist-item-added-to-cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/automatewoo/trigger-wishlist-item-added-to-cart.php -------------------------------------------------------------------------------- /integrations/automatewoo/trigger-wishlist-item-added.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/automatewoo/trigger-wishlist-item-added.php -------------------------------------------------------------------------------- /integrations/automatewoo/trigger-wishlist-item-purchased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/automatewoo/trigger-wishlist-item-purchased.php -------------------------------------------------------------------------------- /integrations/automatewoo/trigger-wishlist-item-removed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/automatewoo/trigger-wishlist-item-removed.php -------------------------------------------------------------------------------- /integrations/automatewoo/trigger-wishlist-reminder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/automatewoo/trigger-wishlist-reminder.php -------------------------------------------------------------------------------- /integrations/automatewoo/wishlist.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/automatewoo/wishlist.class.php -------------------------------------------------------------------------------- /integrations/buy-now-button-for-woocommerce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/buy-now-button-for-woocommerce.php -------------------------------------------------------------------------------- /integrations/check-pincodezipcode-for-shipping-woocommerce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/check-pincodezipcode-for-shipping-woocommerce.php -------------------------------------------------------------------------------- /integrations/cleantalk-spam-protect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/cleantalk-spam-protect.php -------------------------------------------------------------------------------- /integrations/clever-swatches.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/clever-swatches.php -------------------------------------------------------------------------------- /integrations/comet-cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/comet-cache.php -------------------------------------------------------------------------------- /integrations/duracelltomi-google-tag-manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/duracelltomi-google-tag-manager.php -------------------------------------------------------------------------------- /integrations/elex-woocommerce-catalog-mode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/elex-woocommerce-catalog-mode.php -------------------------------------------------------------------------------- /integrations/gift-cards-for-woocommerce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/gift-cards-for-woocommerce.php -------------------------------------------------------------------------------- /integrations/hide-price-add-to-cart-button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/hide-price-add-to-cart-button.php -------------------------------------------------------------------------------- /integrations/honeypot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/honeypot.php -------------------------------------------------------------------------------- /integrations/improved-variable-product-attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/improved-variable-product-attributes.php -------------------------------------------------------------------------------- /integrations/ione360-configurator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/ione360-configurator.php -------------------------------------------------------------------------------- /integrations/litespeed-cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/litespeed-cache.php -------------------------------------------------------------------------------- /integrations/mycred.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/mycred.php -------------------------------------------------------------------------------- /integrations/nasa-core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/nasa-core.php -------------------------------------------------------------------------------- /integrations/product-extras-for-woocommerce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/product-extras-for-woocommerce.php -------------------------------------------------------------------------------- /integrations/product-quantity-for-woocommerce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/product-quantity-for-woocommerce.php -------------------------------------------------------------------------------- /integrations/pw-woocommerce-gift-cards.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/pw-woocommerce-gift-cards.php -------------------------------------------------------------------------------- /integrations/shopengine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/shopengine.php -------------------------------------------------------------------------------- /integrations/show-single-variations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/show-single-variations.php -------------------------------------------------------------------------------- /integrations/sitepress-multilingual-cms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/sitepress-multilingual-cms.php -------------------------------------------------------------------------------- /integrations/theme-divi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/theme-divi.php -------------------------------------------------------------------------------- /integrations/theme-flatsome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/theme-flatsome.php -------------------------------------------------------------------------------- /integrations/theme-kallyas.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/theme-kallyas.php -------------------------------------------------------------------------------- /integrations/theme-oceanwp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/theme-oceanwp.php -------------------------------------------------------------------------------- /integrations/uni-woo-custom-product-options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/uni-woo-custom-product-options.php -------------------------------------------------------------------------------- /integrations/vad-product-design.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/vad-product-design.php -------------------------------------------------------------------------------- /integrations/wc-fields-factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/wc-fields-factory.php -------------------------------------------------------------------------------- /integrations/woo-advanced-qty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woo-advanced-qty.php -------------------------------------------------------------------------------- /integrations/woo-custom-product-addons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woo-custom-product-addons.php -------------------------------------------------------------------------------- /integrations/woo-extra-product-options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woo-extra-product-options.php -------------------------------------------------------------------------------- /integrations/woo-payment-gateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woo-payment-gateway.php -------------------------------------------------------------------------------- /integrations/woo-product-bundle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woo-product-bundle.php -------------------------------------------------------------------------------- /integrations/woo-variation-swatches-pro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woo-variation-swatches-pro.php -------------------------------------------------------------------------------- /integrations/woo-variations-table-grid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woo-variations-table-grid.php -------------------------------------------------------------------------------- /integrations/woocommerce-booking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woocommerce-booking.php -------------------------------------------------------------------------------- /integrations/woocommerce-bookings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woocommerce-bookings.php -------------------------------------------------------------------------------- /integrations/woocommerce-composite-products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woocommerce-composite-products.php -------------------------------------------------------------------------------- /integrations/woocommerce-custom-fields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woocommerce-custom-fields.php -------------------------------------------------------------------------------- /integrations/woocommerce-fast-cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woocommerce-fast-cart.php -------------------------------------------------------------------------------- /integrations/woocommerce-gravityforms-product-addons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woocommerce-gravityforms-product-addons.php -------------------------------------------------------------------------------- /integrations/woocommerce-mix-and-match-products.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woocommerce-mix-and-match-products.php -------------------------------------------------------------------------------- /integrations/woocommerce-multilingual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woocommerce-multilingual.php -------------------------------------------------------------------------------- /integrations/woocommerce-product-addon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woocommerce-product-addon.php -------------------------------------------------------------------------------- /integrations/woocommerce-product-addons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woocommerce-product-addons.php -------------------------------------------------------------------------------- /integrations/woocommerce-product-bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woocommerce-product-bundles.php -------------------------------------------------------------------------------- /integrations/woocommerce-product-table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woocommerce-product-table.php -------------------------------------------------------------------------------- /integrations/woocommerce-rental-and-booking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woocommerce-rental-and-booking.php -------------------------------------------------------------------------------- /integrations/woocommerce-square.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woocommerce-square.php -------------------------------------------------------------------------------- /integrations/woocommerce-tm-extra-product-options.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woocommerce-tm-extra-product-options.php -------------------------------------------------------------------------------- /integrations/woocommerce-waitlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/woocommerce-waitlist.php -------------------------------------------------------------------------------- /integrations/wp-fastest-cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/wp-fastest-cache.php -------------------------------------------------------------------------------- /integrations/wp-grid-builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/wp-grid-builder.php -------------------------------------------------------------------------------- /integrations/wp-multilang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/wp-multilang.php -------------------------------------------------------------------------------- /integrations/wp-rocket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/wp-rocket.php -------------------------------------------------------------------------------- /integrations/wpc-variations-radio-buttons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/wpc-variations-radio-buttons.php -------------------------------------------------------------------------------- /integrations/yith-woocommerce-product-add-ons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/yith-woocommerce-product-add-ons.php -------------------------------------------------------------------------------- /integrations/yith-woocommerce-product-bundles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/yith-woocommerce-product-bundles.php -------------------------------------------------------------------------------- /integrations/yith-woocommerce-quick-view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/integrations/yith-woocommerce-quick-view.php -------------------------------------------------------------------------------- /languages/ti-woocommerce-wishlist.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/languages/ti-woocommerce-wishlist.pot -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/package.json -------------------------------------------------------------------------------- /public/addtowishlist.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/public/addtowishlist.class.php -------------------------------------------------------------------------------- /public/cart.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/public/cart.class.php -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/public/index.php -------------------------------------------------------------------------------- /public/tinvwl.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/public/tinvwl.class.php -------------------------------------------------------------------------------- /public/widget/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/public/widget/index.php -------------------------------------------------------------------------------- /public/widget/wishlistcounter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/public/widget/wishlistcounter.class.php -------------------------------------------------------------------------------- /public/wishlist/ajax.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/public/wishlist/ajax.class.php -------------------------------------------------------------------------------- /public/wishlist/buttons.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/public/wishlist/buttons.class.php -------------------------------------------------------------------------------- /public/wishlist/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/public/wishlist/index.php -------------------------------------------------------------------------------- /public/wishlist/social.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/public/wishlist/social.class.php -------------------------------------------------------------------------------- /public/wishlist/view.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/public/wishlist/view.class.php -------------------------------------------------------------------------------- /public/wishlistcounter.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/public/wishlistcounter.class.php -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/readme.md -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/readme.txt -------------------------------------------------------------------------------- /sass/admin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/sass/admin.scss -------------------------------------------------------------------------------- /sass/public.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/sass/public.scss -------------------------------------------------------------------------------- /sass/theme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/sass/theme.scss -------------------------------------------------------------------------------- /sass/webfont.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/sass/webfont.scss -------------------------------------------------------------------------------- /templates/ti-addedtowishlist-dialogbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/templates/ti-addedtowishlist-dialogbox.php -------------------------------------------------------------------------------- /templates/ti-addtowishlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/templates/ti-addtowishlist.php -------------------------------------------------------------------------------- /templates/ti-wishlist-empty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/templates/ti-wishlist-empty.php -------------------------------------------------------------------------------- /templates/ti-wishlist-header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/templates/ti-wishlist-header.php -------------------------------------------------------------------------------- /templates/ti-wishlist-item-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/templates/ti-wishlist-item-data.php -------------------------------------------------------------------------------- /templates/ti-wishlist-null.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/templates/ti-wishlist-null.php -------------------------------------------------------------------------------- /templates/ti-wishlist-product-counter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/templates/ti-wishlist-product-counter.php -------------------------------------------------------------------------------- /templates/ti-wishlist-social.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/templates/ti-wishlist-social.php -------------------------------------------------------------------------------- /templates/ti-wishlist-user.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/templates/ti-wishlist-user.php -------------------------------------------------------------------------------- /templates/ti-wishlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/templates/ti-wishlist.php -------------------------------------------------------------------------------- /ti-woocommerce-wishlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/ti-woocommerce-wishlist.php -------------------------------------------------------------------------------- /tinv-wishlists-function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/tinv-wishlists-function.php -------------------------------------------------------------------------------- /views/admin/export-import-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/admin/export-import-settings.php -------------------------------------------------------------------------------- /views/admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/admin/index.php -------------------------------------------------------------------------------- /views/admin/premium-features.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/admin/premium-features.php -------------------------------------------------------------------------------- /views/admin/templates-status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/admin/templates-status.php -------------------------------------------------------------------------------- /views/admin/wishlists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/admin/wishlists.php -------------------------------------------------------------------------------- /views/general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/general.php -------------------------------------------------------------------------------- /views/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/header.php -------------------------------------------------------------------------------- /views/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/index.php -------------------------------------------------------------------------------- /views/message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/message.php -------------------------------------------------------------------------------- /views/null.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/null.php -------------------------------------------------------------------------------- /views/section-field-html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/section-field-html.php -------------------------------------------------------------------------------- /views/section-field-style.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/section-field-style.php -------------------------------------------------------------------------------- /views/section-field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/section-field.php -------------------------------------------------------------------------------- /views/section-general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/section-general.php -------------------------------------------------------------------------------- /views/section-group-style-e.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/section-group-style-e.php -------------------------------------------------------------------------------- /views/section-group-style.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/section-group-style.php -------------------------------------------------------------------------------- /views/section-group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/section-group.php -------------------------------------------------------------------------------- /views/section-infoblock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/section-infoblock.php -------------------------------------------------------------------------------- /views/wizard/finish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/wizard/finish.php -------------------------------------------------------------------------------- /views/wizard/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/wizard/footer.php -------------------------------------------------------------------------------- /views/wizard/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/wizard/header.php -------------------------------------------------------------------------------- /views/wizard/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/wizard/index.php -------------------------------------------------------------------------------- /views/wizard/intro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/wizard/intro.php -------------------------------------------------------------------------------- /views/wizard/step-button.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/wizard/step-button.php -------------------------------------------------------------------------------- /views/wizard/step-page-field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/wizard/step-page-field.php -------------------------------------------------------------------------------- /views/wizard/step-page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/wizard/step-page.php -------------------------------------------------------------------------------- /views/wizard/step-processing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/wizard/step-processing.php -------------------------------------------------------------------------------- /views/wizard/step-social.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/wizard/step-social.php -------------------------------------------------------------------------------- /views/wizard/step-support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/views/wizard/step-support.php -------------------------------------------------------------------------------- /wpgulp.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/wpgulp.config.js -------------------------------------------------------------------------------- /wpm-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/wpm-config.json -------------------------------------------------------------------------------- /wpml-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TemplateInvaders/ti-woocommerce-wishlist/HEAD/wpml-config.xml --------------------------------------------------------------------------------