├── LICENSE ├── Magento_AdvancedSearch ├── layout │ └── catalogsearch_result_index.xml └── templates │ └── search_data.phtml ├── Magento_Bundle ├── layout │ ├── catalog_product_view_type_bundle.xml │ ├── catalog_product_view_type_simple.xml │ ├── checkout_cart_configure_type_bundle.xml │ ├── checkout_cart_item_renderers.xml │ ├── checkout_onepage_review_item_renderers.xml │ ├── sales_email_order_creditmemo_renderers.xml │ ├── sales_email_order_invoice_renderers.xml │ ├── sales_email_order_renderers.xml │ ├── sales_email_order_shipment_renderers.xml │ ├── sales_order_creditmemo_renderers.xml │ ├── sales_order_invoice_renderers.xml │ ├── sales_order_item_renderers.xml │ ├── sales_order_print_creditmemo_renderers.xml │ ├── sales_order_print_invoice_renderers.xml │ ├── sales_order_print_renderers.xml │ ├── sales_order_print_shipment_renderers.xml │ └── sales_order_shipment_renderers.xml └── templates │ ├── catalog │ └── product │ │ └── view │ │ ├── backbutton.phtml │ │ ├── customize.phtml │ │ ├── options │ │ └── notice.phtml │ │ ├── summary.phtml │ │ └── type │ │ ├── bundle.phtml │ │ └── bundle │ │ ├── option │ │ ├── checkbox.phtml │ │ ├── multi.phtml │ │ ├── radio.phtml │ │ └── select.phtml │ │ └── options.phtml │ └── sales │ └── order │ ├── creditmemo │ └── items │ │ └── renderer.phtml │ ├── invoice │ └── items │ │ └── renderer.phtml │ ├── items │ └── renderer.phtml │ └── shipment │ └── items │ └── renderer.phtml ├── Magento_Captcha ├── layout │ ├── contact_index_index.xml │ ├── customer_account_create.xml │ ├── customer_account_edit.xml │ ├── customer_account_forgotpassword.xml │ └── customer_account_login.xml └── templates │ └── default.phtml ├── Magento_Catalog ├── layout │ ├── catalog_category_view.xml │ ├── catalog_category_view_type_default.xml │ ├── catalog_category_view_type_default_without_children.xml │ ├── catalog_product_compare_index.xml │ ├── catalog_product_opengraph.xml │ ├── catalog_product_view.xml │ ├── catalog_product_view_type_simple.xml │ ├── catalog_product_view_type_virtual.xml │ ├── checkout_cart_item_renderers.xml │ └── default.xml ├── templates │ ├── category │ │ ├── cms.phtml │ │ ├── description.phtml │ │ ├── image.phtml │ │ └── products.phtml │ ├── html │ │ └── title.phtml │ ├── page │ │ ├── glightbox-css.phtml │ │ └── glightbox-js.phtml │ └── product │ │ ├── breadcrumbs.phtml │ │ ├── compare │ │ ├── list.phtml │ │ └── sidebar.phtml │ │ ├── composite │ │ └── fieldset │ │ │ └── options │ │ │ └── view │ │ │ └── checkable.phtml │ │ ├── image_with_borders.phtml │ │ ├── list.phtml │ │ ├── list │ │ ├── addto │ │ │ └── compare.phtml │ │ ├── items.phtml │ │ ├── toolbar.phtml │ │ └── toolbar │ │ │ ├── amount.phtml │ │ │ ├── limiter.phtml │ │ │ ├── sorter.phtml │ │ │ └── viewmode.phtml │ │ ├── price │ │ ├── amount │ │ │ └── default.phtml │ │ ├── configured_price.phtml │ │ ├── default.phtml │ │ ├── final_price.phtml │ │ └── tier_prices.phtml │ │ ├── view.phtml │ │ ├── view │ │ ├── addto.phtml │ │ ├── addto │ │ │ └── compare.phtml │ │ ├── addtocart.phtml │ │ ├── attribute.phtml │ │ ├── attributes.phtml │ │ ├── details.phtml │ │ ├── form.phtml │ │ ├── gallery.phtml │ │ ├── mailto.phtml │ │ ├── options.phtml │ │ ├── options │ │ │ ├── type │ │ │ │ ├── date.phtml │ │ │ │ ├── default.phtml │ │ │ │ ├── file.phtml │ │ │ │ ├── select.phtml │ │ │ │ └── text.phtml │ │ │ ├── wrapper.phtml │ │ │ └── wrapper │ │ │ │ └── bottom.phtml │ │ ├── type │ │ │ └── default.phtml │ │ └── view.phtml │ │ └── widget │ │ ├── compared │ │ ├── grid.phtml │ │ ├── list.phtml │ │ └── sidebar.phtml │ │ ├── link │ │ ├── link_block.phtml │ │ └── link_inline.phtml │ │ ├── new │ │ ├── column │ │ │ ├── new_default_list.phtml │ │ │ ├── new_images_list.phtml │ │ │ └── new_names_list.phtml │ │ └── content │ │ │ ├── new_grid.phtml │ │ │ └── new_list.phtml │ │ └── viewed │ │ ├── grid.phtml │ │ ├── list.phtml │ │ └── sidebar.phtml └── web │ ├── css │ └── glightbox.min.css │ └── js │ └── glightbox.min.js ├── Magento_CatalogSearch ├── layout │ ├── catalogsearch_advanced_index.xml │ ├── catalogsearch_advanced_result.xml │ ├── catalogsearch_result_index.xml │ └── default.xml └── templates │ ├── advanced │ ├── form.phtml │ ├── link.phtml │ └── result.phtml │ └── result.phtml ├── Magento_CatalogWidget ├── layout │ └── catalog_widget_product_list.xml └── templates │ └── product │ └── widget │ └── content │ └── grid.phtml ├── Magento_Checkout ├── layout │ ├── checkout_cart_configure.xml │ ├── checkout_cart_configure_type_simple.xml │ ├── checkout_cart_index.xml │ ├── checkout_cart_item_renderers.xml │ ├── checkout_onepage_failure.xml │ ├── checkout_onepage_success.xml │ └── default.xml └── templates │ ├── button.phtml │ ├── cart.phtml │ ├── cart │ ├── coupon.phtml │ ├── form.phtml │ ├── item │ │ ├── configure │ │ │ └── updatecart.phtml │ │ ├── default.phtml │ │ └── renderer │ │ │ └── actions │ │ │ ├── edit.phtml │ │ │ └── remove.phtml │ ├── methods.phtml │ ├── minicart.phtml │ ├── noItems.phtml │ └── shipping.phtml │ ├── js │ └── script.phtml │ ├── onepage │ ├── failure.phtml │ └── link.phtml │ ├── registration.phtml │ └── success.phtml ├── Magento_Cms ├── layout │ ├── cms_index_defaultindex.xml │ ├── cms_index_defaultnoroute.xml │ └── cms_page_view.xml └── templates │ ├── default │ └── home.phtml │ ├── footer │ ├── block.phtml │ └── extra-block.phtml │ └── header │ └── block.phtml ├── Magento_ConfigurableProduct ├── layout │ ├── catalog_product_view_type_configurable.xml │ ├── checkout_cart_configure_type_configurable.xml │ └── checkout_cart_item_renderers.xml └── templates │ └── product │ ├── price │ ├── final_price.phtml │ └── tier_price.phtml │ └── view │ └── type │ └── options │ └── configurable.phtml ├── Magento_Contact ├── layout │ ├── contact_index_index.xml │ └── default.xml └── templates │ └── form.phtml ├── Magento_Cookie ├── layout │ └── default.xml └── templates │ └── html │ ├── cookie.phtml │ └── notices.phtml ├── Magento_Customer ├── layout │ ├── customer_account.xml │ ├── customer_account_confirmation.xml │ ├── customer_account_create.xml │ ├── customer_account_createpassword.xml │ ├── customer_account_edit.xml │ ├── customer_account_forgotpassword.xml │ ├── customer_account_index.xml │ ├── customer_account_login.xml │ ├── customer_account_logoutsuccess.xml │ ├── customer_address_form.xml │ ├── customer_address_index.xml │ └── default.xml └── templates │ ├── account │ ├── authentication-popup.phtml │ ├── components │ │ ├── account-menu.phtml │ │ └── top-menu.phtml │ ├── customer.phtml │ ├── dashboard │ │ ├── address.phtml │ │ └── info.phtml │ ├── link │ │ ├── authorization.phtml │ │ ├── create-account.phtml │ │ └── my-account.phtml │ ├── navigation-delimiter.phtml │ └── navigation.phtml │ ├── address │ ├── additional-address.phtml │ ├── book.phtml │ ├── default-address.phtml │ ├── edit.phtml │ └── grid.phtml │ ├── form │ ├── confirmation.phtml │ ├── edit.phtml │ ├── forgotpassword.phtml │ ├── login.phtml │ ├── newsletter.phtml │ ├── register.phtml │ └── resetforgottenpassword.phtml │ ├── html │ └── title.phtml │ ├── logout.phtml │ ├── newcustomer.phtml │ ├── state.phtml │ └── widget │ ├── company.phtml │ ├── dob.phtml │ ├── fax.phtml │ ├── gender.phtml │ ├── name.phtml │ ├── taxvat.phtml │ └── telephone.phtml ├── Magento_Directory ├── layout │ ├── catalog_category_view.xml │ ├── catalogsearch_advanced_index.xml │ ├── catalogsearch_advanced_result.xml │ ├── catalogsearch_result_index.xml │ └── default.xml └── templates │ ├── currency.phtml │ ├── currency │ └── switch.phtml │ └── js │ └── script.phtml ├── Magento_Downloadable ├── layout │ ├── catalog_product_view_type_downloadable.xml │ ├── checkout_cart_configure_type_downloadable.xml │ ├── checkout_cart_item_renderers.xml │ ├── checkout_onepage_success.xml │ ├── customer_account.xml │ ├── downloadable_customer_products.xml │ ├── multishipping_checkout_success.xml │ ├── sales_email_order_creditmemo_renderers.xml │ ├── sales_email_order_invoice_renderers.xml │ ├── sales_email_order_renderers.xml │ ├── sales_order_creditmemo_renderers.xml │ ├── sales_order_invoice_renderers.xml │ ├── sales_order_item_renderers.xml │ ├── sales_order_print_creditmemo_renderers.xml │ ├── sales_order_print_invoice_renderers.xml │ └── sales_order_print_renderers.xml └── templates │ ├── catalog │ └── product │ │ ├── links.phtml │ │ ├── samples.phtml │ │ └── type.phtml │ ├── checkout │ └── success.phtml │ ├── customer │ └── products │ │ └── list.phtml │ ├── email │ └── order │ │ └── items │ │ ├── creditmemo │ │ └── downloadable.phtml │ │ ├── invoice │ │ └── downloadable.phtml │ │ └── order │ │ └── downloadable.phtml │ ├── html │ └── title.phtml │ └── sales │ └── order │ ├── creditmemo │ └── items │ │ └── renderer │ │ └── downloadable.phtml │ ├── invoice │ └── items │ │ └── renderer │ │ └── downloadable.phtml │ └── items │ └── renderer │ └── downloadable.phtml ├── Magento_GiftMessage ├── layout │ ├── checkout_cart_index.xml │ └── checkout_cart_item_renderers.xml └── templates │ └── cart │ ├── form.phtml │ ├── gift_options.phtml │ └── item │ └── renderer │ └── actions │ └── gift_options.phtml ├── Magento_GoogleAnalytics ├── layout │ └── default.xml └── templates │ └── ga.phtml ├── Magento_GroupedProduct ├── layout │ ├── catalog_product_rss_feed_renderer_list.xml │ ├── catalog_product_view_type_grouped.xml │ ├── checkout_cart_item_renderers.xml │ ├── sales_email_order_creditmemo_renderers.xml │ ├── sales_email_order_invoice_renderers.xml │ ├── sales_email_order_renderers.xml │ ├── sales_guest_invoice.xml │ ├── sales_order_creditmemo_renderers.xml │ ├── sales_order_invoice_renderers.xml │ ├── sales_order_item_renderers.xml │ ├── sales_order_print_creditmemo_renderers.xml │ ├── sales_order_print_invoice_renderers.xml │ └── sales_order_print_renderers.xml └── templates │ └── product │ └── view │ └── type │ ├── default.phtml │ └── grouped.phtml ├── Magento_InventoryConfigurableProductFrontendUi └── layout │ └── catalog_product_view_type_configurable.xml ├── Magento_LayeredNavigation ├── layout │ ├── catalog_category_view_type_layered.xml │ ├── catalog_category_view_type_layered_without_children.xml │ └── catalogsearch_result_index.xml └── templates │ └── layer │ ├── filter.phtml │ ├── state.phtml │ └── view.phtml ├── Magento_LoginAsCustomerAssistance ├── layout │ ├── customer_account_create.xml │ └── customer_account_edit.xml └── templates │ └── shopping-assistance.phtml ├── Magento_LoginAsCustomerFrontendUi ├── layout │ ├── default.xml │ └── loginascustomer_login_index.xml └── templates │ ├── html │ ├── notices.phtml │ └── notices │ │ └── logout-link.phtml │ └── login.phtml ├── Magento_Multishipping ├── layout │ └── checkout_cart_index.xml └── templates │ └── checkout │ └── link.phtml ├── Magento_Newsletter ├── layout │ ├── customer_account.xml │ ├── default.xml │ ├── newsletter_index_index.xml │ └── newsletter_manage_index.xml └── templates │ ├── html │ └── title.phtml │ └── subscribe.phtml ├── Magento_PageBuilder ├── layout │ └── default.xml ├── templates │ ├── banner.phtml │ ├── catalog │ │ └── product │ │ │ └── widget │ │ │ └── content │ │ │ └── carousel.phtml │ ├── googlemaps.phtml │ ├── slider.phtml │ └── tabs.phtml └── web │ └── js │ ├── jarallax-video.min.js │ └── jarallax.min.js ├── Magento_PageCache └── layout │ └── default.xml ├── Magento_Paypal └── layout │ └── customer_account.xml ├── Magento_ProductAlert ├── email │ ├── price_alert.html │ └── stock_alert.html ├── layout │ ├── catalog_product_view.xml │ └── productalert_unsubscribe_email.xml └── templates │ ├── email │ ├── email.phtml │ ├── price.phtml │ └── stock.phtml │ └── product │ └── view.phtml ├── Magento_ProductVideo ├── layout │ └── catalog_product_view.xml └── templates │ └── product │ └── view │ └── gallery.phtml ├── Magento_ReCaptchaCheckoutSalesRule └── layout │ └── checkout_cart_index.xml ├── Magento_ReCaptchaContact └── layout │ └── contact_index_index.xml ├── Magento_ReCaptchaCustomer └── layout │ ├── customer_account_create.xml │ ├── customer_account_edit.xml │ ├── customer_account_forgotpassword.xml │ └── customer_account_login.xml ├── Magento_ReCaptchaFrontendUi └── templates │ └── recaptcha.phtml ├── Magento_ReCaptchaNewsletter └── layout │ └── default.xml ├── Magento_ReCaptchaReview └── layout │ └── catalog_product_view.xml ├── Magento_ReCaptchaSendFriend └── layout │ └── sendfriend_product_send.xml ├── Magento_Review ├── layout │ ├── catalog_product_view.xml │ ├── checkout_cart_configure.xml │ ├── customer_account.xml │ ├── customer_account_index.xml │ ├── review_customer_index.xml │ ├── review_customer_view.xml │ ├── review_product_list.xml │ ├── review_product_listajax.xml │ └── review_product_view.xml └── templates │ ├── customer │ ├── list.phtml │ ├── recent.phtml │ └── view.phtml │ ├── detailed.phtml │ ├── empty.phtml │ ├── form.phtml │ ├── helper │ ├── summary.phtml │ └── summary_short.phtml │ ├── html │ └── title.phtml │ ├── product │ └── view │ │ ├── count.phtml │ │ ├── list.phtml │ │ └── other.phtml │ ├── redirect.phtml │ ├── review.phtml │ └── view.phtml ├── Magento_Robots ├── layout │ └── robots_index_index.xml ├── page_layout │ └── robots.xml └── templates │ └── robots.phtml ├── Magento_Sales ├── layout │ ├── checkout_index_index.xml │ ├── customer_account.xml │ ├── customer_account_index.xml │ ├── default.xml │ ├── sales_email_item_price.xml │ ├── sales_email_order_creditmemo_items.xml │ ├── sales_email_order_creditmemo_renderers.xml │ ├── sales_email_order_invoice_items.xml │ ├── sales_email_order_invoice_renderers.xml │ ├── sales_email_order_items.xml │ ├── sales_email_order_renderers.xml │ ├── sales_email_order_shipment_items.xml │ ├── sales_email_order_shipment_renderers.xml │ ├── sales_email_order_shipment_track.xml │ ├── sales_guest_creditmemo.xml │ ├── sales_guest_form.xml │ ├── sales_guest_invoice.xml │ ├── sales_guest_print.xml │ ├── sales_guest_printcreditmemo.xml │ ├── sales_guest_printinvoice.xml │ ├── sales_guest_printshipment.xml │ ├── sales_guest_reorder.xml │ ├── sales_guest_shipment.xml │ ├── sales_guest_view.xml │ ├── sales_order_creditmemo.xml │ ├── sales_order_creditmemo_renderers.xml │ ├── sales_order_guest_info_links.xml │ ├── sales_order_history.xml │ ├── sales_order_info_links.xml │ ├── sales_order_invoice.xml │ ├── sales_order_invoice_renderers.xml │ ├── sales_order_item_price.xml │ ├── sales_order_item_renderers.xml │ ├── sales_order_print.xml │ ├── sales_order_print_creditmemo_renderers.xml │ ├── sales_order_print_invoice_renderers.xml │ ├── sales_order_print_renderers.xml │ ├── sales_order_print_shipment_renderers.xml │ ├── sales_order_printcreditmemo.xml │ ├── sales_order_printinvoice.xml │ ├── sales_order_printshipment.xml │ ├── sales_order_reorder.xml │ ├── sales_order_shipment.xml │ ├── sales_order_shipment_renderers.xml │ └── sales_order_view.xml └── templates │ ├── email │ ├── creditmemo │ │ └── items.phtml │ ├── invoice │ │ └── items.phtml │ ├── items.phtml │ ├── items │ │ ├── creditmemo │ │ │ └── default.phtml │ │ ├── invoice │ │ │ └── default.phtml │ │ ├── order │ │ │ └── default.phtml │ │ ├── price │ │ │ └── row.phtml │ │ └── shipment │ │ │ └── default.phtml │ └── shipment │ │ ├── items.phtml │ │ └── track.phtml │ ├── guest │ └── form.phtml │ ├── html │ └── title.phtml │ ├── order │ ├── creditmemo.phtml │ ├── creditmemo │ │ ├── items.phtml │ │ └── items │ │ │ └── renderer │ │ │ └── default.phtml │ ├── history.phtml │ ├── info.phtml │ ├── info │ │ ├── buttons.phtml │ │ └── buttons │ │ │ └── rss.phtml │ ├── invoice.phtml │ ├── invoice │ │ ├── items.phtml │ │ └── items │ │ │ └── renderer │ │ │ └── default.phtml │ ├── items.phtml │ ├── items │ │ └── renderer │ │ │ └── default.phtml │ ├── order_comments.phtml │ ├── order_date.phtml │ ├── order_status.phtml │ ├── print │ │ ├── creditmemo.phtml │ │ ├── invoice.phtml │ │ └── shipment.phtml │ ├── recent.phtml │ ├── shipment │ │ └── items │ │ │ └── renderer │ │ │ └── default.phtml │ ├── totals.phtml │ └── view.phtml │ ├── reorder │ └── sidebar.phtml │ └── widget │ └── guest │ └── form.phtml ├── Magento_Search ├── layout │ ├── default.xml │ └── search_term_popular.xml └── templates │ ├── form.mini.phtml │ ├── js │ └── script.phtml │ └── term.phtml ├── Magento_SendFriend ├── layout │ └── sendfriend_product_send.xml └── templates │ └── send.phtml ├── Magento_Shipping ├── layout │ ├── checkout_index_index.xml │ ├── sales_guest_reorder.xml │ ├── sales_guest_shipment.xml │ ├── sales_guest_view.xml │ ├── sales_order_reorder.xml │ ├── sales_order_shipment.xml │ ├── sales_order_view.xml │ └── shipping_tracking_popup.xml └── templates │ ├── html │ └── title.phtml │ ├── items.phtml │ ├── order │ └── shipment.phtml │ └── tracking │ ├── details.phtml │ ├── link.phtml │ └── popup.phtml ├── Magento_Sitemap └── layout │ └── robots_index_index.xml ├── Magento_Store └── templates │ └── switch │ ├── flags.phtml │ ├── languages.phtml │ └── stores.phtml ├── Magento_Swatches ├── layout │ ├── catalog_category_view.xml │ ├── catalog_product_view_type_configurable.xml │ ├── catalog_widget_product_list.xml │ ├── catalogsearch_advanced_result.xml │ ├── catalogsearch_result_index.xml │ ├── checkout_cart_configure_type_configurable.xml │ ├── default.xml │ └── wishlist_index_configure_type_configurable.xml └── templates │ ├── js │ └── script.phtml │ └── product │ ├── category │ └── renderer.phtml │ ├── layered │ └── renderer.phtml │ └── view │ └── renderer.phtml ├── Magento_Tax ├── layout │ ├── catalog_product_prices.xml │ ├── checkout_cart_index.xml │ ├── checkout_cart_sidebar_total_renderers.xml │ ├── checkout_index_index.xml │ ├── checkout_item_price_renderers.xml │ ├── sales_email_item_price.xml │ └── sales_order_item_price.xml └── templates │ ├── checkout │ ├── cart │ │ └── item │ │ │ └── price │ │ │ └── sidebar.phtml │ ├── grandtotal.phtml │ ├── shipping.phtml │ ├── shipping │ │ └── price.phtml │ ├── subtotal.phtml │ └── tax.phtml │ ├── email │ └── items │ │ └── price │ │ └── row.phtml │ ├── item │ └── price │ │ ├── row.phtml │ │ ├── total_after_discount.phtml │ │ └── unit.phtml │ ├── order │ └── tax.phtml │ └── pricing │ ├── adjustment.phtml │ └── adjustment │ └── bundle.phtml ├── Magento_Theme ├── layout │ ├── default.xml │ ├── default_head_blocks.xml │ └── print.xml ├── layouts.xml ├── page_layout │ ├── 1column.xml │ ├── 2columns-left.xml │ ├── 2columns-right.xml │ └── 3columns.xml └── templates │ ├── components │ └── menu.phtml │ ├── html │ ├── breadcrumbs.phtml │ ├── collapsible.phtml │ ├── container.phtml │ ├── copyright.phtml │ ├── fields │ │ └── dob.phtml │ ├── footer │ │ ├── absolute_footer.phtml │ │ ├── links.phtml │ │ ├── logo │ │ │ └── logo.phtml │ │ └── social_links.phtml │ ├── header │ │ └── logo.phtml │ ├── pager.phtml │ ├── print.phtml │ ├── sections.phtml │ ├── skip.phtml │ ├── title.phtml │ ├── toolbar-script.phtml │ ├── topmenu.phtml │ └── viraxpress_text.phtml │ ├── messages.phtml │ ├── page │ └── js │ │ ├── custom_head.phtml │ │ ├── scripts.phtml │ │ ├── slider.phtml │ │ └── sticky.phtml │ ├── root.phtml │ └── template.phtml ├── Magento_Ui └── templates │ └── wysiwyg │ └── active_editor.phtml ├── Magento_Vault ├── layout │ ├── customer_account.xml │ └── vault_cards_listaction.xml └── templates │ ├── cards_list.phtml │ └── html │ └── title.phtml ├── Magento_Wishlist ├── layout │ ├── catalog_category_view.xml │ ├── catalog_product_prices.xml │ ├── catalog_product_view.xml │ ├── catalogsearch_advanced_result.xml │ ├── catalogsearch_result_index.xml │ ├── checkout_cart_index.xml │ ├── checkout_cart_item_renderers.xml │ ├── customer_account.xml │ ├── default.xml │ ├── wishlist_email_items.xml │ ├── wishlist_email_rss.xml │ ├── wishlist_index_configure.xml │ ├── wishlist_index_configure_type_bundle.xml │ ├── wishlist_index_configure_type_configurable.xml │ ├── wishlist_index_configure_type_downloadable.xml │ ├── wishlist_index_configure_type_grouped.xml │ ├── wishlist_index_configure_type_simple.xml │ ├── wishlist_index_index.xml │ ├── wishlist_index_share.xml │ └── wishlist_shared_index.xml └── templates │ ├── addto.phtml │ ├── button │ ├── share.phtml │ ├── tocart.phtml │ └── update.phtml │ ├── cart │ └── item │ │ └── renderer │ │ └── actions │ │ └── move_to_wishlist.phtml │ ├── catalog │ └── product │ │ ├── list │ │ └── addto │ │ │ └── wishlist.phtml │ │ └── view │ │ └── addto │ │ └── wishlist.phtml │ ├── html │ └── title.phtml │ ├── item │ ├── column │ │ ├── cart.phtml │ │ ├── comment.phtml │ │ ├── edit.phtml │ │ ├── image.phtml │ │ ├── name.phtml │ │ ├── price.phtml │ │ ├── remove.phtml │ │ └── review.phtml │ ├── configure │ │ └── addto │ │ │ └── wishlist.phtml │ └── list.phtml │ ├── link.phtml │ ├── options_list.phtml │ ├── product │ └── price │ │ ├── bundle │ │ └── configured_price.phtml │ │ └── configurable │ │ └── configured_price.phtml │ ├── shared.phtml │ ├── sharing.phtml │ ├── sidebar.phtml │ └── view.phtml ├── README.md ├── cms └── home.html ├── composer.json ├── etc └── view.xml ├── i18n └── en_US.csv ├── media └── preview.png ├── registration.php ├── theme.xml ├── vx └── vx_frontend │ └── web │ ├── css │ └── styles.css │ ├── fonts │ └── inter │ │ └── woff │ │ ├── Inter-Black.woff │ │ ├── Inter-Bold.woff │ │ ├── Inter-ExtraBold.woff │ │ ├── Inter-Medium.woff │ │ ├── Inter-Regular.woff │ │ └── Inter-SemiBold.woff │ ├── images │ ├── blog-1.webp │ ├── blog-2.webp │ ├── blog-3.webp │ ├── cat-kid_1.webp │ ├── cat_men_VX.webp │ ├── cat_women_VX.webp │ ├── main_banner_VX-mobile.webp │ ├── main_banner_VX_1.webp │ ├── second_1banner.webp │ ├── second_2banner.webp │ ├── second_banner2.webp │ └── video_pic.webp │ ├── js │ ├── alpine.min.js │ └── core.min.js │ ├── tailwind │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── run_script.sh │ ├── store-config.js │ ├── tailwind.config.js │ ├── tailwind.css │ ├── utils │ │ └── tailwind-utils.css │ └── vx-components │ │ ├── buttons.css │ │ ├── slider.css │ │ └── splide.css │ └── wysiwyg │ ├── app-store-360.webp │ └── gplay-store-360.webp ├── web ├── core-js │ ├── core.min.js │ ├── datepicker.min.js │ ├── form-validations.min.js │ ├── glightbox.min.js │ └── splide.min.js ├── css │ ├── datepicker.min.css │ ├── email-fonts.less │ ├── email-inline.less │ ├── email.less │ ├── glightbox.min.css │ └── source │ │ ├── _email-base.less │ │ ├── _email-extend.less │ │ ├── _email-variables.less │ │ ├── _theme.less │ │ ├── _typography.less │ │ └── _variables.less └── images │ ├── footer_payments_icons-min.png │ ├── footer_payments_icons.png │ └── logo.svg └── wysiwyg ├── app-store-360.webp ├── blog-1.webp ├── blog-2.webp ├── blog-3.webp ├── cat-kid_1.webp ├── cat_men_VX.webp ├── cat_women_VX.webp ├── gplay-store-360.webp ├── main_banner_VX-mobile.webp ├── main_banner_VX_1.webp ├── second_1banner.webp ├── second_2banner.webp ├── second_banner2.webp └── video_pic.webp /Magento_Bundle/layout/catalog_product_view_type_simple.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | bundle 28 | 4 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /Magento_Bundle/layout/checkout_cart_configure_type_bundle.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | Magento_Checkout::cart/item/configure/updatecart.phtml 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /Magento_Bundle/layout/checkout_onepage_review_item_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Bundle/layout/sales_email_order_creditmemo_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Bundle/layout/sales_email_order_invoice_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Bundle/layout/sales_email_order_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Bundle/layout/sales_email_order_shipment_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Bundle/layout/sales_order_creditmemo_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Bundle/layout/sales_order_invoice_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Bundle/layout/sales_order_print_creditmemo_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Bundle/layout/sales_order_print_invoice_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Bundle/layout/sales_order_print_shipment_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Bundle/layout/sales_order_shipment_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Bundle/templates/catalog/product/view/options/notice.phtml: -------------------------------------------------------------------------------- 1 | 22 |

