Magento 2.3 How to get Quote Data on product detail pageMagento 2: How to override newsletter Subscriber modelWhy Getting categories and names on product view page Magento 2 fails?How to use Context object to get config valuesMagento 2.1 Create a filter in the product grid by new attributeMagento 2: Add a product to the cart programmaticallyMagento 2.3 Can't view module's front end page output?Magento 2 How to remove price filter from category if module is enable?Magento 2.3 email attachment not working while sending custom email
Is there a better way to use C# dictionaries than TryGetValue?
Why did Starhopper's exhaust plume become brighter just before landing?
Fantasy Macro Economics: What would Merfolk trade for?
Did the Apollo Guidance Computer really use 60% of the world's ICs in 1963?
bash: Replace single quote by two quotes in string
Are sweatpants frowned upon on flights?
Stolen MacBook should I worry about my data?
Should I ask for a raise one month before the end of an internship?
Normalized Malbolge to Malbolge translator
Drawing probabilities on a simplex in TikZ
Pen test results for web application include a file from a forbidden directory that is not even used or referenced
Why can't you say don't instead of won't?
What is Soda Fountain Etiquette?
How many petaflops does it take to land on the moon? What does Artemis need with an Aitken?
What is the sound/audio equivalent of "unsightly"?
Find most "academic" implementation of doubly linked list
Looking for a plural noun related to ‘fulcrum’ or ‘pivot’ that denotes multiple things as crucial to success
What is the name of this plot that has rows with two connected dots?
Is there any problem with a full installation on a USB drive?
Find feasible point in polynomial time in linear programming
How to say "I only speak one language which is English" in French?
How to prevent a hosting company from accessing a VM's encryption keys?
Was the six engine Boeing-747 ever thought about?
How did medieval manors handle population growth? Were there room for more fields to be ploughed?
Magento 2.3 How to get Quote Data on product detail page
Magento 2: How to override newsletter Subscriber modelWhy Getting categories and names on product view page Magento 2 fails?How to use Context object to get config valuesMagento 2.1 Create a filter in the product grid by new attributeMagento 2: Add a product to the cart programmaticallyMagento 2.3 Can't view module's front end page output?Magento 2 How to remove price filter from category if module is enable?Magento 2.3 email attachment not working while sending custom email
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
i want to get this quote data on product page but that not return any data ... only return below array instead of all quote data
On other page it working fine issue only on product page.
array(4)
["is_checkout_cart"]=>
bool(true)
["store_id"]=>
int(1)
["remote_ip"]=>
string(15) "106.201.234.169"
["x_forwarded_for"]=>
NULL
Here is my code
<?php
namespace VendorBaseHelper;
use MagentoFrameworkAppHelperAbstractHelper;
use MagentoFrameworkAppHelperContext;
use MagentoStoreModelScopeInterface;
use MagentoCheckoutModelSession;
class Data extends AbstractHelper
protected $scopeConfig;
protected $session;
protected $priceHelper;
public function __construct(Context $context,Session $session,MagentoFrameworkPricingHelperData $priceHelper)
parent::__construct($context);
$this->scopeConfig = $context->getScopeConfig();
$this->session=$session;
$this->priceHelper=$priceHelper;
public function getCheckoutData()
$data_array=array();
$checkout_data=$this->session->getQuote();
var_dump($checkout_data->getData());exit;
anyone have idea whats wrong in my code?
magento2 cart quote custom-quote
add a comment |
i want to get this quote data on product page but that not return any data ... only return below array instead of all quote data
On other page it working fine issue only on product page.
array(4)
["is_checkout_cart"]=>
bool(true)
["store_id"]=>
int(1)
["remote_ip"]=>
string(15) "106.201.234.169"
["x_forwarded_for"]=>
NULL
Here is my code
<?php
namespace VendorBaseHelper;
use MagentoFrameworkAppHelperAbstractHelper;
use MagentoFrameworkAppHelperContext;
use MagentoStoreModelScopeInterface;
use MagentoCheckoutModelSession;
class Data extends AbstractHelper
protected $scopeConfig;
protected $session;
protected $priceHelper;
public function __construct(Context $context,Session $session,MagentoFrameworkPricingHelperData $priceHelper)
parent::__construct($context);
$this->scopeConfig = $context->getScopeConfig();
$this->session=$session;
$this->priceHelper=$priceHelper;
public function getCheckoutData()
$data_array=array();
$checkout_data=$this->session->getQuote();
var_dump($checkout_data->getData());exit;
anyone have idea whats wrong in my code?
magento2 cart quote custom-quote
$this->session->getQuote()->getAllVisibleItems()
– Rk Rathod
Aug 16 at 11:00
getData nor returing anything so $this->session->getQuote()->getAllVisibleItems() so how this return items???
– Navin Bhudiya
Aug 16 at 11:06
print only $checkout_data or $checkout->getAllVisibleItems() and check
– Rk Rathod
Aug 16 at 11:21
not working i try all ways this issue only on product page not on other page... i just want to print some data on product page.... on other page all working
– Navin Bhudiya
Aug 16 at 11:23
add a comment |
i want to get this quote data on product page but that not return any data ... only return below array instead of all quote data
On other page it working fine issue only on product page.
array(4)
["is_checkout_cart"]=>
bool(true)
["store_id"]=>
int(1)
["remote_ip"]=>
string(15) "106.201.234.169"
["x_forwarded_for"]=>
NULL
Here is my code
<?php
namespace VendorBaseHelper;
use MagentoFrameworkAppHelperAbstractHelper;
use MagentoFrameworkAppHelperContext;
use MagentoStoreModelScopeInterface;
use MagentoCheckoutModelSession;
class Data extends AbstractHelper
protected $scopeConfig;
protected $session;
protected $priceHelper;
public function __construct(Context $context,Session $session,MagentoFrameworkPricingHelperData $priceHelper)
parent::__construct($context);
$this->scopeConfig = $context->getScopeConfig();
$this->session=$session;
$this->priceHelper=$priceHelper;
public function getCheckoutData()
$data_array=array();
$checkout_data=$this->session->getQuote();
var_dump($checkout_data->getData());exit;
anyone have idea whats wrong in my code?
magento2 cart quote custom-quote
i want to get this quote data on product page but that not return any data ... only return below array instead of all quote data
On other page it working fine issue only on product page.
array(4)
["is_checkout_cart"]=>
bool(true)
["store_id"]=>
int(1)
["remote_ip"]=>
string(15) "106.201.234.169"
["x_forwarded_for"]=>
NULL
Here is my code
<?php
namespace VendorBaseHelper;
use MagentoFrameworkAppHelperAbstractHelper;
use MagentoFrameworkAppHelperContext;
use MagentoStoreModelScopeInterface;
use MagentoCheckoutModelSession;
class Data extends AbstractHelper
protected $scopeConfig;
protected $session;
protected $priceHelper;
public function __construct(Context $context,Session $session,MagentoFrameworkPricingHelperData $priceHelper)
parent::__construct($context);
$this->scopeConfig = $context->getScopeConfig();
$this->session=$session;
$this->priceHelper=$priceHelper;
public function getCheckoutData()
$data_array=array();
$checkout_data=$this->session->getQuote();
var_dump($checkout_data->getData());exit;
anyone have idea whats wrong in my code?
magento2 cart quote custom-quote
magento2 cart quote custom-quote
edited Aug 16 at 11:38
Navin Bhudiya
asked Aug 16 at 10:55
Navin BhudiyaNavin Bhudiya
1,0281 gold badge13 silver badges28 bronze badges
1,0281 gold badge13 silver badges28 bronze badges
$this->session->getQuote()->getAllVisibleItems()
– Rk Rathod
Aug 16 at 11:00
getData nor returing anything so $this->session->getQuote()->getAllVisibleItems() so how this return items???
– Navin Bhudiya
Aug 16 at 11:06
print only $checkout_data or $checkout->getAllVisibleItems() and check
– Rk Rathod
Aug 16 at 11:21
not working i try all ways this issue only on product page not on other page... i just want to print some data on product page.... on other page all working
– Navin Bhudiya
Aug 16 at 11:23
add a comment |
$this->session->getQuote()->getAllVisibleItems()
– Rk Rathod
Aug 16 at 11:00
getData nor returing anything so $this->session->getQuote()->getAllVisibleItems() so how this return items???
– Navin Bhudiya
Aug 16 at 11:06
print only $checkout_data or $checkout->getAllVisibleItems() and check
– Rk Rathod
Aug 16 at 11:21
not working i try all ways this issue only on product page not on other page... i just want to print some data on product page.... on other page all working
– Navin Bhudiya
Aug 16 at 11:23
$this->session->getQuote()->getAllVisibleItems()
– Rk Rathod
Aug 16 at 11:00
$this->session->getQuote()->getAllVisibleItems()
– Rk Rathod
Aug 16 at 11:00
getData nor returing anything so $this->session->getQuote()->getAllVisibleItems() so how this return items???
– Navin Bhudiya
Aug 16 at 11:06
getData nor returing anything so $this->session->getQuote()->getAllVisibleItems() so how this return items???
– Navin Bhudiya
Aug 16 at 11:06
print only $checkout_data or $checkout->getAllVisibleItems() and check
– Rk Rathod
Aug 16 at 11:21
print only $checkout_data or $checkout->getAllVisibleItems() and check
– Rk Rathod
Aug 16 at 11:21
not working i try all ways this issue only on product page not on other page... i just want to print some data on product page.... on other page all working
– Navin Bhudiya
Aug 16 at 11:23
not working i try all ways this issue only on product page not on other page... i just want to print some data on product page.... on other page all working
– Navin Bhudiya
Aug 16 at 11:23
add a comment |
2 Answers
2
active
oldest
votes
Try to use this below code :
protected $_checkoutSession;
public function __construct (
MagentoCheckoutModelSession $_checkoutSession
)
$this->_checkoutSession = $_checkoutSession;
public function execute()
$cartData = $this->_checkoutSession->getQuote()->getAllVisibleItems();
echo count($cartData); //Return count value of quote object
For temporary :
Do cacheable=false in your layout file and check it.
Still, I do not recommend to use this.
getData nor returing anything so $this->session->getQuote()->getAllVisibleItems() so how this return items??? please read question proper and answerer
– Navin Bhudiya
Aug 16 at 11:07
1
Just for temporery, do cacheable=false in your layout block and check output.
– Rohan Hapani
Aug 16 at 11:40
add this into answere it working fine after set cache false
– Navin Bhudiya
Aug 16 at 11:45
It's done......!!
– Rohan Hapani
Aug 16 at 11:48
1
Happy to help !! Happy coding :) You can now accept answer. So, it will helpful for other also.
– Rohan Hapani
Aug 16 at 11:49
add a comment |
Try This :-
Using MagentoCheckoutModelCart :-
protected $cart;
public function __construct (
MagentoCheckoutModelCart $cart
)
$this->cart = $cart;
public function execute()
// retrieve quote items collection
$itemsCollection = $this->cart->getQuote()->getItemsCollection();
// get array of all items what can be display directly
$itemsVisible = $this->cart->getQuote()->getAllVisibleItems();
// retrieve quote items array
$items = $this->cart->getQuote()->getAllItems();
foreach($items as $item)
echo 'ID: '.$item->getProductId().'<br />';
echo 'Name: '.$item->getName().'<br />';
echo 'Sku: '.$item->getSku().'<br />';
echo 'Quantity: '.$item->getQty().'<br />';
echo 'Price: '.$item->getPrice().'<br />';
echo "<br />";
this is also not working
– Navin Bhudiya
Aug 16 at 11:29
any error in log file ??
– Rk Rathod
Aug 16 at 11:29
no it just return array(4) ["is_checkout_cart"]=> bool(true) ["store_id"]=> int(1) ["remote_ip"]=> string(15) "106.201.234.169" ["x_forwarded_for"]=> NULL
– Navin Bhudiya
Aug 16 at 11:31
i think any other issue create this probleam
– Rk Rathod
Aug 16 at 11:34
issue only on product page not on other pages... same thins are working on other pages
– Navin Bhudiya
Aug 16 at 11:37
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%2f285624%2fmagento-2-3-how-to-get-quote-data-on-product-detail-page%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Try to use this below code :
protected $_checkoutSession;
public function __construct (
MagentoCheckoutModelSession $_checkoutSession
)
$this->_checkoutSession = $_checkoutSession;
public function execute()
$cartData = $this->_checkoutSession->getQuote()->getAllVisibleItems();
echo count($cartData); //Return count value of quote object
For temporary :
Do cacheable=false in your layout file and check it.
Still, I do not recommend to use this.
getData nor returing anything so $this->session->getQuote()->getAllVisibleItems() so how this return items??? please read question proper and answerer
– Navin Bhudiya
Aug 16 at 11:07
1
Just for temporery, do cacheable=false in your layout block and check output.
– Rohan Hapani
Aug 16 at 11:40
add this into answere it working fine after set cache false
– Navin Bhudiya
Aug 16 at 11:45
It's done......!!
– Rohan Hapani
Aug 16 at 11:48
1
Happy to help !! Happy coding :) You can now accept answer. So, it will helpful for other also.
– Rohan Hapani
Aug 16 at 11:49
add a comment |
Try to use this below code :
protected $_checkoutSession;
public function __construct (
MagentoCheckoutModelSession $_checkoutSession
)
$this->_checkoutSession = $_checkoutSession;
public function execute()
$cartData = $this->_checkoutSession->getQuote()->getAllVisibleItems();
echo count($cartData); //Return count value of quote object
For temporary :
Do cacheable=false in your layout file and check it.
Still, I do not recommend to use this.
getData nor returing anything so $this->session->getQuote()->getAllVisibleItems() so how this return items??? please read question proper and answerer
– Navin Bhudiya
Aug 16 at 11:07
1
Just for temporery, do cacheable=false in your layout block and check output.
– Rohan Hapani
Aug 16 at 11:40
add this into answere it working fine after set cache false
– Navin Bhudiya
Aug 16 at 11:45
It's done......!!
– Rohan Hapani
Aug 16 at 11:48
1
Happy to help !! Happy coding :) You can now accept answer. So, it will helpful for other also.
– Rohan Hapani
Aug 16 at 11:49
add a comment |
Try to use this below code :
protected $_checkoutSession;
public function __construct (
MagentoCheckoutModelSession $_checkoutSession
)
$this->_checkoutSession = $_checkoutSession;
public function execute()
$cartData = $this->_checkoutSession->getQuote()->getAllVisibleItems();
echo count($cartData); //Return count value of quote object
For temporary :
Do cacheable=false in your layout file and check it.
Still, I do not recommend to use this.
Try to use this below code :
protected $_checkoutSession;
public function __construct (
MagentoCheckoutModelSession $_checkoutSession
)
$this->_checkoutSession = $_checkoutSession;
public function execute()
$cartData = $this->_checkoutSession->getQuote()->getAllVisibleItems();
echo count($cartData); //Return count value of quote object
For temporary :
Do cacheable=false in your layout file and check it.
Still, I do not recommend to use this.
edited Aug 16 at 11:48
answered Aug 16 at 11:03
Rohan HapaniRohan Hapani
8,9884 gold badges21 silver badges66 bronze badges
8,9884 gold badges21 silver badges66 bronze badges
getData nor returing anything so $this->session->getQuote()->getAllVisibleItems() so how this return items??? please read question proper and answerer
– Navin Bhudiya
Aug 16 at 11:07
1
Just for temporery, do cacheable=false in your layout block and check output.
– Rohan Hapani
Aug 16 at 11:40
add this into answere it working fine after set cache false
– Navin Bhudiya
Aug 16 at 11:45
It's done......!!
– Rohan Hapani
Aug 16 at 11:48
1
Happy to help !! Happy coding :) You can now accept answer. So, it will helpful for other also.
– Rohan Hapani
Aug 16 at 11:49
add a comment |
getData nor returing anything so $this->session->getQuote()->getAllVisibleItems() so how this return items??? please read question proper and answerer
– Navin Bhudiya
Aug 16 at 11:07
1
Just for temporery, do cacheable=false in your layout block and check output.
– Rohan Hapani
Aug 16 at 11:40
add this into answere it working fine after set cache false
– Navin Bhudiya
Aug 16 at 11:45
It's done......!!
– Rohan Hapani
Aug 16 at 11:48
1
Happy to help !! Happy coding :) You can now accept answer. So, it will helpful for other also.
– Rohan Hapani
Aug 16 at 11:49
getData nor returing anything so $this->session->getQuote()->getAllVisibleItems() so how this return items??? please read question proper and answerer
– Navin Bhudiya
Aug 16 at 11:07
getData nor returing anything so $this->session->getQuote()->getAllVisibleItems() so how this return items??? please read question proper and answerer
– Navin Bhudiya
Aug 16 at 11:07
1
1
Just for temporery, do cacheable=false in your layout block and check output.
– Rohan Hapani
Aug 16 at 11:40
Just for temporery, do cacheable=false in your layout block and check output.
– Rohan Hapani
Aug 16 at 11:40
add this into answere it working fine after set cache false
– Navin Bhudiya
Aug 16 at 11:45
add this into answere it working fine after set cache false
– Navin Bhudiya
Aug 16 at 11:45
It's done......!!
– Rohan Hapani
Aug 16 at 11:48
It's done......!!
– Rohan Hapani
Aug 16 at 11:48
1
1
Happy to help !! Happy coding :) You can now accept answer. So, it will helpful for other also.
– Rohan Hapani
Aug 16 at 11:49
Happy to help !! Happy coding :) You can now accept answer. So, it will helpful for other also.
– Rohan Hapani
Aug 16 at 11:49
add a comment |
Try This :-
Using MagentoCheckoutModelCart :-
protected $cart;
public function __construct (
MagentoCheckoutModelCart $cart
)
$this->cart = $cart;
public function execute()
// retrieve quote items collection
$itemsCollection = $this->cart->getQuote()->getItemsCollection();
// get array of all items what can be display directly
$itemsVisible = $this->cart->getQuote()->getAllVisibleItems();
// retrieve quote items array
$items = $this->cart->getQuote()->getAllItems();
foreach($items as $item)
echo 'ID: '.$item->getProductId().'<br />';
echo 'Name: '.$item->getName().'<br />';
echo 'Sku: '.$item->getSku().'<br />';
echo 'Quantity: '.$item->getQty().'<br />';
echo 'Price: '.$item->getPrice().'<br />';
echo "<br />";
this is also not working
– Navin Bhudiya
Aug 16 at 11:29
any error in log file ??
– Rk Rathod
Aug 16 at 11:29
no it just return array(4) ["is_checkout_cart"]=> bool(true) ["store_id"]=> int(1) ["remote_ip"]=> string(15) "106.201.234.169" ["x_forwarded_for"]=> NULL
– Navin Bhudiya
Aug 16 at 11:31
i think any other issue create this probleam
– Rk Rathod
Aug 16 at 11:34
issue only on product page not on other pages... same thins are working on other pages
– Navin Bhudiya
Aug 16 at 11:37
add a comment |
Try This :-
Using MagentoCheckoutModelCart :-
protected $cart;
public function __construct (
MagentoCheckoutModelCart $cart
)
$this->cart = $cart;
public function execute()
// retrieve quote items collection
$itemsCollection = $this->cart->getQuote()->getItemsCollection();
// get array of all items what can be display directly
$itemsVisible = $this->cart->getQuote()->getAllVisibleItems();
// retrieve quote items array
$items = $this->cart->getQuote()->getAllItems();
foreach($items as $item)
echo 'ID: '.$item->getProductId().'<br />';
echo 'Name: '.$item->getName().'<br />';
echo 'Sku: '.$item->getSku().'<br />';
echo 'Quantity: '.$item->getQty().'<br />';
echo 'Price: '.$item->getPrice().'<br />';
echo "<br />";
this is also not working
– Navin Bhudiya
Aug 16 at 11:29
any error in log file ??
– Rk Rathod
Aug 16 at 11:29
no it just return array(4) ["is_checkout_cart"]=> bool(true) ["store_id"]=> int(1) ["remote_ip"]=> string(15) "106.201.234.169" ["x_forwarded_for"]=> NULL
– Navin Bhudiya
Aug 16 at 11:31
i think any other issue create this probleam
– Rk Rathod
Aug 16 at 11:34
issue only on product page not on other pages... same thins are working on other pages
– Navin Bhudiya
Aug 16 at 11:37
add a comment |
Try This :-
Using MagentoCheckoutModelCart :-
protected $cart;
public function __construct (
MagentoCheckoutModelCart $cart
)
$this->cart = $cart;
public function execute()
// retrieve quote items collection
$itemsCollection = $this->cart->getQuote()->getItemsCollection();
// get array of all items what can be display directly
$itemsVisible = $this->cart->getQuote()->getAllVisibleItems();
// retrieve quote items array
$items = $this->cart->getQuote()->getAllItems();
foreach($items as $item)
echo 'ID: '.$item->getProductId().'<br />';
echo 'Name: '.$item->getName().'<br />';
echo 'Sku: '.$item->getSku().'<br />';
echo 'Quantity: '.$item->getQty().'<br />';
echo 'Price: '.$item->getPrice().'<br />';
echo "<br />";
Try This :-
Using MagentoCheckoutModelCart :-
protected $cart;
public function __construct (
MagentoCheckoutModelCart $cart
)
$this->cart = $cart;
public function execute()
// retrieve quote items collection
$itemsCollection = $this->cart->getQuote()->getItemsCollection();
// get array of all items what can be display directly
$itemsVisible = $this->cart->getQuote()->getAllVisibleItems();
// retrieve quote items array
$items = $this->cart->getQuote()->getAllItems();
foreach($items as $item)
echo 'ID: '.$item->getProductId().'<br />';
echo 'Name: '.$item->getName().'<br />';
echo 'Sku: '.$item->getSku().'<br />';
echo 'Quantity: '.$item->getQty().'<br />';
echo 'Price: '.$item->getPrice().'<br />';
echo "<br />";
answered Aug 16 at 11:27
Rk RathodRk Rathod
3,0774 silver badges26 bronze badges
3,0774 silver badges26 bronze badges
this is also not working
– Navin Bhudiya
Aug 16 at 11:29
any error in log file ??
– Rk Rathod
Aug 16 at 11:29
no it just return array(4) ["is_checkout_cart"]=> bool(true) ["store_id"]=> int(1) ["remote_ip"]=> string(15) "106.201.234.169" ["x_forwarded_for"]=> NULL
– Navin Bhudiya
Aug 16 at 11:31
i think any other issue create this probleam
– Rk Rathod
Aug 16 at 11:34
issue only on product page not on other pages... same thins are working on other pages
– Navin Bhudiya
Aug 16 at 11:37
add a comment |
this is also not working
– Navin Bhudiya
Aug 16 at 11:29
any error in log file ??
– Rk Rathod
Aug 16 at 11:29
no it just return array(4) ["is_checkout_cart"]=> bool(true) ["store_id"]=> int(1) ["remote_ip"]=> string(15) "106.201.234.169" ["x_forwarded_for"]=> NULL
– Navin Bhudiya
Aug 16 at 11:31
i think any other issue create this probleam
– Rk Rathod
Aug 16 at 11:34
issue only on product page not on other pages... same thins are working on other pages
– Navin Bhudiya
Aug 16 at 11:37
this is also not working
– Navin Bhudiya
Aug 16 at 11:29
this is also not working
– Navin Bhudiya
Aug 16 at 11:29
any error in log file ??
– Rk Rathod
Aug 16 at 11:29
any error in log file ??
– Rk Rathod
Aug 16 at 11:29
no it just return array(4) ["is_checkout_cart"]=> bool(true) ["store_id"]=> int(1) ["remote_ip"]=> string(15) "106.201.234.169" ["x_forwarded_for"]=> NULL
– Navin Bhudiya
Aug 16 at 11:31
no it just return array(4) ["is_checkout_cart"]=> bool(true) ["store_id"]=> int(1) ["remote_ip"]=> string(15) "106.201.234.169" ["x_forwarded_for"]=> NULL
– Navin Bhudiya
Aug 16 at 11:31
i think any other issue create this probleam
– Rk Rathod
Aug 16 at 11:34
i think any other issue create this probleam
– Rk Rathod
Aug 16 at 11:34
issue only on product page not on other pages... same thins are working on other pages
– Navin Bhudiya
Aug 16 at 11:37
issue only on product page not on other pages... same thins are working on other pages
– Navin Bhudiya
Aug 16 at 11:37
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%2f285624%2fmagento-2-3-how-to-get-quote-data-on-product-detail-page%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
$this->session->getQuote()->getAllVisibleItems()
– Rk Rathod
Aug 16 at 11:00
getData nor returing anything so $this->session->getQuote()->getAllVisibleItems() so how this return items???
– Navin Bhudiya
Aug 16 at 11:06
print only $checkout_data or $checkout->getAllVisibleItems() and check
– Rk Rathod
Aug 16 at 11:21
not working i try all ways this issue only on product page not on other page... i just want to print some data on product page.... on other page all working
– Navin Bhudiya
Aug 16 at 11:23