Showing ideas with label other.
Show all ideas
I need to make a discount by producto when users buy Only 10 . But the discount is also aplyed when user buys 11. How can i solve this?
... View more
See more ideas labeled with:
-
other
-
payments
Let me give some reasons as to why you'd want to release more often than you do today: a) bugfixes take a very long time to reach mainstream, frustrating users; this is one of the many commits I've yet to see in official releases: link; currently, this is the main reason M2 gets on the bad side of people; b) because of the above, there's a continuous pressure from us - the users -, to actually ship the bugfixes; that can't be good for your health, M2 core devs; c) new features take a long time to release, making the userbase move to friggin' WP-Commerce, because boredom; d) such long release cycles means that a big amount of code is added to the mainline at once, which makes for a very unstable/dangerous upgrade process every. blasted. time; I've yet to see the developer who can't wait to upgrade the M2 codebase of an ongoing project; e) everybody's doing it, and it works for them (from the Linux kernel, to the main browsers); I'm sure it can work for M2, as well. You've been improving, merging more community PRs. Great. But can you please release them, too? PS: Ending on a fun note, this is the worst forum app I've seen lately. ;)
... View more
See more ideas labeled with:
-
other
present di.xml file contains preferences,plugins,types,virtualtypes.i think its better to create separate file for each concept. advantages: present no idea.i will try to figure it out.just suddenly i got idea like this.because magento following for other xml files like this.for example routes.xml,events.xml.
... View more
See more ideas labeled with:
-
other
There should option in admin end, where the store owner can enable upload functionality in forms like create account form, product review form and contact us form. Also it should have the option of selecting what types of files can uploaded. This can improve the user engagement.
... View more
See more ideas labeled with:
-
other
Products ordered report does not show simple (child) products of configurable products When I run the "Products Ordered" report in Magento 2, configurable products show up as a single product, where the sales of all its child products were summed up. (example: if I sell chocolate bunnies in milk, dark and ivory I don't see sales for each of those chocolate types; I only see a total for all chocolate bunnies sold). Is there a way to change this so that only the child (simple) products are shown in the report with their sold quantities? We are currently using version 2.0.7 community edition.
... View more
See more ideas labeled with:
-
other
The idea is to have an option how customers are adressed. For example personal like "Hello Ben" or formal like " Dear Mr. Marks". These could be on webshop welcome message and also in transactional mails.
... View more
See more ideas labeled with:
-
other
-
platform
Right now, if there is an error during the setup:di:compile process, all those errors are displayed in the output of the command-line.
Those errors are displayed with red background and they are repeated multiple times.
It would be great if we can see just the message that there were errors during compilation.
In addition to that, we could see the path to the log file and the number of errors that have been logged.
That would keep the command-line output clean, and the error information in a log file to debug.
... View more
See more ideas labeled with:
-
other
First of all, I couldn't find a feature request like this one. If there is one, my sincere apologies. I noticed that view.phtml and list.phtml have an IF-statement that checks the stock availability of a product before showing the Add-To-Cart button. However, when I use 'Allow Qty below 0' and 'Show Out of Stock products' I would like to see an option to configuratie the Add To Cart button so I can choose to show it or hide it for products with < 0 in stock. Both as configuration in general or product specifiek options. Instead of doing this http://magento.stackexchange.com/a/32415 multiple for every shop over and over again.
... View more
See more ideas labeled with:
-
admin panel
-
Catalog
-
other
Many languages for storeview are not yet availabe on magento connect including Lao. provide Lao language package. I will be appreciated for supporting the translation. English to Lao
... View more
See more ideas labeled with:
-
extensions
-
other
Magento 2.1.3: I've been given the task that when a customer with a certain property registers itself it should get a different e-mail template. What this property is, is not important for the question, but lets say for sake of simplicity I have a Service Contract that can check if the customer qualifies for the different e-mail template or not: $this->customerChecker->hasCertainProperty($customerId); // returns true or false Now this might seem like an easy task right? Just hook into `Magento\Customer\Model\EmailNotification` with a plugin or something, and modify the part where the correct e-mail template is selected. Right? public function newAccount(
CustomerInterface $customer,
$type = self::NEW_ACCOUNT_EMAIL_REGISTERED,
$backUrl = '',
$storeId = 0,
$sendemailStoreId = null
) {
$types = $this->getTemplateTypes();
if (!isset($types[$type])) {
throw new LocalizedException(__('Please correct the transactional account email type.'));
}
if (!$storeId) {
$storeId = $this->getWebsiteStoreId($customer, $sendemailStoreId);
}
$store = $this->storeManager->getStore($customer->getStoreId());
$customerEmailData = $this->getFullCustomerObject($customer);
$this->sendEmailTemplate(
$customer,
$types[$type],
self::XML_PATH_REGISTER_EMAIL_IDENTITY,
['customer' => $customerEmailData, 'back_url' => $backUrl, 'store' => $store],
$storeId
);
} Right... the e-mail template is sent in this method using sendEmailTemplate(). So we can't use a interceptor for this... Well let's just look at the sendEmailTemplate()-method then: private function sendEmailTemplate(
$customer,
$template,
$sender,
$templateParams = [],
$storeId = null,
$email = null
) {
$templateId = $this->scopeConfig->getValue($template, 'store', $storeId);
if ($email === null) {
$email = $customer->getEmail();
}
$transport = $this->transportBuilder->setTemplateIdentifier($templateId)
->setTemplateOptions(['area' => 'frontend', 'store' => $storeId])
->setTemplateVars($templateParams)
->setFrom($this->scopeConfig->getValue($sender, 'store', $storeId))
->addTo($email, $this->customerViewHelper->getCustomerName($customer))
->getTransport();
$transport->sendMessage();
} Darn! The method is private! So an interceptor will definitely not work here. And we also cannot use a rewrite, since private methods are not inherited. The only way to manipulate our desired functionality is by rewriting the EmailNotification and copy/paste everything that is private from this class. Which are a lot of methods and properties. --- I would suggest that the EmailNotification-class gets some refactoring so it makes it's easier for 3rd party modules to extend it's functionality. Or am I missing something here?
... View more
See more ideas labeled with:
-
developer
-
other
There should be a book or a collection of tutorials how to use jquery, jquery-ui and knockoutjs together in Mangeto 2 for front-end developement (main focus on checkot page customisation) !
... View more
See more ideas labeled with:
-
other
Based on those links ux.stackexchange.com, www.lukew.com/, https://medium.com/ Magento 2 maybe should be using the method from Mikkel Bo Schmidt article to chose country and state instead of dropdown list like it uses now? If Magento choses to use it (To me it seems Magento 2 tries to get as far from dropdown as possible) then a way how module developers can also use it should be well documented not like drop-down list creation now. Examples: Magento 2 module Royal Mail Shipping where the list of radio buttons is quite big for customer to look through would need that. Also Estonian post offices dropdown menus added to shipping method that are in more difficulty to create in Magento 2 (Maybe that is the reason why Estonia does not have any commercial shops that uses Magento 2.x) then they were in magento 1.x pages, but they are necessary because no one would scan through such amount of radio buttons. The way described in those posts can solved both problems (city and state drop-down and shipping methods). As it is well known most of the orders that are made in ecommerce websites comes from mobile devices and as mentioned articles referred dropdown lists are not user friendly. Hopefully shipping-methods block extension would get finally documentation for long list of items. CAN ANYONE SEE A REASON WHY MAGENTO SHOULD NOT USE SOLUTION FROM THOSE ARTICLES?! ESTONIAN SHIPPING-METHOD EXAMPLE: www.apollo.ee
... View more
Hi, I am facing a problem with configurable products. If you create a configurable product and create some product variations based on lets say color & size, if you change the price and image for a specific variation and select this variation on the configurable product page, the price and image will change. This is a very good feature altough the expected behaviour for me would be that the description and specifications for this selected variation would be shown, in stead of the specifications of the configurable product itself. Why does it change the price and image, but not the description and product specifications? I attached a screenshot to give you an idea of the issue. I also used to have this problem in Magento 1 and found a module for this which solved the problem. However this module is not supported for Magento 2. https://www.magentocommerce.com/magento-connect/sdocp-simple-details-on-configurable-products-1.html Is there a way this can be done programmatically or fixed in the core? Kind regards, Falco
... View more
As specified in #4832, when running the Cli application, if an exception comes up, the error doesn't get reported to the user. A suggestion from @adragus-inviqa would be a very useful tool for debugging permission issues, among other things: "This one needs better handling of the exceptions thrown in \Magento\Framework\Console\Cli::doRun(). Something like try {
$exitCode = parent::doRun($input, $output);
} catch (\Exception $e) {
$output->writeln($e->getTraceAsString());
} This will get you the real exception." Thanks, Leonardo
... View more
See more ideas labeled with:
-
other
I really love the Magento command-line tool, however I would like to see the command line tool integrated in Linux / Mac. By doing that we could extend the native functionalities and be able to use the magento command with those new commands from any project. Problems Right now, if you want to add new commands to manage your Magento 2 installations, you have to add a new module with the code for the new commands to the project. So, if several community members contribute with different commands, the result is that you have several modules containing all those commands. For the same reason that the item above, if you create new commands to add new cool features, the code for those features should be added to every single Magento 2 project (as a result, more code in the codebase of those projects). If the command-line is included in the Magento 2 codebase (in the projects), it's very hard to extend and maintain for the reasons mentioned above. Magerun2 is the best example of how powerful and useful is a global command-line tool: https://github.com/netz98/n98-magerun2. Suggestions Since I've been contributing with the community by creating a command-line tool for Mac (https://github.com/guarinogabriel/Mac-CLI), I have a couple of suggestions to improve the Magento 2 command-line tool: Release it as the Magento command-line tool in Github: It could be a separate project in Github, so the community can focus on contributing specific features/improvements to the CLI. Make it global: The Magento installer could install the tool in the /usr/local/bin/ folder to make the command-line tool global in the system. Auto-complete features: The perfect example of this is the SAWS command line tool (https://github.com/donnemartin/saws): Magento 2 could use the global magento command-line tool: One of the goals of the Magento 2 command-line tool is to replace the shell scripts from Magento 1 and use commands in Magento 2 instead. Those commands could be appended to the global command line tool. So, if you run the magento command from the project folder, the commands from that project will be appended to the global commands. I'd love contributing with this idea by creating a pull request and start working on the global command-line tool if the Magento team and the community like it.
... View more
See more ideas labeled with:
-
developer
-
other
Currently, the default contact form only allows customers to send an email to a single recipient. For stores that have multiple departments(ie. service, sales, customer support) that have different emails, this default contact form is simply not sufficient. Magento 2 allows admin to enter different email addresses into the backend for different departments so why not support the same thing on the frontend. It would be a great feature for customers to be able to choose which department or person to send a message to. Does anyone else think this would be a good feature? Let me know if I can clarify this in any way.
... View more
See more ideas labeled with:
-
admin panel
-
other
-
platform
Idea: Admin Functionality to remove decimals on price globally on the site (like prestashop, opencart) Example of a thousand 1.000 This will affect how magento works globally, in some countries is not necessary decimals and others is even ilegal.
... View more
See more ideas labeled with:
-
other
To improve security on magento 2, I'd like to suggest encrypt customer data && order data (customer related), because it's also quite sensitive data. If hackers will get database, then they can easily re-use customer data from customer tables or order tables. That's logical that email field cannot be encrypted, but lastname, firstname, address, vat & company would be nice to have encrypted
... View more
See more ideas labeled with:
-
other
-
platform
Given that the current invoice, shipment and credit memo PDFs look the same as in Magento 1 and PDF's are always a bit of a nightmare to customize for the merchants: I suggest to replace the PDFs with a html2pdf tool. Actually the preview of the invoice looks already really nice in the backend, so this could just be converted to pdf. This would maybe also help the problem Hirokazu Nishi mentioned in his tweet: "Magento2 still use LinLibertine font. It’s only for Alphabets. To change PDF font, we still have to rewrite some classes..." This idea resulted from a tweet/discussion here: https://twitter.com/hirokazu_nishi/status/770282916819578881 https://twitter.com/rescueAnn/status/770338589326635008 https://twitter.com/benmarks/status/770339381995384832
... View more
See more ideas labeled with:
-
other