how to find out where customer subscribed to newsletter from?Is there a way to check whether a GUEST customer has subscribed to newsletter, in that particular session?Exporting Segmented Subscribed Newsletter CustomersCannot subscribe email newsletter to second storeview: email already exists1.9 RWD Remove Newsletter from FooterRemove extra sign up newsletter checkbox on one step checkoutHow to add content to newsletter/manage/ page from XML in Magento 1Checkout page - Check if guest is already subscribed to NewsletterHow to customize message in Newsletter subscribe if user already subscribedHow to set customer subscribed to newsletter by customer idHow to use customer attribute for the not logged in customer (Guest Customer)?
Can a Beholder use rays in melee range?
Is healing by fire possible?
Should I disclose a colleague's illness (that I should not know about) when others badmouth him
Canon 70D often overexposing or underexposing shots
What is the object moving across the ceiling in this stock footage?
Why without the JSON.parse method, I can't sort the data in lightning-datatable?
I think I may have violated academic integrity last year - what should I do?
What are the benefits of cryosleep?
Can a wire having a 610-670 THz (frequency of blue light) AC frequency supply, generate blue light?
When do characters level up?
How to prevent bad sectors?
Is there a way to make it so the cursor is included when I prtscr key?
How to capture more stars?
Integrating an absolute function using Mathematica
How to convert to standalone document a matrix table
How many chess players are over 2500 Elo?
Under what law can the U.S. arrest International Criminal Court (ICC) judges over war crimes probe?
Logarithm of dependent variable is uniformly distributed. How to calculate a confidence interval for the mean?
Why colon to denote that a value belongs to a type?
How bitcoin nodes update UTXO set when their latests blocks are replaced?
How can I get exact maximal value of this expression?
General purpose replacement for enum with FlagsAttribute
Would jet fuel for an F-16 or F-35 be producible during WW2?
Infinite Sequence based on Simple Rule
how to find out where customer subscribed to newsletter from?
Is there a way to check whether a GUEST customer has subscribed to newsletter, in that particular session?Exporting Segmented Subscribed Newsletter CustomersCannot subscribe email newsletter to second storeview: email already exists1.9 RWD Remove Newsletter from FooterRemove extra sign up newsletter checkbox on one step checkoutHow to add content to newsletter/manage/ page from XML in Magento 1Checkout page - Check if guest is already subscribed to NewsletterHow to customize message in Newsletter subscribe if user already subscribedHow to set customer subscribed to newsletter by customer idHow to use customer attribute for the not logged in customer (Guest Customer)?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
Is there anyway to find out where the customer sign up to newsletter from.
i know the default way of subscribing is footer, but i am using the exact same way in different page also at checkout.
Is there any way to find out where they subscribed from.
customer newsletter customer-session newsletter-subscriber
add a comment |
Is there anyway to find out where the customer sign up to newsletter from.
i know the default way of subscribing is footer, but i am using the exact same way in different page also at checkout.
Is there any way to find out where they subscribed from.
customer newsletter customer-session newsletter-subscriber
add a comment |
Is there anyway to find out where the customer sign up to newsletter from.
i know the default way of subscribing is footer, but i am using the exact same way in different page also at checkout.
Is there any way to find out where they subscribed from.
customer newsletter customer-session newsletter-subscriber
Is there anyway to find out where the customer sign up to newsletter from.
i know the default way of subscribing is footer, but i am using the exact same way in different page also at checkout.
Is there any way to find out where they subscribed from.
customer newsletter customer-session newsletter-subscriber
customer newsletter customer-session newsletter-subscriber
asked May 21 at 15:28
jibin georgejibin george
488
488
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Within standard Magento 2 OOTB there is not really an option like that, if you will run: DESCRIBE newsletter_subscriber
It gives this, the standard table:
- subscriber_id
- store_id
- change_status_at
- customer_id
- subscriber_email
- subscriber_status
- subscriber_confirm_code
So no data available in DB to answer your question. The way to address your need would be for example to implement GTM and relevant tag fired upon each Newsletter Registration form and passing to GTM data like: who, when and from which page executed the registration to Newsletter.
hi @ Piotr Siejczuk thank you for that
– jibin george
May 21 at 15:39
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');
);
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%2f275506%2fhow-to-find-out-where-customer-subscribed-to-newsletter-from%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Within standard Magento 2 OOTB there is not really an option like that, if you will run: DESCRIBE newsletter_subscriber
It gives this, the standard table:
- subscriber_id
- store_id
- change_status_at
- customer_id
- subscriber_email
- subscriber_status
- subscriber_confirm_code
So no data available in DB to answer your question. The way to address your need would be for example to implement GTM and relevant tag fired upon each Newsletter Registration form and passing to GTM data like: who, when and from which page executed the registration to Newsletter.
hi @ Piotr Siejczuk thank you for that
– jibin george
May 21 at 15:39
add a comment |
Within standard Magento 2 OOTB there is not really an option like that, if you will run: DESCRIBE newsletter_subscriber
It gives this, the standard table:
- subscriber_id
- store_id
- change_status_at
- customer_id
- subscriber_email
- subscriber_status
- subscriber_confirm_code
So no data available in DB to answer your question. The way to address your need would be for example to implement GTM and relevant tag fired upon each Newsletter Registration form and passing to GTM data like: who, when and from which page executed the registration to Newsletter.
hi @ Piotr Siejczuk thank you for that
– jibin george
May 21 at 15:39
add a comment |
Within standard Magento 2 OOTB there is not really an option like that, if you will run: DESCRIBE newsletter_subscriber
It gives this, the standard table:
- subscriber_id
- store_id
- change_status_at
- customer_id
- subscriber_email
- subscriber_status
- subscriber_confirm_code
So no data available in DB to answer your question. The way to address your need would be for example to implement GTM and relevant tag fired upon each Newsletter Registration form and passing to GTM data like: who, when and from which page executed the registration to Newsletter.
Within standard Magento 2 OOTB there is not really an option like that, if you will run: DESCRIBE newsletter_subscriber
It gives this, the standard table:
- subscriber_id
- store_id
- change_status_at
- customer_id
- subscriber_email
- subscriber_status
- subscriber_confirm_code
So no data available in DB to answer your question. The way to address your need would be for example to implement GTM and relevant tag fired upon each Newsletter Registration form and passing to GTM data like: who, when and from which page executed the registration to Newsletter.
edited May 21 at 15:41
answered May 21 at 15:35
Piotr SiejczukPiotr Siejczuk
32016
32016
hi @ Piotr Siejczuk thank you for that
– jibin george
May 21 at 15:39
add a comment |
hi @ Piotr Siejczuk thank you for that
– jibin george
May 21 at 15:39
hi @ Piotr Siejczuk thank you for that
– jibin george
May 21 at 15:39
hi @ Piotr Siejczuk thank you for that
– jibin george
May 21 at 15:39
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');
);
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%2f275506%2fhow-to-find-out-where-customer-subscribed-to-newsletter-from%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');
);
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');
);
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');
);
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