I have a problem with category images taking more time to appear on the home page
I have a problem with category images taking more time to appear on the home page
I have a problem with category images taking more time to appear on the home page
I want to make one of customer attributes not required I run the below code, but it doesn’t work public function upgrade(ModuleDataSetupInterface $setup, ModuleContextInterface $context) { $customerSetup = $this->customerSetupFactory->create([‘setup’ => $setup]); $customerSetup->addAttribute( MagentoCustomerModelCustomer::ENTITY, ‘trade_license’, [ ‘required’ => false ] );… Read More »Updating custom customer attribute
I’m considering moving infrastructure providers from OVHCloud, I have a really short list of providers I’ve been looking at, some I’ve had a… | Read the rest of https://www.webhostingtalk.com/showthread.php?t=1906830&goto=newpost
Hi everyone, This is a heads up to all who are using A2 Hosting. I have hosting with them too. Recently, one of my websites was corrupted… | Read the rest of https://www.webhostingtalk.com/showthread.php?t=1906841&goto=newpost
I making a promo on Magento 2.4.5 Like buy any specific 5 products and get 1 free. We have products having FPT on them. I want to add this FPT product to cart with 0 price and 0 FPT when… Read More »Add Product to cart with 0 price and remove FPT from this product Magento 2.4.5
I want to Use Captcha / Recaptcha in my Graphql APIs I got this link for protected mutations It only shows to insert it in headers but it won’t do anything in Graphql apis and for rest apis it gives… Read More »How to use Magento2 Recaptcha in GraphQl APIs
I have a controller that is called by ajax in the cart page. A gift card amount is passed to the controller and a function then updates the quote grand total based on that amount. protected function applyGiftCard($giftCardCode, $giftCardSecurityCode, $giftCardAmount):… Read More »Magento 2 – How can I update the cart summary totals when quote grand total is modified
In magento admin order details page the print button for order is missing (see sample image). It was there before but suddenly it got missing. Does anyone have any idea why that could happen? It does not show that for… Read More »Magento 2 – Print button is missing in admin order details
Lets assume a custom page builder content type with a text attribute representing a link In master.html I’m already retrieving the following attributes <!–master.html–> <<div attr=”data.main.attributes” ko-style=”data.main.style” css=”data.main.css” > <div class=”homebanner-content”> <h3 attr=”data.title.attributes” html=”data.title.html”></h3> <p attr=”data.description.attributes” html=”data.description.html”></p> <a href=” <div… Read More »Render link attribute in custom page builder content type
I have this code for showing if my product is in stock or not. <?php /* @var $block MagentoCatalogBlockProductViewAbstractView */?> <?php $_product = $block->getProduct() ?> <?php $stockstate = MagentoFrameworkAppObjectManager::getInstance()- >get(‘MagentoInventorySalesApiApiGetProductSalableQtyInterface’); $sale_qty = $stockstate->execute($_product->getSku(), 1); ?> <?php if ($block->displayProductStockStatus()): ?> <?php… Read More »Magento 2 show current stock for salable quantity on productpage