Skip to content

ViewContent meta Pixel is not displaying in PDP Page

We are using below code from this github extension for tracking meta facebook pixel events in our Magento PWA Venia Site. $product = $this->registry->registry(‘current_product’); if ($product && $product->getId()) { $customData[‘value’] = $this->_magentoDataHelper->getValueForProduct($product); $customData[‘content_ids’] = [$product->getId()]; $customData[‘content_category’] = $this->_magentoDataHelper->getCategoriesForProduct($product); $customData[‘content_name’] =… Read More »ViewContent meta Pixel is not displaying in PDP Page

Jquery not triggering for the change(function())

jQuery(‘input[name^=”ko_unique_”]’).trigger(“change”); jQuery(‘input[name^=”ko_unique_”]’).change(function() { var v = jQuery(this).val(); console.log(v); if(v == ‘simpleshipping_simpleshipping’){ console.log(‘check’); jQuery(‘#deliv-hold’).show(); } else{ jQuery(‘#deliv-hold’).hide(); } }); The above-mentioned code is working fine on the console but when it is used in js. it does not execute after the… Read More »Jquery not triggering for the change(function())

I am getting “You are not authorized to view this page” error while checking out to Cybersource payment gateway in Magento 2

I am using Magento 2.2.6 Enterprise edition. In that when a user checkout to order an item, the system is throwing the error (403 Forbidden) “You are not authorized to view this page. The transaction has not been processed” This… Read More »I am getting “You are not authorized to view this page” error while checking out to Cybersource payment gateway in Magento 2

upgrading from magento2.2.5 to 2.3.5 I’m facing this issue

I’m upgrading from magento2.2.5 to 2.3.5 I’m facing this issue PHP Fatal error: Uncaught Error: Class ‘MagentoFrameworkComponentComponentRegistrar’ not found in app/code/<Vendor>/<ModuleName>/registration.php file <?php MagentoFrameworkComponentComponentRegistrar::register( MagentoFrameworkComponentComponentRegistrar::MODULE, ‘Vendor_Module’, __DIR__ ); can anyone please help me.

Checkout parameters not passing to google analytics dashboard

We used below code in Magento PWA venia setup to pass the checkout values to Google analytics dashbaord. const proceedToCheckoutButton = !isCheckout ? ( <div > <Button disabled={isPriceUpdating} priority={‘high’} onClick={() => { handleProceedToCheckout(); GTMEventTrigger({ route: window.location.pathname, event(‘proceed_checkout’, { “total_items” :… Read More »Checkout parameters not passing to google analytics dashboard