escapeHtml(__('* Required Fields')) ?>

23 | -------------------------------------------------------------------------------- /Magento_Catalog/layout/catalog_category_view_type_default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Catalog/layout/catalog_category_view_type_default_without_children.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Magento_Catalog/templates/category/cms.phtml: -------------------------------------------------------------------------------- 1 | 22 | 29 | isContentMode() || $block->isMixedMode()):?> 30 |
31 | getCmsBlockHtml() ?> 32 |
33 | 34 | -------------------------------------------------------------------------------- /Magento_Catalog/templates/category/products.phtml: -------------------------------------------------------------------------------- 1 | 22 | 29 | isContentMode() || $block->isMixedMode()): ?> 30 | getProductListHtml() ?> 31 | -------------------------------------------------------------------------------- /Magento_Catalog/templates/page/glightbox-css.phtml: -------------------------------------------------------------------------------- 1 | 22 | -------------------------------------------------------------------------------- /Magento_Catalog/templates/page/glightbox-js.phtml: -------------------------------------------------------------------------------- 1 | 22 | 23 | -------------------------------------------------------------------------------- /Magento_Catalog/templates/product/breadcrumbs.phtml: -------------------------------------------------------------------------------- 1 | getData('viewModel'); 24 | ?> 25 | 26 | helper(\Magento\Framework\Json\Helper\Data::class)->jsonDecode($viewModel->getJsonConfigurationHtmlEscaped()); 28 | $widgetOptions = $this->helper(\Magento\Framework\Json\Helper\Data::class)->jsonEncode($widget['breadcrumbs']); 29 | ?> 30 | 33 | -------------------------------------------------------------------------------- /Magento_Catalog/templates/product/price/default.phtml: -------------------------------------------------------------------------------- 1 | 22 | 23 | getPriceType('regular_price'); 29 | 30 | /* @noEscape */ echo $block->renderAmount($priceModel->getAmount(), [ 31 | 'price_id' => $block->getPriceId('product-price-'), 32 | 'include_container' => true 33 | ]); 34 | ?> 35 | -------------------------------------------------------------------------------- /Magento_Catalog/templates/product/view.phtml: -------------------------------------------------------------------------------- 1 | 22 | 23 |
24 | getChildHtml('product-media'); ?> 25 | getChildHtml('product-main'); ?> 26 |
27 | -------------------------------------------------------------------------------- /Magento_Catalog/templates/product/view/addto.phtml: -------------------------------------------------------------------------------- 1 | 24 |
25 | getChildHtml() ?> 26 |
27 | -------------------------------------------------------------------------------- /Magento_Catalog/templates/product/view/options/type/default.phtml: -------------------------------------------------------------------------------- 1 | 22 | getOption() ?> 23 |
24 | 25 |
26 | -------------------------------------------------------------------------------- /Magento_Catalog/templates/product/view/options/wrapper.phtml: -------------------------------------------------------------------------------- 1 | 24 | hasRequiredOptions()) { 27 | $required = ' data-hasrequired="' . $escaper->escapeHtmlAttr(__('* Required Fields')) . '"'; 28 | } 29 | ?> 30 |
> 31 | getChildHtml('', true) ?> 32 |
33 | -------------------------------------------------------------------------------- /Magento_Catalog/templates/product/view/options/wrapper/bottom.phtml: -------------------------------------------------------------------------------- 1 | 22 |
23 | getChildHtml('', true) ?> 24 |
25 | -------------------------------------------------------------------------------- /Magento_Catalog/templates/product/view/view.phtml: -------------------------------------------------------------------------------- 1 | 22 | 23 |
24 | getChildHtml('product-media'); ?> 25 | getChildHtml('product-main'); ?> 26 |
27 | -------------------------------------------------------------------------------- /Magento_Catalog/templates/product/widget/compared/grid.phtml: -------------------------------------------------------------------------------- 1 | 22 | 27 | 28 | renderApp( 29 | [ 30 | 'widget_columns' => [ 31 | 'displayMode' => 'grid' 32 | ], 33 | 'image' => [ 34 | 'imageCode' => 'recently_compared_products_grid_content_widget' 35 | ] 36 | ] 37 | ); 38 | -------------------------------------------------------------------------------- /Magento_Catalog/templates/product/widget/compared/list.phtml: -------------------------------------------------------------------------------- 1 | 22 | 27 | 28 | renderApp( 29 | [ 30 | 'widget_columns' => [ 31 | 'displayMode' => 'list' 32 | ], 33 | 'image' => [ 34 | 'imageCode' => 'recently_compared_products_list_content_widget' 35 | ] 36 | ] 37 | ); 38 | -------------------------------------------------------------------------------- /Magento_Catalog/templates/product/widget/compared/sidebar.phtml: -------------------------------------------------------------------------------- 1 | 22 | 27 | 28 | renderApp( 29 | [ 30 | 'listing' => [ 31 | 'displayMode' => 'grid' 32 | ], 33 | 'image' => [ 34 | 'imageCode' => 'recently_compared_products_images_names_widget' 35 | ] 36 | ] 37 | ); 38 | -------------------------------------------------------------------------------- /Magento_Catalog/templates/product/widget/link/link_block.phtml: -------------------------------------------------------------------------------- 1 | 22 | 25 | -------------------------------------------------------------------------------- /Magento_Catalog/templates/product/widget/link/link_inline.phtml: -------------------------------------------------------------------------------- 1 | 22 | 23 | getLinkAttributes() ?>>escapeHtml($block->getLabel()) ?> 24 | 25 | -------------------------------------------------------------------------------- /Magento_Catalog/templates/product/widget/viewed/grid.phtml: -------------------------------------------------------------------------------- 1 | 22 | 28 | 29 | renderApp([ 30 | 'widget_columns' => [ 31 | 'displayMode' => 'grid' 32 | ], 33 | 'image' => [ 34 | 'imageCode' => 'recently_viewed_products_grid_content_widget' 35 | ] 36 | ]); 37 | -------------------------------------------------------------------------------- /Magento_Catalog/templates/product/widget/viewed/list.phtml: -------------------------------------------------------------------------------- 1 | 22 | 28 | 29 | renderApp([ 30 | 'widget_columns' => [ 31 | 'displayMode' => 'list' 32 | ], 33 | 'image' => [ 34 | 'imageCode' => 'recently_viewed_products_list_content_widget' 35 | ] 36 | ]); 37 | -------------------------------------------------------------------------------- /Magento_Catalog/templates/product/widget/viewed/sidebar.phtml: -------------------------------------------------------------------------------- 1 | 22 | 27 | 28 | renderApp( 29 | [ 30 | 'listing' => [ 31 | 'displayMode' => 'grid' 32 | ], 33 | 'image' => [ 34 | 'imageCode' => 'recently_viewed_products_images_names_widget' 35 | ] 36 | ] 37 | ); 38 | -------------------------------------------------------------------------------- /Magento_CatalogSearch/templates/advanced/link.phtml: -------------------------------------------------------------------------------- 1 | helper(\Magento\CatalogSearch\Helper\Data::class); 26 | ?> 27 |
28 | 29 | escapeHtml(__('Advanced Search')) ?> 30 | 31 |
32 | -------------------------------------------------------------------------------- /Magento_CatalogWidget/layout/catalog_widget_product_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Checkout/layout/checkout_cart_configure_type_simple.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Magento_Checkout/templates/button.phtml: -------------------------------------------------------------------------------- 1 | 22 | 23 | 24 | getCanViewOrder() && $block->getCanPrintOrder()): ?> 25 | 26 | escapeHtml(__('Print receipt')) ?> 27 | 28 | getChildHtml() ?> 29 | 30 | -------------------------------------------------------------------------------- /Magento_Checkout/templates/onepage/failure.phtml: -------------------------------------------------------------------------------- 1 | 25 | getRealOrderId()): ?> 26 |

