I am going to buy a new laptop and I am planning to have Linux Ubuntu and Windows 10 in dual boot on this new laptop. Does anybody have any recommendation regarding the laptop configuration appropriate for Ubuntu and Window 10 dual boot? Thanks in advance for any ideas.
Blog
I have a script that is currently working. There are two groups that need to be omitted from the CSV that is exported. As it currently sits it works. see below: Import-Csv -Path .importactiveusers.csv | ForEach-Object{ $user = get-aduser -Identity $_.samaccountname -Properties name, samaccountname, memberof $( if ($user.memberof.count -gt 1) […]
Autofill Region name in existing address when we are adding new address in customer address book section i am using magento2.2.6, in that magento, if any customer have many existing address in there address book then admin click on new address button and fill value from auto fill chrome functionality […]
I’m trying to update Stock Qty for a Magento Product. I either create a new product or update an existing product with the same call. I do it like this: if ($product->getQty() !== ($productData['inventory'] ?? 0)) { $stockItem = $product->getStockItem(); $stockItem->assignProduct($product)->setData([ 'qty' => $productData['inventory'] ?? 0, 'is_in_stock' => 1, 'use_config_manage_stock' […]
I’m trying to display second image of a product in a category page on hover. I managed to get images by $_product->getMediaGalleryImages() but I have problems with resizing them to category_page_grid or category_page_list size. My question is: how can I resize those images to default category page image size or […]
I really wanna have the same feature like this. Magento 2 – How to display the quantity of each product in cart under the add to cart button in the product tile But I can’t find the correct solution. It should be changed although when I reload the page and […]
Preconditions (*) 1. Magento/product-community-edition 2.3.4 2. PHP 7.3 3. ionCube 10.3.9 Summary (*) When I’m using ionCube Encoder for encoding of custom modules then Magento not generating classes correctly. I have few type of errors. When I trying to extent MagentoFrameworkDBAdapterPdoMysql public function query($sql, $bind = []) { ... then […]