Category Archives: Shopware 5

How to create a theme info tab in shopware 5?

create a theme info tab in Shopware 5

To create a theme info tab in shopware 5 follow the below steps: Step 1: Go to shopware theme directory of your website. Step 2: Create the new sub-directory in your theme directory called info. File Structure:– themes->Frontend->Custom->info. Note: Custom directory is theme which I created already. Step 3: Create html files named like en_GB.html […]

How to create configuration sets in shopware 5 ?

create configuration sets in Shopware 5

To create configuration sets in shopware 5 follow the below steps: Step 1: Go to shopware theme directory of your website. Step 2: Open Theme.php file to add the configuration set. Step 3: Add below code in Theme.php use Doctrine\Common\Collections\ArrayCollection; use Shopware\Components\Theme\ConfigSet; public function createConfigSets(ArrayCollection $collection) { $set = new ConfigSet(); $set->setName(‘Red theme’); $set->setDescription(‘Set all […]

Shopware5 To Shopware6 Upgrade – fair-pure.de

Shopware 5 To Shopware 6 Upgrade

Bay20 did Shopware5 to shopware6 upgrade for fair-pure.de. Fair-pure.de is Germany based premium provider of health related products. Recently, we have upgraded their store from shopware5 to shopware6. Lets go through the process in brief. Data Migration : We created a Development setup with latest version of shopware6. We migrated all data from shopware5 to shopware6. Theme Development : We developed […]

Shopware Maintenance and Support – metzgerei-graenitz.de

Shopware Maintenance and Support

Metzgerei-graenitz.de is a Germany based eCommerce website which specializes in meat related products. We have been providing complete maintenance and support. We have implemented some key features for them on their platform. Some of them are mentioned below: Google shopping integration Shipping carrier automation Responsive Design Update Go Integration If you are looking for shopware […]

How to create a new shopping world element in shopware 5?

How To Create A New Shopping World Element In Shopware 5

To create new shopping world element in shopware 5 follow the following steps. Step 1: Create a new sub-directory in plugin directory. File Structure custom>plugins>ShoppingWorldElement Note:- ShoppingWorldElement is a new plugin in which we edit this directory to create new shopping world element. Step 2: Create ShoppingWorldElement.php in ShoppingWorldElement directory. Step 3: Write this code […]