escapeHtml(__('Order #') . $block->getRealOrderId()) ?>

27 | 28 | getErrorMessage()): ?> 29 |

escapeHtml($error) ?>

30 | 31 |

escapeHtml( 32 | __('Click here to continue shopping.', $escaper->escapeUrl($block->getContinueShoppingUrl())), 33 | ['a'] 34 | ) ?> 35 |

36 | -------------------------------------------------------------------------------- /Magento_Cms/layout/cms_index_defaultnoroute.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Cms/layout/cms_page_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Cms/templates/default/home.phtml: -------------------------------------------------------------------------------- 1 | 22 | 23 | -------------------------------------------------------------------------------- /Magento_Cms/templates/footer/block.phtml: -------------------------------------------------------------------------------- 1 | getConfig('viraxpress_config/footer/block_id'); 24 | if (!empty($blockId)) { 25 | echo $block->getLayout()->createBlock(\Magento\Cms\Block\Block::class)->setBlockId($blockId)->toHtml(); 26 | } 27 | ?> 28 | -------------------------------------------------------------------------------- /Magento_Cms/templates/footer/extra-block.phtml: -------------------------------------------------------------------------------- 1 | getConfig('viraxpress_config/footer/extra_block_id'); 24 | if (!empty($blockId)) { 25 | echo $block->getLayout()->createBlock(\Magento\Cms\Block\Block::class)->setBlockId($blockId)->toHtml(); 26 | } 27 | ?> 28 | -------------------------------------------------------------------------------- /Magento_ConfigurableProduct/layout/checkout_cart_configure_type_configurable.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_ConfigurableProduct/templates/product/price/tier_price.phtml: -------------------------------------------------------------------------------- 1 | 24 |
25 | -------------------------------------------------------------------------------- /Magento_Cookie/templates/html/cookie.phtml: -------------------------------------------------------------------------------- 1 | getSessionConfig()->getCookieSecure() ? 'true' : 'false'; 29 | $scriptString = " 30 | window.cookiesConfig = window.cookiesConfig || {}; 31 | window.cookiesConfig.secure = $isCookieSecure; 32 | "; 33 | ?> 34 | 35 | renderTag('script', [], $scriptString, false) ?> 36 | -------------------------------------------------------------------------------- /Magento_Customer/layout/customer_account_confirmation.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | Send confirmation link 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /Magento_Customer/templates/account/link/create-account.phtml: -------------------------------------------------------------------------------- 1 | 24 |
  • -------------------------------------------------------------------------------- /Magento_Customer/templates/account/link/my-account.phtml: -------------------------------------------------------------------------------- 1 | 24 | isLoggedIn()): ?> 25 |
  • 26 | 27 | 28 | 29 |
  • 30 | 31 | -------------------------------------------------------------------------------- /Magento_Customer/templates/account/navigation-delimiter.phtml: -------------------------------------------------------------------------------- 1 | 22 | 25 | -------------------------------------------------------------------------------- /Magento_Customer/templates/account/navigation.phtml: -------------------------------------------------------------------------------- 1 | 24 |
    25 |
    26 | escapeHtml(__('My Account')) ?> 27 |
    28 |
    29 | 34 |
    35 |
    36 | -------------------------------------------------------------------------------- /Magento_Customer/templates/logout.phtml: -------------------------------------------------------------------------------- 1 | 24 |

    escapeHtml(__('You have signed out and will go to our homepage in 5 seconds.')) ?>

    25 | 26 | 37 | -------------------------------------------------------------------------------- /Magento_Customer/templates/newcustomer.phtml: -------------------------------------------------------------------------------- 1 | 9 | getRegistration()->isAllowed()): ?> 10 |
    11 |
    12 |
    13 |
    14 | escapeHtml(__('Not a customer?')) ?> 15 | 16 | escapeHtml(__('Create An Account')) ?> 17 | 18 |
    19 |
    20 |
    21 |
    22 | 23 | -------------------------------------------------------------------------------- /Magento_Directory/layout/catalog_category_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Magento_Directory/layout/catalogsearch_advanced_index.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Magento_Directory/layout/catalogsearch_advanced_result.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Magento_Directory/layout/catalogsearch_result_index.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Magento_Directory/templates/currency/switch.phtml: -------------------------------------------------------------------------------- 1 | 25 |

    escapeHtml(__('Your current currency is: %1.', $currency->getCode())) ?>

    26 |

    escapeHtml(__('Continue')) ?>

    27 | -------------------------------------------------------------------------------- /Magento_Downloadable/layout/checkout_cart_configure_type_downloadable.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Magento_Downloadable/layout/checkout_onepage_success.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Downloadable/layout/multishipping_checkout_success.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Downloadable/layout/sales_email_order_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Downloadable/layout/sales_order_invoice_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Downloadable/layout/sales_order_item_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Downloadable/layout/sales_order_print_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Downloadable/templates/checkout/success.phtml: -------------------------------------------------------------------------------- 1 | 22 | getOrderHasDownloadable()): ?> 23 | My Downloadable Products', $escaper->escapeUrl($block->getDownloadableProductsUrl())) ?> 24 | 25 | -------------------------------------------------------------------------------- /Magento_GiftMessage/layout/checkout_cart_index.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /Magento_GoogleAnalytics/layout/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_GroupedProduct/layout/sales_email_order_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_GroupedProduct/layout/sales_guest_invoice.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_GroupedProduct/layout/sales_order_creditmemo_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_GroupedProduct/layout/sales_order_invoice_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_GroupedProduct/layout/sales_order_item_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_GroupedProduct/layout/sales_order_print_creditmemo_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_GroupedProduct/layout/sales_order_print_invoice_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_GroupedProduct/layout/sales_order_print_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_InventoryConfigurableProductFrontendUi/layout/catalog_product_view_type_configurable.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_LayeredNavigation/layout/catalog_category_view_type_layered_without_children.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Magento_LoginAsCustomerFrontendUi/templates/login.phtml: -------------------------------------------------------------------------------- 1 | 24 | 25 | 30 | -------------------------------------------------------------------------------- /Magento_Multishipping/layout/checkout_cart_index.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Magento_Multishipping/templates/checkout/link.phtml: -------------------------------------------------------------------------------- 1 | 22 | 23 | escapeHtml(__('Check Out with Multiple Addresses')) ?> 24 | -------------------------------------------------------------------------------- /Magento_Newsletter/layout/newsletter_index_index.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Magento_PageBuilder/templates/googlemaps.phtml: -------------------------------------------------------------------------------- 1 | 24 | 25 | shouldIncludeGoogleMapsLibrary()): ?> 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_PageCache/layout/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Magento_ProductAlert/email/price_alert.html: -------------------------------------------------------------------------------- 1 | 22 | 23 | 29 | 30 | {{template config_path="design/email/header_template"}} 31 | 32 |

    {{trans "%name," name=$customerName}}

    33 | {{var alertGrid|raw}} 34 | 35 | {{template config_path="design/email/footer_template"}} 36 | -------------------------------------------------------------------------------- /Magento_ProductAlert/email/stock_alert.html: -------------------------------------------------------------------------------- 1 | 22 | 23 | 29 | 30 | {{template config_path="design/email/header_template"}} 31 | 32 |

    {{trans "%name," name=$customerName}}

    33 | {{var alertGrid|raw}} 34 | 35 | {{template config_path="design/email/footer_template"}} 36 | -------------------------------------------------------------------------------- /Magento_ProductAlert/layout/productalert_unsubscribe_email.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_ProductAlert/templates/email/email.phtml: -------------------------------------------------------------------------------- 1 | 24 | 25 |
    28 | getBlockHtml('formkey') ?> 29 | 30 |
    31 | -------------------------------------------------------------------------------- /Magento_ProductVideo/layout/catalog_product_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_ProductVideo/templates/product/view/gallery.phtml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Review/layout/review_product_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Review/templates/empty.phtml: -------------------------------------------------------------------------------- 1 | 24 |
    25 | 26 |
    27 | -------------------------------------------------------------------------------- /Magento_Review/templates/product/view/count.phtml: -------------------------------------------------------------------------------- 1 | 24 | 25 | escapeHtml(__('%1 Review(s)', $count)) ?> 26 | 27 | -------------------------------------------------------------------------------- /Magento_Review/templates/product/view/other.phtml: -------------------------------------------------------------------------------- 1 | 24 | getProduct(); ?> 25 |
    26 | escapeHtml(__('Back to Main Product Info')) ?> 27 |
    28 | -------------------------------------------------------------------------------- /Magento_Review/templates/redirect.phtml: -------------------------------------------------------------------------------- 1 | 22 | getProduct()->getProductUrl()}#info-product_reviews"); 25 | // phpcs:ignore Magento2.Security.LanguageConstruct.ExitUsage 26 | exit; 27 | ?> 28 | -------------------------------------------------------------------------------- /Magento_Review/templates/review.phtml: -------------------------------------------------------------------------------- 1 | 24 |
    25 | getChildHtml(); ?> 26 |
    27 | -------------------------------------------------------------------------------- /Magento_Robots/layout/robots_index_index.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Robots/page_layout/robots.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Magento_Robots/templates/robots.phtml: -------------------------------------------------------------------------------- 1 | 22 | -------------------------------------------------------------------------------- /Magento_Sales/layout/checkout_index_index.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Magento_Sales/layout/customer_account_index.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /Magento_Sales/layout/sales_email_item_price.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Sales/layout/sales_email_order_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Sales/layout/sales_guest_form.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /Magento_Sales/layout/sales_guest_reorder.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Sales/layout/sales_order_creditmemo_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Sales/layout/sales_order_invoice_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Sales/layout/sales_order_item_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Sales/layout/sales_order_print_creditmemo_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Sales/layout/sales_order_print_invoice_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Sales/layout/sales_order_print_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Sales/layout/sales_order_print_shipment_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Sales/layout/sales_order_reorder.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /Magento_Sales/layout/sales_order_shipment_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Sales/templates/email/items/price/row.phtml: -------------------------------------------------------------------------------- 1 | 22 | getItem(); 26 | 27 | /** @var \Magento\Sales\Model\Order $_order */ 28 | $_order = $_item->getOrder(); 29 | ?> 30 | 31 | formatPrice($_item->getRowTotal()) ?> 32 | -------------------------------------------------------------------------------- /Magento_Sales/templates/order/creditmemo.phtml: -------------------------------------------------------------------------------- 1 | 24 |
    25 | getChildHtml('creditmemo_items') ?> 26 |
    27 | 32 |
    33 |
    34 | -------------------------------------------------------------------------------- /Magento_Sales/templates/order/info/buttons/rss.phtml: -------------------------------------------------------------------------------- 1 | 24 | isRssAllowed() && $block->getLink()): ?> 25 | 26 | escapeHtml($block->getLabel()) ?> 27 | 28 | 29 | -------------------------------------------------------------------------------- /Magento_Sales/templates/order/invoice.phtml: -------------------------------------------------------------------------------- 1 | 24 |
    25 | getChildHtml('invoice_items') ?> 26 |
    27 | 32 |
    33 |
    34 | -------------------------------------------------------------------------------- /Magento_Sales/templates/order/order_date.phtml: -------------------------------------------------------------------------------- 1 | 22 |
    23 | escapeHtml(__('Order Date: %1', '' . $block->formatDate($block->getOrder()->getCreatedAt(), \IntlDateFormatter::LONG) . ''), ['span']) ?> 24 |
    25 | -------------------------------------------------------------------------------- /Magento_Sales/templates/order/order_status.phtml: -------------------------------------------------------------------------------- 1 | 22 | 23 | 24 | 25 | escapeHtml($block->getOrder()->getStatusLabel()) ?> 26 | 27 | -------------------------------------------------------------------------------- /Magento_Search/layout/search_term_popular.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | Popular Search Terms 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /Magento_Shipping/layout/sales_order_view.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Magento_Shipping/templates/order/shipment.phtml: -------------------------------------------------------------------------------- 1 | 22 |
    23 | getChildHtml('shipment_items') ?> 24 |
    25 | 30 |
    31 |
    32 | -------------------------------------------------------------------------------- /Magento_Shipping/templates/tracking/link.phtml: -------------------------------------------------------------------------------- 1 | 22 | 23 | getOrder() ?> 24 | 28 | -------------------------------------------------------------------------------- /Magento_Sitemap/layout/robots_index_index.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Swatches/layout/catalog_product_view_type_configurable.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /Magento_Swatches/layout/checkout_cart_configure_type_configurable.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Magento_Swatches/layout/default.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Swatches/layout/wishlist_index_configure_type_configurable.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /Magento_Tax/layout/checkout_item_price_renderers.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /Magento_Tax/templates/item/price/total_after_discount.phtml: -------------------------------------------------------------------------------- 1 | getItem(); 24 | ?> 25 | getItem()->getOrderItem()->getOrder() ?> 26 | formatPrice($block->getTotalAmount($_item)) ?> 27 | -------------------------------------------------------------------------------- /Magento_Theme/page_layout/1column.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /Magento_Theme/page_layout/2columns-left.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Magento_Theme/page_layout/2columns-right.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Magento_Theme/page_layout/3columns.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Magento_Theme/templates/html/container.phtml: -------------------------------------------------------------------------------- 1 | 22 | getChildHtml(); ?> 23 | -------------------------------------------------------------------------------- /Magento_Theme/templates/html/copyright.phtml: -------------------------------------------------------------------------------- 1 | 22 | -------------------------------------------------------------------------------- /Magento_Theme/templates/html/footer/absolute_footer.phtml: -------------------------------------------------------------------------------- 1 | 22 | getMiscellaneousHtml(); 23 | -------------------------------------------------------------------------------- /Magento_Theme/templates/html/footer/links.phtml: -------------------------------------------------------------------------------- 1 | 30 |
  • 31 | 32 | escapeHtmlAttr($block->getLabel())?> 33 | 34 |
  • 35 | -------------------------------------------------------------------------------- /Magento_Theme/templates/html/print.phtml: -------------------------------------------------------------------------------- 1 | 27 | 28 | renderTag('script', [], $scriptString, false) ?> -------------------------------------------------------------------------------- /Magento_Theme/templates/html/skip.phtml: -------------------------------------------------------------------------------- 1 | getTarget(); 23 | $label = $block->getLabel(); 24 | ?> 25 | 28 | -------------------------------------------------------------------------------- /Magento_Theme/templates/html/topmenu.phtml: -------------------------------------------------------------------------------- 1 | getColumnsLimit() ?: 0; 27 | $menuHtml = $block->getHtml('level-top', 'submenu', $columnsLimit); 28 | $childHtml = $block->getChildHtml(); 29 | ?> 30 | 31 | 37 | -------------------------------------------------------------------------------- /Magento_Theme/templates/html/viraxpress_text.phtml: -------------------------------------------------------------------------------- 1 | 22 |

    23 | escapeHtmlAttr($block->getViraXpressText()) ?> 24 |

    25 | -------------------------------------------------------------------------------- /Magento_Theme/templates/messages.phtml: -------------------------------------------------------------------------------- 1 | 22 |
    25 |
    -------------------------------------------------------------------------------- /Magento_Theme/templates/root.phtml: -------------------------------------------------------------------------------- 1 | 22 | 23 | > 24 | > 25 | 26 | 27 | 28 | > 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /Magento_Theme/templates/template.phtml: -------------------------------------------------------------------------------- 1 | 24 | getChildHtml('', false); 25 | -------------------------------------------------------------------------------- /Magento_Ui/templates/wysiwyg/active_editor.phtml: -------------------------------------------------------------------------------- 1 | getWysiwygAdapterPath(); 28 | -------------------------------------------------------------------------------- /Magento_Wishlist/layout/wishlist_email_items.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Magento_Wishlist/layout/wishlist_email_rss.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /Magento_Wishlist/layout/wishlist_index_configure.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /Magento_Wishlist/layout/wishlist_index_configure_type_simple.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /Magento_Wishlist/layout/wishlist_shared_index.xml: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Wishlist/templates/addto.phtml: -------------------------------------------------------------------------------- 1 | 24 | -------------------------------------------------------------------------------- /Magento_Wishlist/templates/button/share.phtml: -------------------------------------------------------------------------------- 1 | 24 | getWishlist()->getItemsCount() && $block->getWishlist()->getShared() < $block->getConfig()->getSharingEmailLimit()): ?> 25 | 28 | 29 | -------------------------------------------------------------------------------- /Magento_Wishlist/templates/button/tocart.phtml: -------------------------------------------------------------------------------- 1 | 24 | 25 | getWishlist()->getItemsCount() && $block->getWishlist()->isSalable()): ?> 26 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /Magento_Wishlist/templates/button/update.phtml: -------------------------------------------------------------------------------- 1 | 24 | 25 | getWishlist()->getItemsCount()): ?> 26 | 29 | 30 | -------------------------------------------------------------------------------- /Magento_Wishlist/templates/item/column/name.phtml: -------------------------------------------------------------------------------- 1 | getItem(); 26 | $product = $item->getProduct(); 27 | ?> 28 | 29 | escapeHtml($product->getName()) ?> 30 | -------------------------------------------------------------------------------- /Magento_Wishlist/templates/item/column/price.phtml: -------------------------------------------------------------------------------- 1 | 23 | 24 | getChildNames() as $childName): ?> 25 | getLayout()->renderElement($childName, false) ?> 26 | 27 | -------------------------------------------------------------------------------- /Magento_Wishlist/templates/item/column/review.phtml: -------------------------------------------------------------------------------- 1 | getItem()->getProduct(); 24 | ?> 25 | getReviewsSummaryHtml($product, 'short') ?> 26 | -------------------------------------------------------------------------------- /Magento_Wishlist/templates/link.phtml: -------------------------------------------------------------------------------- 1 | 24 | isLoggedIn()): ?> 25 | 28 | 29 | -------------------------------------------------------------------------------- /i18n/en_US.csv: -------------------------------------------------------------------------------- 1 | "Your Checkout Progress", "Checkout Progress" 2 | "Card Verification Number", "CVV" 3 | "Items %1-%2 of %3","%3 items" 4 | "Regular Price", "was" 5 | "Shop By","Filter" 6 | "Remove item", "Remove" 7 | "Proceed to Checkout", "Go to Checkout" 8 | "Grand Total", "Estimated Total" 9 | "Review by", "By" 10 | "View Order", "View" 11 | "Update Shopping Cart", "Update Cart" 12 | "Print Order", "Print" 13 | "Move to Wish List","Move" 14 | "Copy to Wish List","Copy" 15 | "Move Selected to Wish List", "Move Selected" 16 | "Copy Selected to Wish List", "Copy Selected" 17 | "%1 items in wish list", "%1 items" 18 | "1 item in wish list", "1 item" 19 | "Continue to Shipping Information", "Select Shipping Method" 20 | "Cart Subtotal", "Subtotal" 21 | -------------------------------------------------------------------------------- /media/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viraxpress/Frontend/a739f5b7db0237985aea8f8b29cf7c260ddb533d/media/preview.png -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- 1 | 2 | 23 | 24 | 25 | ViraXpress Frontend 26 | 27 | media/preview.png 28 | 29 | -------------------------------------------------------------------------------- /vx/vx_frontend/web/fonts/inter/woff/Inter-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viraxpress/Frontend/a739f5b7db0237985aea8f8b29cf7c260ddb533d/vx/vx_frontend/web/fonts/inter/woff/Inter-Black.woff -------------------------------------------------------------------------------- /vx/vx_frontend/web/fonts/inter/woff/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viraxpress/Frontend/a739f5b7db0237985aea8f8b29cf7c260ddb533d/vx/vx_frontend/web/fonts/inter/woff/Inter-Bold.woff -------------------------------------------------------------------------------- /vx/vx_frontend/web/fonts/inter/woff/Inter-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viraxpress/Frontend/a739f5b7db0237985aea8f8b29cf7c260ddb533d/vx/vx_frontend/web/fonts/inter/woff/Inter-ExtraBold.woff -------------------------------------------------------------------------------- /vx/vx_frontend/web/fonts/inter/woff/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viraxpress/Frontend/a739f5b7db0237985aea8f8b29cf7c260ddb533d/vx/vx_frontend/web/fonts/inter/woff/Inter-Medium.woff -------------------------------------------------------------------------------- /vx/vx_frontend/web/fonts/inter/woff/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viraxpress/Frontend/a739f5b7db0237985aea8f8b29cf7c260ddb533d/vx/vx_frontend/web/fonts/inter/woff/Inter-Regular.woff -------------------------------------------------------------------------------- /vx/vx_frontend/web/fonts/inter/woff/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viraxpress/Frontend/a739f5b7db0237985aea8f8b29cf7c260ddb533d/vx/vx_frontend/web/fonts/inter/woff/Inter-SemiBold.woff -------------------------------------------------------------------------------- /vx/vx_frontend/web/images/blog-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viraxpress/Frontend/a739f5b7db0237985aea8f8b29cf7c260ddb533d/vx/vx_frontend/web/images/blog-1.webp -------------------------------------------------------------------------------- /vx/vx_frontend/web/images/blog-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viraxpress/Frontend/a739f5b7db0237985aea8f8b29cf7c260ddb533d/vx/vx_frontend/web/images/blog-2.webp -------------------------------------------------------------------------------- /vx/vx_frontend/web/images/blog-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viraxpress/Frontend/a739f5b7db0237985aea8f8b29cf7c260ddb533d/vx/vx_frontend/web/images/blog-3.webp -------------------------------------------------------------------------------- /vx/vx_frontend/web/images/cat-kid_1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viraxpress/Frontend/a739f5b7db0237985aea8f8b29cf7c260ddb533d/vx/vx_frontend/web/images/cat-kid_1.webp -------------------------------------------------------------------------------- /vx/vx_frontend/web/images/cat_men_VX.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viraxpress/Frontend/a739f5b7db0237985aea8f8b29cf7c260ddb533d/vx/vx_frontend/web/images/cat_men_VX.webp -------------------------------------------------------------------------------- /vx/vx_frontend/web/images/cat_women_VX.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viraxpress/Frontend/a739f5b7db0237985aea8f8b29cf7c260ddb533d/vx/vx_frontend/web/images/cat_women_VX.webp -------------------------------------------------------------------------------- /vx/vx_frontend/web/images/main_banner_VX-mobile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viraxpress/Frontend/a739f5b7db0237985aea8f8b29cf7c260ddb533d/vx/vx_frontend/web/images/main_banner_VX-mobile.webp -------------------------------------------------------------------------------- /vx/vx_frontend/web/images/main_banner_VX_1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viraxpress/Frontend/a739f5b7db0237985aea8f8b29cf7c260ddb533d/vx/vx_frontend/web/images/main_banner_VX_1.webp -------------------------------------------------------------------------------- /vx/vx_frontend/web/images/second_1banner.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viraxpress/Frontend/a739f5b7db0237985aea8f8b29cf7c260ddb533d/vx/vx_frontend/web/images/second_1banner.webp -------------------------------------------------------------------------------- /vx/vx_frontend/web/images/second_2banner.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viraxpress/Frontend/a739f5b7db0237985aea8f8b29cf7c260ddb533d/vx/vx_frontend/web/images/second_2banner.webp -------------------------------------------------------------------------------- /vx/vx_frontend/web/images/second_banner2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viraxpress/Frontend/a739f5b7db0237985aea8f8b29cf7c260ddb533d/vx/vx_frontend/web/images/second_banner2.webp -------------------------------------------------------------------------------- /vx/vx_frontend/web/images/video_pic.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viraxpress/Frontend/a739f5b7db0237985aea8f8b29cf7c260ddb533d/vx/vx_frontend/web/images/video_pic.webp -------------------------------------------------------------------------------- /vx/vx_frontend/web/tailwind/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "viraxpress", 3 | "version": "1.0.0", 4 | "description": "Energize your E-commerce with ViraXpress's blazing fast Magento New Front End + Elegant Theme + >95% SEO score + Open Source", 5 | "scripts": { 6 | "success": "echo -e \"\\e[32mSuccess: Tailwind compiled successfully!\\e[0m\"", 7 | "dev": "TAILWIND_MODE=WATCH postcss tailwind.css -o ../css/styles.css --watch --verbose", 8 | "prod": "NODE_ENV=production postcss tailwind.css -o ../css/styles.css && npm run success" 9 | }, 10 | "keywords": [], 11 | "author": "", 12 | "license": "ISC", 13 | "devDependencies": { 14 | "autoprefixer": "^10.4.20", 15 | "cssnano": "^7.0.1", 16 | "postcss-cli": "^11.0.0", 17 | "tailwindcss": "^3.4.9" 18 | }, 19 | "dependencies": { 20 | "@tailwindcss/aspect-ratio": "^0.4.2", 21 | "@tailwindcss/forms": "^0.5.7", 22 | "@tailwindcss/typography": "^0.5.13", 23 | "postcss": "^8.4.41", 24 | "postcss-import": "^16.1.0", 25 | "postcss-nested": "^6.0.1" 26 | }, 27 | "engines": { 28 | "node": ">=14.0.0" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /vx/vx_frontend/web/tailwind/postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | 'postcss-nested': {}, 4 | 'postcss-import': {}, 5 | tailwindcss: {}, 6 | autoprefixer: {}, 7 | ...(process.env.NODE_ENV === 'production' ? { cssnano: {} } : {}) 8 | }, 9 | } 10 | -------------------------------------------------------------------------------- /vx/vx_frontend/web/tailwind/run_script.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cd /var/www/html/pub/media/vx/vx_frontend/web/tailwind 4 | npm run prod 5 | -------------------------------------------------------------------------------- /vx/vx_frontend/web/tailwind/store-config.js: -------------------------------------------------------------------------------- 1 | const { exec } = require("child_process"); 2 | const fs = require("fs"); 3 | 4 | // Extract PHP variable from command-line arguments 5 | const phpVariables = JSON.parse(process.argv[2]); // Parse PHP variables from command line 6 | 7 | const filePath = phpVariables.root; // Path to your JavaScript file 8 | 9 | 10 | // Read the content of the file 11 | fs.readFile(filePath, "utf8", (err, data) => { 12 | if (err) { 13 | console.error("Error reading file:", err); 14 | return; 15 | } 16 | 17 | // Modify the content as needed 18 | let updatedData = data 19 | .replace(/(primary:\s*["'])([^"']*)(["'])/, `$1${phpVariables.primary}$3`) 20 | .replace(/(secondary:\s*["'])([^"']*)(["'])/, `$1${phpVariables.secondary}$3`); 21 | 22 | // Write the updated content back to the file 23 | fs.writeFile(filePath, updatedData, "utf8", (err) => { 24 | if (err) { 25 | console.error("Error writing file:", err); 26 | return; 27 | } 28 | console.log("Values updated successfully!"); 29 | }); 30 | // Execute npm run build command 31 | exec(phpVariables.npmrun, (err, stdout, stderr) => { 32 | if (err) { 33 | console.error("Error executing npm run build:", err); 34 | return; 35 | } 36 | console.log(stdout); 37 | console.error(stderr); 38 | }); 39 | }); 40 | -------------------------------------------------------------------------------- /vx/vx_frontend/web/wysiwyg/app-store-360.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viraxpress/Frontend/a739f5b7db0237985aea8f8b29cf7c260ddb533d/vx/vx_frontend/web/wysiwyg/app-store-360.webp -------------------------------------------------------------------------------- /vx/vx_frontend/web/wysiwyg/gplay-store-360.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viraxpress/Frontend/a739f5b7db0237985aea8f8b29cf7c260ddb533d/vx/vx_frontend/web/wysiwyg/gplay-store-360.webp -------------------------------------------------------------------------------- /web/css/email-fonts.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright © Magento, Inc. All rights reserved. 3 | * See COPYING.txt for license details. 4 | */ 5 | 6 | // 7 | // Fonts for Emails 8 | // _____________________________________________ 9 | 10 | @import 'source/lib/_lib.less'; // Global lib 11 | @import 'source/lib/variables/_email.less'; // Global email variables 12 | @import 'source/_theme.less'; // Global variables override 13 | @import 'source/_variables.less'; // Local theme variables 14 | @import 'source/_email-variables.less'; // Theme variables for emails 15 | 16 | // 17 | // Output @font-face declarations 18 | // --------------------------------------------- 19 | 20 | @media-common: true; 21 | 22 | // Font stylesheet @import is wrapped in a media query in order to prevent it from causing problems in Outlook 23 | @media screen { 24 | @import 'source/_typography.less'; 25 | } 26 | -------------------------------------------------------------------------------- /web/css/email-inline.less: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright © Magento, Inc. All rights reserved. 3 | * See COPYING.txt for license details. 4 | */ 5 | 6 | // 7 | // Styles for emails 8 | // _____________________________________________ 9 | 10 | // See comments in source/_email-base.less for explanation of email styles 11 | 12 | @import 'source/lib/_lib.less'; // Global lib 13 | @import 'source/lib/variables/_email.less'; // Global email variables 14 | @import 'source/_theme.less'; // Global variables override 15 | @import 'source/_variables.less'; // Local theme variables 16 | @import 'source/_email-variables.less'; // Theme variables for emails 17 | 18 | // 19 | // Styles for emails 20 | // --------------------------------------------- 21 | 22 | @import 'source/_email-base.less'; // Contains primary email styles 23 | @import 'source/_email-extend.less'; // Contains theme-specific adjustments to email styles 24 | 25 | // 26 | // Module-specific styles for emails 27 | // --------------------------------------------- 28 | 29 | //@magento_import 'source/_email.less'; 30 | -------------------------------------------------------------------------------- /web/css/source/_email-extend.less: -------------------------------------------------------------------------------- 1 | // /** 2 | // * Copyright © Magento, Inc. All rights reserved. 3 | // * See COPYING.txt for license details. 4 | // */ 5 | 6 | // 7 | // Email extend styles 8 | // _____________________________________________ 9 | 10 | // This file should be used for theme-specific styles for emails that extend or modify the styles in _email.less 11 | // This will allow you to edit email styles without copying and editing the _email.less file 12 | 13 | // Custom fonts are declared here, rather than in _email-base.less, as it allows for custom fonts to be changed/removed 14 | // in custom themes. 15 | 16 | // Importing fonts from an external CSS file, rather than embedding @font-face declarations inside the