Questions tagged [magento-2.1.7]

Denotes questions related to Magento CE and EE 2.1.7

Denotes questions related to Magento CE(Open Source) and EE(Commerce) 2.1.7

Release notes:

CE: http://devdocs.magento.com/guides/v2.1/release-notes/ReleaseNotes2.1.7CE.html

EE: http://devdocs.magento.com/guides/v2.1/release-notes/ReleaseNotes2.1.7EE.html

344 questions
5
votes
1 answer

Add Custom Dropdown Attribute to Customer Gives Error

I have to add one drop-down field with two options. 1. Enable and 2. Disable. in the customer in admin side, My code as following:
Magecode
  • 1,504
  • 2
  • 18
  • 43
3
votes
4 answers

How I can change text of button 'Add to cart'?

I want to change text of button 'Add to cart' to 'Shop now' . How and where I can do this ? because I want to change it in full website
Learner
  • 833
  • 3
  • 19
  • 42
2
votes
1 answer

How to show order delivery date and gift message in success page in magento2.1.7

I want to show order delivery date and gift message in success page in magento2.1.7 as per my clients requirements.
Amy
  • 935
  • 1
  • 11
  • 36
2
votes
0 answers

Magento module installer stuck at Update Application is not running

When updating or adding an extension to the Magento 2.1.7 installation I get the following output in the module set up. Process extensions Status: Update application is not running Error in Update! Please refer to documentation Doc link to perform…
Axel Dekker
  • 403
  • 1
  • 5
  • 18
2
votes
1 answer

Magento 2 how to save values to multiple tables

I have 2 custom table and from admin side I want to save few field values to these 2 custom table while clicking Save button. For example in adminside I have Status option and Message option. The Status option value need to be in custom table 1 and…
Bridgit Thomas
  • 165
  • 5
  • 16
1
vote
0 answers

Magento 2 admin session lifetime not extend the time more than 30 mintes

I have put the session lifetime 84600 at admin side and cookies time same also. but after cleaning cache and again login, it does logout after 30 mints. Please help me to resolve this issue.
saneh
  • 11
  • 2
1
vote
0 answers

How to fix Front controller reached 100 router match iterations

I'm getting this error sometimes. When I remove var/cache/ and flush cache, Site works fine without error. Why this error come and how I fix it permanently?
Rishabh Rai
  • 645
  • 9
  • 23
1
vote
1 answer

Magento 2 - Transactions associated with old order numbers

I have had a few transactions show up in both Paypal and Stripe that look great on the merchant side, but the order number associated with them is from an older order that the customer placed. For example, I had a customer place an order today and…
KyleBunga
  • 361
  • 3
  • 8
1
vote
2 answers

Magento 2.1.8: How to get product final price and regular price

Below is my product collection code: $productCollection = $this->productCollectionFactory->create(); $productCollection->addMinimalPrice(); $productCollection->addFinalPrice(); $productCollection->addAttributeToFilter('status', …
P_U
  • 808
  • 8
  • 19
1
vote
0 answers

Magento 2 - Change product view to 2-columns left

I was trying to change product page layout to 2 columns left so that the left navigagion menu could be visible at entire magneto2 store. when I change Product page Layout at Product Edit page -> Design -> Layout to '2 columns with leftbar' I get…
afsar
  • 11
  • 2
1
vote
1 answer

Can I use a .sql file in my Magento 2 module installer?

I have this large file as an example data.sql and what it does is create table and insert the data when I run import from phpMyAdmin. How could one use this file in a module installer? I've found something but it's for Magento 1, here is the…
Juliano Vargas
  • 2,521
  • 3
  • 25
  • 81
1
vote
1 answer

Magento 2 : How to get Product url in custom page

In my block I have provide a function to fetch product details from product Id. Code in block file public function getProductById($pid) { $product = $this->_productRepository->getById($pid); return…
Bridgit Thomas
  • 165
  • 5
  • 16
1
vote
1 answer

Not able to get price in magento 2

By providing $product->getPrice() the result which I get is 29.0000. How can I fetch the price in correct format along with currency i.e $29. Please help.
Bridgit Thomas
  • 165
  • 5
  • 16
1
vote
0 answers

I am getting error filtering template: Notice: Undefine Variable :imageBlockBuilder

I am using Porto theme.I am getting error like Error filtering template: Notice: Undefined variable: imageBlockBuilder In my home page.
Ravi Kumar
  • 317
  • 5
  • 12
1
vote
2 answers

Cant create order programatically on 2.1.7

class OrderCreate { public function __construct( \Magento\Framework\Controller\Result\JsonFactory $resultJsonFactory, \Magento\Framework\Mail\Template\TransportBuilder $transportBuilder, …
kao
  • 91
  • 6
1
2 3