Magento 2 + default url needs to traslate
Need to translate some default URLs like customer/account/login/ & customer/account/create/ is there any way to translate these URLs with/without using URL rewrite?
Auto Added by WPeMatico
Need to translate some default URLs like customer/account/login/ & customer/account/create/ is there any way to translate these URLs with/without using URL rewrite?
I have a Magento 2.4.3 multi-store and I am currently creating categories programmatically, with the following code: $category = $objectManager->create(‘MagentoCatalogModelCategory’, [‘data’ => [“name” => $refCat[‘name’], “is_active” => $refCat[‘active’], “include_in_menu” => $refCat[‘menu’], “parent_id” => $parentID, “store_id” => $refCat[‘store_id’]]]); $category->setCustomAttributes([“display_mode” => “PRODUCTS”,… Read More »Magento 2.4 – Programmatically Created Categories in Multi-Store Collide
We want to create the following setup: Main Web Site (code: store) -> Store BE (code: store-be) -> Store View NL (code: nl) Main Web Site (code: store) -> Store BE (code: store-be) -> Store View EN (code: en) Main… Read More »Magento 2 – Multistore with same store codes
Recently, I made the Magento settings update regarding the “Add Store Code to URLs.” I have set this option to “No,” which has successfully removed the store code from the URLs. However, I have encountered a new issue. Customers are… Read More »Update on “Add Store Code to URLs” Setting and URL Redirection
I have a Magento installation with multiple stores, and I need to have different robots.txt files for each store. Currently, I have a single robots.txt file in the root directory of my Magento installation, but I want to customize it… Read More »How can I have different robots.txt files for each store in a Magento installation with multiple stores?
For SEO reasons we would like to switch stores directly without the default store switchers redirect chain. The normal Magento store switcher creates a redirect chain when switching store. For example switching from example.de/baelle to example.com/balls does the following: example.de/baelle… Read More »How to switch stores directly without the store switcher’s redirect chain?
I am using Magento 2.4.5-p1, Is there a recommended language pack for Slovenia, in other words, the slovenian language? For other languages, i am using the mageplaze language packs. For the slovenian language i can’t seem to find a recent… Read More »Is there a language pack for slovenian language?
I have a category 1 which belongs to store A and category 2 which belongs to store B. When I am in store A and run the query $category->getStoreId(), both categories returns A, and when I am in store B,… Read More »$category->getStoreId() returns the current store instead of the store that it actually belongs to
My issue is that I can’t get my different frontends to show different “Display out of Stock Products” options. Does anyone have any tips on which stock Magento module I need to look into to build a plugin or extension… Read More »Multi Store can’t show different “Display Out of Stock Products” options on frontends – 2.4.6
Product detail page getting 404 error when store switch. How to redirect this 404 error page to homepage or how to fix 404 error if the product exists in that store