I want to know from users what is the expected cost for Magento Commerce Module at start and annually after that. Registration and licenses included. I’m working on a grocery retail project and am comparing Magento Commerce v/s Open source. submitted by /u/shamswasim [link] [comments]
Author Archives: Team
Integrate Magento with azure devops
Hi, I want to work the magento cloud modules separately using azure devops. Is this possible to do? submitted by /u/rider_js [link] [comments]
[Survey] Researching agency/merchant-side views on third party extensions
I’m currently researching what developers and SIs are looking for when integrating 3rd-party extensions. If you’re agency or merchant side, and have a spare few minutes to help out answering some survey questions, that would be awesome. I’ll be writing up and sharing the findings later in the year. https://forms.gle/6cRXHg9smR4wncDU9 submitted by /u/dajve [link] [comments]
[Question] Recommended ecommerce analytics tool for Magento
What’s a great analytics tool for Magento? We are looking at Glew but some unsavory reports on Twitter are making us want to consider others as well Ideally something that integrates with Amazon Seller Central would be best as we do a lot of sales on Amazon India as well submitted by /u/stuli1989 [link] [comments]
How to create custom ITEM status in Magento 2?
We know there’s the ability to create custom status at the order level in M2, but what about custom status at the item level in M2? The use-case here is that we have a multi-item order Item A is immediately processed and fulfilled from stock. No need for custom item status. Item B, however, is …
Continue reading “How to create custom ITEM status in Magento 2?”
Edit Magento Page HTML/CSS in VSCode
Is it good practice to log into my Magento server with magento user and edit my page HTML/CSS in an external editor like VSCode ? submitted by /u/Unimegistus [link] [comments]
Best Order Tracking Extension for Magento 2?
Does anyone have recommendations for an Order Tracking extension for Magento 2? Something simple, with a couple of form fields (email and order number) to complete, and then if it’s valid and a match in our order database, we’d present them with their order status. We’re currently getting inundated with “Where’s my order” inquiries from …
Continue reading “Best Order Tracking Extension for Magento 2?”
how to make product images show as WEBP images?
I tried the Yireo extension but it makes pages take long time to load. I tried adding mod_pagespeed to Apache and hoping to use the filter to convert jpg to webp but it doesnt convert, dunno why. any ideas? submitted by /u/SpiritedBad0 [link] [comments]
Deploy multiple themes without a single tag for each one
I want to deploy 3 themes, but this may change and I would like to pass them to my CICD script via an argument. Is there anyway to specify the 3 themes or do I need to do –theme T1 –theme T2 –theme T3 Every single time? submitted by /u/FireFausto [link] [comments]
Show custom block on product page?
Hello, I’m trying to show a custom block on the product page with this module: Vendor/Module/view/frontend/layout/catalog_product_view.xml <?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> <referenceBlock name=”product.info”> <block class=”VendorModuleBlockCatalogProductView” name=”catalog.product.view.extrablock” as=”extra_options” before=”product.info.form.options” template=”Vendor_Module::catalog/product/view.phtml”/> </referenceBlock> </body> </page> Vendor/Module/view/frontend/templates/catalog/product/view/view.phtml <h2> TEST </h2> Vendor/Module/Block/Catalog/Product/View/View.php <?php namespace VendorModuleBlockCatalogProduct; use MagentoCatalogBlockProductContext; use MagentoCatalogBlockProductAbstractProduct; class View extends AbstractProduct { public function __construct(Context $context, array …
NEW to Magento need help
I recently started working as an analyst for a company that uses magento 2 CE. I want to learn magento better and be able to implement changes/optimize the site overall. I am not a developer but I want to be able to make small changes/ be able to guide the developers better. My biggest issues …
How to implement homepage minicart qty increment and decrement option?
I want to implement the qty increment and decrement option in the mini cart on the homepage. I tried this, not working https://meetanshi.com/blog/add-quantity-increment-and-decrement-button-in-magento-2/?unapproved=12212&moderation-hash=67c05f28c69d8e1e5b4ac1ce368ab272#comment-12212 submitted by /u/aveeva7 [link] [comments]
LiteMage – Yay or Nay
Context – We are developing a store with ~8500 SKUs at launch and another 5000 SKUs which are going to get uploaded over the next couple of months. Our current store gets around 1k-2k visitors a day depending on seasonality and ~50 orders a day but these are both numbers we look to boost once …
Magenti automation / integration
Let’s say I need to create a node script that scrapes/updates my Magento store with product info/stock from a partner vendor. What is the best way to do it, that is, where should I put my node or python script ? Is there any convention to do that ? Is that in any way related …