All Questions
0
votes
0answers
3 views
Magento 2 How to create table setting with image upload in admin system configuration?
I did it:
system.xml
<field id="active" translate="label" sortOrder="220" showInDefault="1" showInWebsite="1" showInStore="0">
<label>active buy</label>
<frontend_model&...
0
votes
0answers
2 views
product filters in layered navigation not working on category page
I have created a category and shows a static block and products on this category by selecting the option "static block and products" in category settings.
it is showing static block contents and ...
-1
votes
0answers
9 views
need magento developer who can fix design issue
Our website is http://www.shop-fittings.co/ and there is so many issue need to fix,
Can anyone contact us and give us quotation.
Thanks
0
votes
0answers
9 views
Magento HTTPS Questions
Just a few questions about HTTPS hopefully someone can help me on.
Firstly when we change the base unsecure URL to https does this also update the rel -canonical tag on pages. My concern is how are ...
0
votes
0answers
4 views
shipping price not updated in first time?
I am using magento 1.9.2.4.
I was added a product to cart. Select country and click on get quite button.
it's provide me table rate shipping charges according to my zone. I clicked on update total ...
0
votes
0answers
6 views
Magento Display tax rate amount on shipping cart page!
I can not find any information related to this.
I need to display tax rates with their corresponding amounts.
Now I have like this:
But I would like to show the total of both taxes with their ...
0
votes
0answers
8 views
Initialize jQuery plugin (Packery) for single CMS page
I can't get a Packery Gapless image grid to work correctly.
What is the correct way to initialize with jQuery (just for 1 CMS page), using this code snippet from Packery?
$('.grid').packery({
// ...
1
vote
0answers
8 views
Magento 2 add new custom option text field
I would like to add new custom option text field like 'New Text Field Title' in the magento 2.x 'Customizable Options' section could you please suggest me and guide me how to add please refer my ...
0
votes
0answers
10 views
Magento connect link in administration downloading file
When I click in Magento Connect link in admistration, the link is downloading a file. The file content is:
if (version_compare(phpversion(), '5.2.0', '<')===true) {
echo '<div style="...
0
votes
0answers
8 views
Magento2, Keep value in custom input field on update items
I have added custom field in the Item order table while creating the order in adminhtml. Considering below code, I'm trying to keep its value when qty is getting updated. But no success.
In grid....
1
vote
1answer
13 views
how can I set the type before order confirm in magento 2 in phtml file
In magento 1
$canApplyMsrp = Mage::helper('catalog')->canApplyMsrp($_item->getProduct(), Mage_Catalog_Model_Product_Attribute_Source_Msrp_Type::TYPE_BEFORE_ORDER_CONFIRM);
how can I set this ...
0
votes
1answer
14 views
Custom shipping method
I have a custom module for shipping method, but not show in frontend. In backend show all options but in checkout run blank page.
My code is:
Config:
#app/code/Sistel/Transzuri/etc/config.xml
<?...
0
votes
0answers
5 views
Magento add product to wishlist in REST Api
I am trying to add product to wishlist with below script in custom REST API its not working, but this below script is working at controller and magento root folder
$wishlist = Mage::getModel(...
0
votes
1answer
6 views
Show products minimum quantity allowed in cart page
How to show products minimum quantity allowed on cart page. For list and view pages I used this code
<?php
$productQuantity = Mage::getModel("cataloginventory/stock_item")->loadByProduct($...
0
votes
1answer
15 views
Magento 2: how to check if there is a role in site
I used the following code in magento 1 to check role is avilable or not.
$role = Mage::getModel('api/roles')->load('my new role', 'role_name');
if(!$role->getId())
I want to know, How can I ...