On my Magento Website, I apply product schema markup in my website but Why My Review Snippet is not showing in Google SERP for my website result? give some suggestion
Magento
This code has worked to hide and show the payment method based on the shipping address country. public function execute(MagentoFrameworkEventObserver $observer) { //shipping company field $shippingCompanyField = $this->cart->getQuote()->getShippingAddress()->getCountryId(); $paymentMethod = $observer->getEvent()->getMethodInstance()->getCode(); if ($shippingCompanyField == 'IN') { if ($paymentMethod == "multisafepay_giropay") { $checkResult = $observer->getEvent()->getResult(); $checkResult->setData('is_available', false); } }else{ if ($paymentMethod […]
Version Magento 2.4.5-p2 I have 20 plus orders in the last few months that the shipping address is incorrect after the order is placed. Talking with affected customers, they are positive the screen is displaying the addresses correctly before they click “Place Order”. I’ve been tracking the order details to […]
I’m actually on Magento CE version 2.4.1 I need to update it to 2.4.6 (latest version) I’m in live (I don’t have a staging enviroment) Is there someone who can guide me step to step in upgrading? Really really thanks
Problem is, that SEO tools tell us, we have duplicate content with Home Page URL and Home Page URL with country code. www.XYZ.com www.XYZ.com/de/ What is the easiest and most pragmatic solution to solve this? Other store views ok as per www.XYZ.com/en/ www.XYZ.com/es/ and country code needed to added. But […]
We currently have two slider images in porto theme homepage slider and we would like to add an extra slider clickable image only. below is our current code for the two sliders: Where should we insert a third slider clickable image? <div class="porto-ibanner" style="min-height: 500px;"> <img src="{{media url=wysiwyg/smartwave/porto/homepage/14/shop14_home_slider2.jpg}}" /> <div […]
I run magento community edition 2.3.2 on ubuntu 16.04 I would like to upgrade magento there in order to migrate to a newer ubuntu server and there upgrade to the latest magento version. In the magento root folder I try to: sudo php -d memory_limit=-1 /usr/bin/composer update “–no-plugins” and I […]
I like to use the plain size data as text swatch in the size attribute. This size data is available in the admin fields. We have to many articles to enter the swatch data manualy. I know there are some similar questions and answers. Those answers are bases on special […]
What is a correct way to implement dependency injection for adding ext_order_id in existing order using its increment_id? I need to include it in existing php script of 3rd party module…