Freelancing is tough, even overwhelming. We dive into four practical reasons why aspiring and current freelancers should join a community. Continue reading 4 Reasons Why You Should Join A Freelancing Community on SitePoint.
Daily Archives: November 17, 2023
State of the art Using a custom type for the page builder, i’m generating this html <div class="gamme-content"> <h3 data-element="title">Discover our others products !</h3> <p data-element="category_list">2,1</p> </div> From this template <!--master.html--> <div attr="data.main.attributes" ko-style="data.main.style" css="data.main.css" > <div class="gamme-content"> <h3 attr="data.title.attributes" html="data.title.html"></h3> <p attr="data.category_list.attributes" html="data.category_list.html"></p> </div> </div> The 2 and 1 […]
I’m using Magento 2.4.6. When I try to access $request->getAllItems() it returns an empty array. Also, I’m trying with Quote and the same result. public function collectRates(RateRequest $request) // NOSONAR { if (!$this->getConfigFlag('active')) { return false; } $this->_logger->info('COLLECT RATES 0 '. json_encode($request->toArray())); $this->_logger->info('COLLECT RATES 1 '. json_encode($this->_quote->getAllVisibleItems())); $this->_logger->info('COLLECT RATES 2 […]
I am using third party extension. I want to add the Page-builder editor instead of the WYSIWYG editor in the adminhtml form. Can anyone help? Check the current code, want to display pagebuilder in the admin form.
I created in the Magento2 backend a newsletter campaign and it will be sent to 6000 subscribers. In my server there is a sending limit at 2000 emails per day. Can I set the limit on Magento2 not to send more than 2000 emails per day? I remember on Magento1 […]
We’re running Magento version 2.4.5-p1 and utilizing the Braintree payment gateway for both credit card and Paypal transactions. Our concern is that when a customer attempts to place an order and the transaction fails due to insufficient funds, there is no error message being displayed at checkout. According to our […]
I’ve also checked with systemd-analyze pcrs if PCRs are the same at every reboot, and they are. Only at first reboot I don’t know why the only PCRs that change are 8,9,10 lol(I don’t know why)… but in next reboots they are always the same, so it shouldn’t prompt me […]
When traveling, I want to transfer RAW files from my camera (on CFExpress cards) to an external SSD (as a backup). Due to limited space, I am not taking a laptop with me, but only a tablet. The following hardware will be used: CFExpress card: Angelbird AV Pro SE (read: […]
I need to Connect-ExchangeOnline without a browser. I would use the -Credential parameter, but the help says: Don't use this parameter for accounts that use multi-factor authentication (MFA). I can do the following, but it still requires interactive use to enter the password. Connect-ExchangeOnline -InlineCredential -UserPrincipalName jdoe@myco.com How can I […]