- or
1357 results found
-
Preview / Simulation for Shop
A possibility to preview the complete Shop at a specific timeframe, for specific customer groups, rule-based etc.
- Categories
- CMS
- Products
- Promotions
- etc
42 votes -
Option to change the order of products
The order in which products are shown in the listing cannot be changed individually, please add an option for merchants to do so.
12 votes -
Password generator for new customers inside administration
We would love to get back the password generator from shopware 5 for adding new customers from administration. We don't often need it, but in case we need it, it was way more comfortable in Shopware 5.
If there are any plans for the b2b suite, to give sales representatives the option to add new customers, it would be quite neccessary, I think.
2 votes -
Async and sync payment processes in Shopware PWA / Frontends
If we build a shopware pwa / frontend you must reverse engineer and reimplement all payment providers by yourself for example, Unzer, SwagPayPal etc.
Every payment plugin has many payment processes like credit card, sofort, sepa, invoice, invoice and secure and many more.
Every of these payment processes needs additional information fields like birthday or paypalOrderId or isPaypayExpressCheckout Flag etc.
But the current state of payment integration doesn't allow it to transfer information in the handlePayment() or createOrder() functions. So every time we must build workarounds for theses functionality.1 vote -
Implementing a Flexible Metric and Imperial Conversion Tool (from cm in inches for example)
First and foremost, it would be beneficial to introduce dynamic measurements, allowing for seamless conversion between metric and imperial systems. This is particularly relevant as one of our clients, who operates multiple shops, has a location in the UK.
Subsequently, a mechanism that automatically adjusts values when switching between imperial and metric systems, and vice versa, should be developed.
1 vote -
Price filter: Minimum price entry should be checked for validity
You can filter by price in the front end.
In the Minimum price area, however, you can enter any number that makes no sense.
Here you should check whether the number makes sense and therefore cannot be greater than the maximum.
1 vote -
Flowbilder trigger for custom forms
It would be helpful to have business events or trigger for the flow builder with which merchants could create actions for custom forms.
For example, it would be desirable to send a mail to the customer with a confirmation that the form has been received. Currently, this is only confirmed in the frontend by a note.
6 votes -
B2B Suite: request a quote based on a rule
At the moment it is possible to request a quote for every case or basket. It would be nice if a request for a quote is based on a rule (e.g. shopping cart > 5000 €)
11 votes -
App System: Custom CMS elements
What we need:
It would be wonderful if there could be a way to provide custom CMS elements in apps.Why we need this:
We always want to offer our customers the best possible solutions in our themes, including sales-promoting CMS elements. Due to limitations in the app system, we can currently only do this in our extensions based on the plugin system. Since we also offer our extensions on the basis of the app system, this results in an "unnecessary" duplication and "maintenance effort". A single, unified app is highly desirable.The app system lacks the possibility to provide custom CMS elements (component + config + preview, see https://developer.shopware.com/docs/guides/plugins/plugins/content/cms/add-cms-element), to fill CMS blocks with custom CMS elements and to preconfigure them accordingly (defaultConfig).
Ideas:
The most practical thing would be if the built administration JS file (build-administration.sh) would also work in the app or if there would be a similar script to compile the necessary app files.With kind regards
What we need:
It would be wonderful if there could be a way to provide custom CMS elements in apps.Why we need this:
We always want to offer our customers the best possible solutions in our themes, including sales-promoting CMS elements. Due to limitations in the app system, we can currently only do this in our extensions based on the plugin system. Since we also offer our extensions on the basis of the app system, this results in an "unnecessary" duplication and "maintenance effort". A single, unified app is highly desirable.The app system lacks the possibility to provide…
4 votesThanks for your contribution.
Adding your own CMS elements via Apps is possible with the shopware version 6.4.17. It is possible to create new CMS elements via the Admin Extension SDK for both plugins and apps. Read the following docs article: https://developer.shopware.com/docs/guides/plugins/plugins/content/cms/add-cms-element-via-admin-sdk
If you have any suggestions or improvements towards our approach, feel free to reach out to us.
Thank you.
-
Refund Order
With the returns management in the administration, you can now record returns directly in Shopware or store the corresponding data. It is also possible to specify a refund value, which is currently only used in the documents.
This value should be refunded via the Unified Refund Handler to the appropriate payment method, if allowed and possible.
5 votes -
Streichpreis als Variable bei den ITEMs für Order-Mail
Streichpreis als Variable bei den ITEMs für die Bestellbestätigung
Damit der Kunde sieht, dass einzelne Produkte längere Lieferzeiten haben. Das entlastet den Kundenservice und erspart Beschwerden, wenn Artikel später versand werden.
Strike price as a variable in the ITEMs for order confirmation
So that the customer can see that individual products have longer delivery times. This eases the burden on customer service and saves complaints when items are shipped later.
2 votes -
Upload function for forms
As a shop owner, I want to offer my customers a form with the possibility to upload files to e.g. send me a picture of their ordered products.
The form builder should be extended by the possibility to add an file upload field to a custom form.
30 votes -
Configuration to deactivate status emails
In the Self-hosted and Cloud versions, is it not possible to turn off the send customer order status update email popup or deactivate the pre-activated 'Send email to customer' toggle per default.
-> This leads to annoying multiple clicks and to, by mistake sent emails which irritate customers
1 vote -
Salesrepresentatives should be able to buy products for themselves
With the new b2b integration inside the commercial plugin, you are up to integrate salesrepresentatives. Inside the old b2b-Plugin it wasn't possible to buy products as a SR for your own. They just saw there customers.
It woult be cool if they are able to, because we go lots of external SRs who love to use our products too. In the past we needed double accounting for our external SRs who want to buy our products.
2 votesno further devlopment of the B2B Suite
-
Duplicate Promotion
Currently it is not possible to duplicate promotions and edit the duplicated one afterwards. This would help to be more efficient in the administration.
13 votes -
Prioritize messages in the Message Queue
It should be possible to process the messages in the enqueue table according to manually defined priorities. A "Priority" column is available in the table, but without any visible benefit.
As of now, the customer has to build the index for categories and products quite often, leading to the fact that this process takes several hours. Other processes in the message queue have to wait, such as order confirmations. Therefore the possibility to set a priority is needed.
2 votes -
Make CSS less opinionated & more accessible
While a lot of progress has been made when issue NEXT-28267 was resolved, the Shopware CSS is still full of hardcoded and borderline obsolete code, which makes creating custom themes difficult and results in a bloated codebase.
As an example, this code block can be found in
_filter-panel.scss
:.icon.icon-filter-panel-item-toggle { margin-left: 8px; > svg { top: 4px; } }
In the same file, a height and padding is hardcoded in pixels for the filter panel:
.offcanvas-filter { .filter-panel { height: calc(100% - 80px); overflow-y: auto; width: 100%; padding: 0 25px 25px; } }
This creates incredibly specific selectors with hardcoded pixel values (which isn't good practice to begin with), that requires an even higher specificity to be overriden.
It is not only problematic for developers creating custom themes that need those values overriden, but also for the users. It can make the website inaccessible for users using assistive technology (or even just differently sized devices) due to the overwhelming use of pixels instead of relative units (like rem/em). Additionally, the use of physical instead of logical properties (e.g. margin-top vs margin-block-start) can make the website unusable for users using a different writing mode than LTR.
While I do realise that modifying the entire CSS codebase to accomodate those changes is quite a challenge, I believe in the long run it is critical to address this issue for the benefit of both developers and users.
While a lot of progress has been made when issue NEXT-28267 was resolved, the Shopware CSS is still full of hardcoded and borderline obsolete code, which makes creating custom themes difficult and results in a bloated codebase.
As an example, this code block can be found in
_filter-panel.scss
:.icon.icon-filter-panel-item-toggle { margin-left: 8px; > svg { top: 4px; } }
In the same file, a height and padding is hardcoded in pixels for the filter panel:
.offcanvas-filter { .filter-panel { height: calc(100% - 80px); overflow-y: auto; width: 100%; padding: 0 25px 25px; } }
This creates incredibly specific selectors with…
2 votes -
Enable Evolve customers to use DSR
Digital Sales Rooms offer a great way to interact with customers especially when your business is heavily dependent on physical stores.
Although a premium (beyond) feature, this is also very interesting for SMBs that are going through the digitalization process which are currently mainly using our Evolve plan.In order to enable merchants to use this feature it could be limited to a certain amount of DSR sessions per month.
This way, customers can get into the process of thinking about using DSR in general and also finding their bearings when setting up a scalable and performant DSR solution that suits their business.
This trickle-down effect could engage our customers more and maybe increase their willingness to switch to a higher plan.
Digital Sales Rooms offer a great way to interact with customers especially when your business is heavily dependent on physical stores.
Although a premium (beyond) feature, this is also very interesting for SMBs that are going through the digitalization process which are currently mainly using our Evolve plan.In order to enable merchants to use this feature it could be limited to a certain amount of DSR sessions per month.
This way, customers can get into the process of thinking about using DSR in general and also finding their bearings when setting up a scalable and performant DSR solution that…
3 votes -
Improve the block & element possibilities of the page builder
Improve the possibilities to design a page in the page builder by adding more blocks, elements and related settings.
Also, something like what was possible in SW5 with Digital Publishing Element.
38 votesInitial status update
-
Database table log_entry
It should be possible to deactivate the table "log_entry" and output the logs to a file/STDOUT/STDERR.
Ideally, from a resource management point of view, we would like to be able to restrict data in the log_entry. Because if the entries are useless and are only deleted again, database resources are uselessly wasted which worsens the user experience because relevant SQL statements (e.g. purchases) are slower as a result.
3 votes
- Don't see your idea?