Skip to content

magento man

Insert content in product page

I need to insert (via my payment module) html element (div) somewhere (for example under Add to cart button) at product page view. Should I use event/observer, or maybe there is something other? Greetings

WHMCS + 365

Hi all, Has anyone managed to get 365 SMTP to function within WHMCS? Always getting authentication failed. Thanks… | Read the rest of https://www.webhostingtalk.com/showthread.php?t=1875447&goto=newpost

Magento 2 Cookie not able to clear from JS

I am unable to clear the cookie on my Magento site. I am setting the cookie as below which is done successfully use MagentoFrameworkStdlibCookieCookieMetadataFactory; use MagentoFrameworkStdlibCookieManagerInterface; $publicCookieMetadata = $this->cookieMetadataFactory->createPublicCookieMetadata(); $publicCookieMetadata->setPath(‘/’); $publicCookieMetadata->setHttpOnly(false); $publicCookieMetadata->setSameSite(‘Strict’); $this->cookieManager->setPublicCookie( self::COOKIE_NAME, 1, $publicCookieMetadata ); After that, I… Read More »Magento 2 Cookie not able to clear from JS