Error during setup:di:compile

I am in developer mode and I get the below error while running setup:di:compile command. The logs also show the same error. I don’t know if anyone has encountered such an error. Magento 2.4.5-p1. In Generator.php line 140: ​ Class “MagentoCatalogBlockProductData” does not exist Class MagentoCatalogBlockProductAbstractProductsInterceptor generation error: The requested class did not generate properly, …

Adobe Summit

I’ll be attending Adobe Summit and would love to do a little Reddit meetup. If you are interested, post a comment and send me a DM. We can determine a time and place. I’d love to share our experiences on the event and talk a little shop. lmk submitted by /u/roland_of_g [link] [comments]

Seeking a skilled Magento developer (Philippines)

Seeking a skilled Magento developer for a remote freelance project to upgrade our website from M1 to M2. Experience with both versions, customizing add-ons, and creating custom coding solutions required. Please send a private message with your Github link for more details. submitted by /u/QuickWizards [link] [comments]

Firebear Studio

We use Firebear Studio to import new items into Magento. In the spreadsheet, there is a field called configurable_variations where you specify a mapping of SKUs and item attributes like size and color. Here is an example: sku=BC11-ADT-BG,ns_color=BLACK – GRAY,ns_size=ADULT|sku=BC11-ADT-BLK,ns_color=BLACK,ns_size=ADULT|sku=BC11-ADT-GG,ns_color=GRAY – GRAY,ns_size=ADULT|sku=BC11-ADT-GRY,ns_color=GRAY,ns_size=ADULT The problem is that some of our sizes and color use a pipe …

TypeError: Illegal offset type in isset or empty

when trying to export to CSV, i get TypeError: Illegal offset type in isset or empty in vendor/magento/module-ui/Model/Export/MetadataProvider.php:174 line 174 is if (isset($options[$column][$key])) { public function getRowData(DocumentInterface $document, $fields, $options): array { $row = []; foreach ($fields as $column) { if (isset($options[$column])) { $key = $document->getCustomAttribute($column)->getValue(); if (isset($options[$column][$key])) { $row[] = $options[$column][$key]; } else { …

When to use Extension Attributes instead of Custom Attributes?

It seems that both Custom Attributes and Extension Attributes can be used to add fields to entities. What should a developer consider when choosing between the two? It seems that Custom Attribute fields may just “appear” on the backend, but will not just “appear” on the frontend in Magento Open Source. But they can be …