Unanswered Questions
10
votes
1answer
589 views
Magento 2, new widget with image chooser parameter, does not save picture
I create a new widget and one of the parameters is a picture chooser, I just use this code. Everything looks well. I can open media folder and choose the picture I want to use. When I choose the ...
9
votes
2answers
155 views
Magento 2: best practice to add/delete product Images programmatically?
I want to upload images to the existing products.
The images are in import_dir. And they need to be added to the product that already exists in the catalog.
I could find only 2 ways how to do it.
1. "...
9
votes
1answer
772 views
Some products are missing in table catalog_product_index_price!
Anyone can help me clarify the Price Indexing in Magento? I'm using version 1.9.
My task: Rendering the featured products into home page.
My Solution: Instead of creating the category called "Featured ...
9
votes
0answers
402 views
FedEx service - “Free method” impossibly affecting rates
The FedEx shipping method allows one to set a free shipping method and set a minimum order amount for it to be applied.
Item in Cart
Product Weight = 22.17lbs
Qty = 7
Configuration A
Packages ...
8
votes
1answer
214 views
Magento2 CI Server Integration for Production
What are steps, guidelines and flows that needs to be followed for a successfully Magento2 Continuous Integration workflow ?
8
votes
1answer
718 views
Magento 1.9.2 Add layer navigation to advance search
I have followed following 3 steps for advanced search layer navigation, but it is not working. Any idea/suggestion OR How to implement layer navigation in advanced search?
1) In our local.xml under ...
8
votes
1answer
134 views
Error on product page when you have related products and full page cache is on
I get this error on some products that have related products:
Warning: Invalid argument supplied for foreach() in vendor/magento/module-catalog/Block/Product/ProductList/Related.php on line 129
This ...
7
votes
1answer
117 views
Magento 2 Add Category Tree Renderer Input With Modal Button
I am trying to place the category input for my custom form using uicomponent form.
I am able to create dropdown but how I can create the button and open a new modal from it?
Can I create a button ...
6
votes
0answers
195 views
Magento 2 : Add Custom Tax Amount In Cart Programatically
I want to add custom tax amount to checkout cart programmatically.
Here is the example.
Cart Old Tax = 4.21
Custom Tax = 2
New Tax = 4.21 + 2 = 6
Check the screenshot below.
I need this done ...
6
votes
1answer
237 views
How to make product grid in frontend in custom module magento 2?
I have created brand page to display details with associated product list.
I want to show that product list in grid same as admin.
Can it be possible to show grid in frontend same like backend ?
6
votes
0answers
56 views
How to remove Delete option from massaction dropdown for specific user role in Magento2?
I have different user role for my website. For a particular user role, I want to remove "Delete" from mass action dropdown which displays on customer grid in admin section.
The Delete option is got ...
6
votes
2answers
216 views
Right way to implement getExtensionAttributes()
I was wondering, what's the right way to implement an extensible EAV model.
I see that in Magento\Catalog\Model\Product, the method getExtensionAttributes() is implemented like this:
public function ...
6
votes
0answers
142 views
How can I trigger code to run after knockoutjs render in adminhtml
UPDATE: You can access the viewmodels directly. If you need to trigger code to run after a render, use MutationObserver. I'll post my code as soon as I have a good working example.
Original Question:...
6
votes
0answers
108 views
Test configuration pages with AbstractBackendController: testAclNoAccess fails
I'm writing an integration test for a configuration section and encountered the following failure from the default test cases:
My\Module\ConfigTest::testAclNoAccess
Failed asserting that 302 is ...
6
votes
1answer
281 views
Magento OAuth callback url ignored
I was working on a user authentication within an App i'm building. The idea is that I will have customers login via the OAuth of Magento and afterwards it must get the Customer_id of that user.
But ...