Skip to content

magento man

How do you create a custom cron job in Magento 2 and ensure it executes only once per cycle?

Here crontab.xml file <config xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:module:Magento_Cron:etc/crontab.xsd”> <group id=”default”> <job name=”vendor_module_cronjob” instance=”VendorModuleCronCustomJob” method=”execute”> <schedule>* * * * *</schedule> </job> </group> </config> Here CustomJob.php file <?php namespace VendorModuleCron; use PsrLogLoggerInterface; class CustomJob { protected $logger; public function __construct(LoggerInterface $logger) { $this->logger =… Read More »How do you create a custom cron job in Magento 2 and ensure it executes only once per cycle?

Is smarthost.net Florida datacenter down?

Hello. I am a long time smarthost.net customer and always had good experience with them. Today my website went down and my ip’s became unres… | Read the rest of https://www.webhostingtalk.com/showthread.php?t=1928784&goto=newpost

is polarismail down?

I can’t access their control panel, or support. The emails arent working. Am I the only one experiencing this issue right now?… | Read the rest of https://www.webhostingtalk.com/showthread.php?t=1928731&goto=newpost

hyva checkout and mollie payment combination

I have installed hyva / hyva onestep checkout and mollie + mollie/magento2-hyva-checkout so hyva compatibility extension. The design still shows up as old hyva onestep checkout instead of more beautiful mollie . what could be an issue?

Unable to override theme layout block

I am trying to override theme layout block. Layout is on path: app/design/frontend/Codazon/unlimited/default/Magento_Catalog/layout/catalog_category_view.xml Theme is adding its custom block in content container. <?xml version=”1.0″?> <page xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:framework:View/Layout/etc/page_configuration.xsd”> <body> <referenceContainer name=”content”> <block class=”MagentoFrameworkViewElementTemplate” name=”cdz-cat-layout-config” template=”Magento_Catalog::category/cat-layout-config.phtml” after=”-” /> </referenceContainer> </body> </page> Now,… Read More »Unable to override theme layout block