Feature request from Marko-M, posted on GitHub Aug 16, 2016
Preconditions
Magento 2 version 2.1.0
Use \Magento\Framework\Url::getUrl() from secure area of the store
Steps to reproduce
Make sure code is executed in secure area of the store (HTTPS)
Generate URL in code
/**
* @var \Magento\Framework\Url
*/
protected $url;
...
$this->url->getUrl(
'test/test/test',
[
'_secure' => false
]
)
Resulting URL is https://example.com/test/test/test
Expected result
Make sure code is executed in secure area of the store (HTTPS)
Generate URL in code
/**
* @var \Magento\Framework\Url
*/
protected $url;
...
$this->url->getUrl(
'test/test/test',
[
'_secure' => false
]
)
Resulting URL is http://example.com/test/test/test
Reason behind such behavior is:
https://github.com/magento/magento2/blob/2.1.0/lib/internal/Magento/Framework/Url.php#L364-L366
where code assumes that if current request is secure, requested url should be secure as well, regardless to '_secure' parameter saying otherwise.
... View more
Feature request from aholovan, posted on GitHub Aug 23, 2016
Looks like 'elementNameType' validator is very strict. I've got an exception in dev mode:
0 (Magento\Framework\Config\Dom\ValidationException): Element 'block', attribute 'name': [facet 'pattern'] The value '4d072daa2b95b9d3fd3995d2faaf2993' is not accepted by the pattern '[a-zA-Z][a-zA-Z\d-_.]*'.
Line: 645
... View more
Feature request from elioermini, posted on GitHub Aug 17, 2016
I think would be useful to have like in M1 the method streamOpen() .
There is no other way to initialise the field $_streamHandler of the class File.
Other methods in the class File rely on the initialisation of $_streamHandler and having it null I suppose that leaves the class just possible to use only extending it.
... View more
Feature request from sumihiro, posted on GitHub Aug 22, 2016
I want to use Text Swatch Attribute with long text.
But Default Store View value cannot be saved correctly. It will be shrink.
Preconditions
I'm using Magento2.1.0, and MySQL 5.6.30.
Steps to reproduce
Create new Attribute, and select Text Swatch.
Set long text to Default Store View in Manage Swatch.
Like: "01234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
"
Save Attribute.
Expected result
Default Store View value is saved full length.
Actual result
Value is shrink.
Like: "012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234"
May be, it is caused by limitation of max varchar length (255) of MySQL.
mysql> desc eav_attribute_option_value;
+-----------+----------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-----------+----------------------+------+-----+---------+----------------+
| value_id | int(10) unsigned | NO | PRI | NULL | auto_increment |
| option_id | int(10) unsigned | NO | MUL | 0 | |
| store_id | smallint(5) unsigned | NO | MUL | 0 | |
| value | varchar(255) | YES | | NULL | |
+-----------+----------------------+------+-----+---------+----------------+
4 rows in set (0.00 sec)
How to save value correctly?
... View more
Feature request from SmthDiff, posted on GitHub Dec 20, 2013
I don't know if someone else has already opened an issue about this or if it's already a work in progress, but I would really like to see OpenID implemented in Magento2 for the backend users. I'm not entirely sure if it would also be a good idea for frontend users but for the backend it would help a lot. For example for big agencies making a Magento Webpage for a Client. It is easier for employees to use their existing OpenIDs on every project. No need to have a centralized password database. Everyone knows their logins and it simply works. I would really like that.
Apart from that I really like how Magento2 is coming along and hope it's released soonish :)
... View more
Feature request from mage2pro, posted on GitHub Sep 20, 2015
This is a long term bug from Magento 1.x, and still is in Magento 2: attribute labels on admin category pages are untranslatable.
I fixed it for myself with a plugin: https://mage2.pro/t/73
But surely it must be in the core.
... View more
Feature request from adragus-inviqa, posted on GitHub Oct 01, 2015
I tried to create Customer attribute which renders as readonly in the backend, but couldn't find an easy way to do it.
"Easy" for me means a new flag when creating an attribute (like label , frontend_class etc.) - say adminhtml_readonly - which changes the way its default renderer displays the input - exactly the way it renders when the attribute is locked() .
Although the classes that render various HTML elements do support readonly functionality, I'm not sure if those can be easily coupled with an EAV attr flag.
I guess this can only be done for a couple of inputs, like text , textarea , but it'll be nice to be able to mark the attribute as readonly even for (multi)selects, file , images or others.
What do you think?
... View more
Feature request from stasleo, posted on GitHub Oct 01, 2015
We want to use Bookmarks in new M2 Grids, but we have faced some issues.
First - there is no confirmation when I accedentally click on 'delete' icon.
Also we can't just save current bookmark after some changes (I need to create new one).
We also want to display list of bookmarks always somehow (buttons bar for instance), so that we could access it in just one click. There is also an idea to display bookmark name somewhere else, so that it would be clear what bookmark is actually beign used, for example to h1 page title.
There is also an idea to share bookmarks for other admin users.
As for the grid. Column width is not a part of bookmark, unfortunately. If I made changes, it remember it in browser for all bookmarks within the grid. I think it would be better not to share width for another bookmarks within one grid.
... View more
Feature request from dmaciej, posted on GitHub Aug 20, 2015
I have an idea to introduce some kind of a quick jump form in the backend. There is a lot of pages and settings sections in the admin panel, and we should consider implementing some method to make it easier to review. It would be very useful for casual administrators and developers as well.
We have product search in backend already, so it could be some base for this feature. However, addional search box on the oposite side should also be taken into consideration.
There is a similar module for Magento 1.x here https://github.com/tim-reynolds/magento-qconfig
but it provides configuration search only (like phpStorm settings search).
Thanks in advance for your feedback.
... View more
Feature request from markoshust, posted on GitHub Oct 09, 2015
I find it odd that the main sidebar item is named Products, with Catalog as a sub item. Shouldn't it be the other way around, with Catalog as the main sidebar item, and Products as a sub item?
Categories and Products are both sub items of Catalog, no?
... View more
Feature request from craigcarnell, posted on GitHub Oct 15, 2015
Hi,
It would be useful to add an option to pay for a product by instalments.
For example, you could pay for a product at £200 over 4 months at £50 a month. A cron script would have to run to take those payments.
As we are a EE customer I wouldn't be against this being a EE feature.
... View more
Feature request from tigerx7, posted on GitHub Feb 03, 2016
From a performance perspective, it would be great if /swatches/ajax/media can accept a batch request and return all available media for all products in one call. On a product page, it isn't such an issue. However, when a swatch option is selected in layered navigation, a /swatches/ajax/media call is done for every single product in the catalog view.
Additionally, a catalog page view with a selected swatch option that updates thumbnails doesn't cache the updating of the thumbnails thus requiring dozens of calls to /swatches/ajax/media on every load and a considerable delay in rendering the updated thumbnails. The thumbnails are cached, however the bottleneck becomes the multiple calls to /swatches/ajax/media.
Performance with Single Call
When a swatch option for an individual product is clicked in catalog view and the thumbnail is updated for a single product, I've been able to get TTFB for the /swatches/ajax/media ajax call down to 400-500ms with PHP and MySQL optimization. (MySQL query cache also enabled)
Performance with Multiple Calls
When a swatch option is selected in layered navigation and that option is set to update thumbnails, it forces a refresh of all the thumbnails in the catalog view on every load. So say we have a total of 20 items, then /swatches/ajax/media is called 20 times. Since calls are happening with page load, TTFB for first /swatches/ajax/media is 700-900ms (compared to single call of 400-500ms in previous tests). But it gets worse, we run into the browser's maximum concurrent requests per host limit (which in Chrome is 6), so only 6 simultaneous calls are executed and each has a longer TTFB than the previous call. By the 3rd call, TTFB is 1.4-1.7s. And since we have 6 active requests with most taking longer than 1s, the other 14 requests are waiting
Ideal Solution
Ideally, /swatches/ajax/media should accept parameters composed of a batch of products so that then only 1 request is needed to retrieve media information for all the products in the catalog view instead of having to do dozens of simultaneous calls.
Another solution, although probably more complicated to implement would be to somehow cache the swatch option initiated thumbnails (ie. non ajax method) along with the page so performance would be as quick as the default view without swatch options selected. Without a swatch option selected, our page load for 20 items is 300-350ms TTFB and loads in 1.5s. With a swatch option selected requiring updating all thumbnails, TTFB is 300-350ms with a load in 6.5s-7s (most of that taken up just by requests and responses to /swatches/ajax/media). The actual downloading of the thumbnails (without browser cache) is almost unnoticeable (about 40ms per image)
Or perhaps a hybrid solution. Layered navigation initiated swatch options (ie. option is in URL query) updating thumbnails/images should not be ajax initiated and instead rendered with the page to take advantage of FPC. But if a swatch button for an individual product is clicked, then handle it via the ajax call.
... View more
Feature request from eversunsoft, posted on GitHub Dec 09, 2015
suppose there's a franchise business, with different physical locations, each location have multiple languages. So I create a website to represent the franchise business; then create one store(group) for each physical location, under each store there will be store views to present different languages. Currently, the payment module setup is only available on the store view level, how can one physical location(corresponds to one group_id) have one payment module setup, so each store view will simply load the payment module configuration from the store level rather than creating it's own payment module configuration?
p.s. this topic was raised on the Magento forum earlier, Alan suggested to raise an issue here
... View more
Feature request from shirtsofholl, posted on GitHub Jan 05, 2016
Would it be an idea to support EDI messages PRICAT (Price / Sales Catalogue) from the core? or EANCOM?
To choose and order assortments, the retailer normally receives master data about the
entire assortment from the supplier detailed in the EDI messages PRICAT (Price / Sales
Catalogue).
This would allow for a far better vertical integration in fashion and set the standard for all other platforms
References: https://www.gs1.nl/sites/default/files/Mode_CFB_BusinessModelsForTheFashionSector.pdf
http://www.gs1.org/docs/EDI/eancom/2012/ean02s3/part2/pricat/toc.htm
http://www.gs1.org/eancom/syntax-4
... View more
Feature request from tinxit, posted on GitHub Jan 07, 2016
When we send a new address (billing or shipping to Magento (by SOAP api) for a customer we store the addressId in the ERP system.
With the new functions it is not possible anymore to create one specific address for a customer and get 1 addressId returned. Can you add this back again?
... View more
Feature request from amitmca09, posted on GitHub Jan 14, 2016
magento connect manager not showing for ver 2.0 in admin URL
... View more
Feature request from VLCSolutions, posted on GitHub Feb 09, 2016
Unable to create a customer attribute which should show only in backend (admin panel) and should not show in frontend. I have not found any property set to show in adminhtml.
... View more
Feature request from rimasVKB, posted on GitHub Mar 02, 2016
I can attach files only in All Store Views. But I want attach separate files for each store view because these files are in different languages.
... View more