Fax Field not showing
When you save a customers address trough API you have the option to GetFax()
and SetFax()
but if i look at my backend i don't see Fax anywhere in the addresses
Anyone any idea if there is a setting or something to enable/disable that field?
Even though i do find that field in the database and i can SetFax()
that field
magento2 address
add a comment |
When you save a customers address trough API you have the option to GetFax()
and SetFax()
but if i look at my backend i don't see Fax anywhere in the addresses
Anyone any idea if there is a setting or something to enable/disable that field?
Even though i do find that field in the database and i can SetFax()
that field
magento2 address
add a comment |
When you save a customers address trough API you have the option to GetFax()
and SetFax()
but if i look at my backend i don't see Fax anywhere in the addresses
Anyone any idea if there is a setting or something to enable/disable that field?
Even though i do find that field in the database and i can SetFax()
that field
magento2 address
When you save a customers address trough API you have the option to GetFax()
and SetFax()
but if i look at my backend i don't see Fax anywhere in the addresses
Anyone any idea if there is a setting or something to enable/disable that field?
Even though i do find that field in the database and i can SetFax()
that field
magento2 address
magento2 address
asked Sep 24 '17 at 18:25
SwAt.BeSwAt.Be
1,365624
1,365624
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
Fax, Telephone, company, these all fields are exist there but when set their value ("optional", "required") why they are not showing up on form? please help!!!
New contributor
add a comment |
It is disable in database, to enable it run the following sql command
UPDATE `customer_eav_attribute` SET `is_visible` = '1' WHERE `customer_eav_attribute`.`attribute_id` = 35;
note: 35 is attribute id of Fax.
there is no option to set Fax filed in configurations
the attribute ID is not always 35. And i know how to edit the EAV attributes in the database but this is not best practice nor a solution. Thanks for the effort but can not stress enough to other people reading this then they can not run this query unless they know how the EAV attribute tables work
– SwAt.Be
May 2 '18 at 4:04
@SwAt.Be If you have fixed this please then share the solution.
– Waqar
May 2 '18 at 10:03
sure i will give it
– SwAt.Be
May 2 '18 at 12:25
add a comment |
Go to Configuration->Customers->Customer Configuration->Name and Address Options and set 'Show Fax' To optional or Required
There is no such option to set "Fax" filed exist in configurations
– Waqar
May 4 '18 at 6:37
It does exist. Mr downvote. A nice big circle for you. Now check your Magento version. Update it and ssht
– SwAt.Be
May 4 '18 at 13:03
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "479"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f194514%2ffax-field-not-showing%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
Fax, Telephone, company, these all fields are exist there but when set their value ("optional", "required") why they are not showing up on form? please help!!!
New contributor
add a comment |
Fax, Telephone, company, these all fields are exist there but when set their value ("optional", "required") why they are not showing up on form? please help!!!
New contributor
add a comment |
Fax, Telephone, company, these all fields are exist there but when set their value ("optional", "required") why they are not showing up on form? please help!!!
New contributor
Fax, Telephone, company, these all fields are exist there but when set their value ("optional", "required") why they are not showing up on form? please help!!!
New contributor
New contributor
answered 12 mins ago
IshikaIshika
1
1
New contributor
New contributor
add a comment |
add a comment |
It is disable in database, to enable it run the following sql command
UPDATE `customer_eav_attribute` SET `is_visible` = '1' WHERE `customer_eav_attribute`.`attribute_id` = 35;
note: 35 is attribute id of Fax.
there is no option to set Fax filed in configurations
the attribute ID is not always 35. And i know how to edit the EAV attributes in the database but this is not best practice nor a solution. Thanks for the effort but can not stress enough to other people reading this then they can not run this query unless they know how the EAV attribute tables work
– SwAt.Be
May 2 '18 at 4:04
@SwAt.Be If you have fixed this please then share the solution.
– Waqar
May 2 '18 at 10:03
sure i will give it
– SwAt.Be
May 2 '18 at 12:25
add a comment |
It is disable in database, to enable it run the following sql command
UPDATE `customer_eav_attribute` SET `is_visible` = '1' WHERE `customer_eav_attribute`.`attribute_id` = 35;
note: 35 is attribute id of Fax.
there is no option to set Fax filed in configurations
the attribute ID is not always 35. And i know how to edit the EAV attributes in the database but this is not best practice nor a solution. Thanks for the effort but can not stress enough to other people reading this then they can not run this query unless they know how the EAV attribute tables work
– SwAt.Be
May 2 '18 at 4:04
@SwAt.Be If you have fixed this please then share the solution.
– Waqar
May 2 '18 at 10:03
sure i will give it
– SwAt.Be
May 2 '18 at 12:25
add a comment |
It is disable in database, to enable it run the following sql command
UPDATE `customer_eav_attribute` SET `is_visible` = '1' WHERE `customer_eav_attribute`.`attribute_id` = 35;
note: 35 is attribute id of Fax.
there is no option to set Fax filed in configurations
It is disable in database, to enable it run the following sql command
UPDATE `customer_eav_attribute` SET `is_visible` = '1' WHERE `customer_eav_attribute`.`attribute_id` = 35;
note: 35 is attribute id of Fax.
there is no option to set Fax filed in configurations
edited May 4 '18 at 6:39
answered Apr 30 '18 at 5:49
WaqarWaqar
544616
544616
the attribute ID is not always 35. And i know how to edit the EAV attributes in the database but this is not best practice nor a solution. Thanks for the effort but can not stress enough to other people reading this then they can not run this query unless they know how the EAV attribute tables work
– SwAt.Be
May 2 '18 at 4:04
@SwAt.Be If you have fixed this please then share the solution.
– Waqar
May 2 '18 at 10:03
sure i will give it
– SwAt.Be
May 2 '18 at 12:25
add a comment |
the attribute ID is not always 35. And i know how to edit the EAV attributes in the database but this is not best practice nor a solution. Thanks for the effort but can not stress enough to other people reading this then they can not run this query unless they know how the EAV attribute tables work
– SwAt.Be
May 2 '18 at 4:04
@SwAt.Be If you have fixed this please then share the solution.
– Waqar
May 2 '18 at 10:03
sure i will give it
– SwAt.Be
May 2 '18 at 12:25
the attribute ID is not always 35. And i know how to edit the EAV attributes in the database but this is not best practice nor a solution. Thanks for the effort but can not stress enough to other people reading this then they can not run this query unless they know how the EAV attribute tables work
– SwAt.Be
May 2 '18 at 4:04
the attribute ID is not always 35. And i know how to edit the EAV attributes in the database but this is not best practice nor a solution. Thanks for the effort but can not stress enough to other people reading this then they can not run this query unless they know how the EAV attribute tables work
– SwAt.Be
May 2 '18 at 4:04
@SwAt.Be If you have fixed this please then share the solution.
– Waqar
May 2 '18 at 10:03
@SwAt.Be If you have fixed this please then share the solution.
– Waqar
May 2 '18 at 10:03
sure i will give it
– SwAt.Be
May 2 '18 at 12:25
sure i will give it
– SwAt.Be
May 2 '18 at 12:25
add a comment |
Go to Configuration->Customers->Customer Configuration->Name and Address Options and set 'Show Fax' To optional or Required
There is no such option to set "Fax" filed exist in configurations
– Waqar
May 4 '18 at 6:37
It does exist. Mr downvote. A nice big circle for you. Now check your Magento version. Update it and ssht
– SwAt.Be
May 4 '18 at 13:03
add a comment |
Go to Configuration->Customers->Customer Configuration->Name and Address Options and set 'Show Fax' To optional or Required
There is no such option to set "Fax" filed exist in configurations
– Waqar
May 4 '18 at 6:37
It does exist. Mr downvote. A nice big circle for you. Now check your Magento version. Update it and ssht
– SwAt.Be
May 4 '18 at 13:03
add a comment |
Go to Configuration->Customers->Customer Configuration->Name and Address Options and set 'Show Fax' To optional or Required
Go to Configuration->Customers->Customer Configuration->Name and Address Options and set 'Show Fax' To optional or Required
edited May 4 '18 at 13:02
answered May 2 '18 at 12:27
SwAt.BeSwAt.Be
1,365624
1,365624
There is no such option to set "Fax" filed exist in configurations
– Waqar
May 4 '18 at 6:37
It does exist. Mr downvote. A nice big circle for you. Now check your Magento version. Update it and ssht
– SwAt.Be
May 4 '18 at 13:03
add a comment |
There is no such option to set "Fax" filed exist in configurations
– Waqar
May 4 '18 at 6:37
It does exist. Mr downvote. A nice big circle for you. Now check your Magento version. Update it and ssht
– SwAt.Be
May 4 '18 at 13:03
There is no such option to set "Fax" filed exist in configurations
– Waqar
May 4 '18 at 6:37
There is no such option to set "Fax" filed exist in configurations
– Waqar
May 4 '18 at 6:37
It does exist. Mr downvote. A nice big circle for you. Now check your Magento version. Update it and ssht
– SwAt.Be
May 4 '18 at 13:03
It does exist. Mr downvote. A nice big circle for you. Now check your Magento version. Update it and ssht
– SwAt.Be
May 4 '18 at 13:03
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f194514%2ffax-field-not-showing%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
var $window = $(window),
onScroll = function(e) {
var $elem = $('.new-login-left'),
docViewTop = $window.scrollTop(),
docViewBottom = docViewTop + $window.height(),
elemTop = $elem.offset().top,
elemBottom = elemTop + $elem.height();
if ((docViewTop elemBottom)) {
StackExchange.using('gps', function() { StackExchange.gps.track('embedded_signup_form.view', { location: 'question_page' }); });
$window.unbind('scroll', onScroll);
}
};
$window.on('scroll', onScroll);
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown