Search results

  1. C

    How to hide the Add to Cart button in Magento 2?

    How to hide the Add to Cart button in Magento 2? Install and enable the Hide Price extension. Navigate to Stores > Configuration > Hide Price. In the Hide Price Options section, set the Hide Add to Cart field to Yes. Complete other settings if needed. Save the changes. How to hide the price in...
  2. C

    Call for Price for magento 2 AMASTY

    Replace the price with flexible options. Place a link with redirection or an image instead of the button. Select the group of customers and particular categories to display the 'Call for price' button to. Easily engage customers into more activity, asking to sign up and provide more feedback...
  3. C

    How to integrate product video in magento 2 using youtube

    Adding Product Video To add product video, you must first obtain an API Key from your Google account and enter it in the configuration of your store. Then, you can link to the video from the product. Step 1: Get your YouTube API key Log in to your Google account and visit the Google...
  4. C

    basic commands for magento installation

    basic commands php bin/magento indexer:reindex php bin/magento setup:upgrade php bin/magento setup:static-content:deploy -f php bin/magento cache:clean php bin/magento cache:flush
  5. C

    Basic Requirements for installing magento 2 in localhost

    Requirement: xampp-windows-x64-7.2.33-0-VC15-installer elasticsearch-7.15.2-windows-x86_64 Composer-Setup Magento-CE-2.3.3_sample_data-2019-09-26-04-40-18
  6. C

    installation problem solved for magento 2.3.3

    vendor/magento/framework/View/Element/Template/File/Validator.php B. Search the following line if (0 === strpos($realPath, $directory)) { return true; } C. Replace the content with the following lines. $realDirectory = $this->fileDriver->getRealPath($directory); if (0 ===...
  7. C

    Basic Command lines for magento 2.3.3 installation

    Command lines php bin/magento indexer:reindex php bin/magento setup:upgrade php bin/magento setup:static-content:deploy -f php bin/magento cache:clean php bin/magento cache:flush
  8. C

    Amasty extension : how to get and disable product reviews in Magento 2?

    Magento 2 native product reviews functionality To enable product reviews for your Magento 2 store: Go to Stores > Settings > Configuration. Open the Catalog tab and choose the Catalog option. Navigate to the Product Reviews section and set Yes in the Enabled and Allow Guests to Write Reviews...
  9. C

    Problem "Your session has expired" when click on add to cart in magento 2.3

    UPDATE `core_config_data` SET `value` = 'http://127.0.0.1/my/clothes/' WHERE `core_config_data`.`path` = 'web/unsecure/base_url'; UPDATE `core_config_data` SET `value` = 'http://127.0.0.1/my/clothes/' WHERE `core_config_data`.`path` = 'web/secure/base_url'; after that run command in your...
  10. C

    clearing the cache and installing the payment module

    This problem comes from the Mage module. You should disable this module from your project php bin/magento module:disable Mage_Customer Or alternatively, you can put debug in the file /app/code/core/Mage/Customer/Model/Observer.php so you can find out the reason for the error in this file
  11. C

    Which is better: WooCommerce or Magento?

    Benefits of WooCommerce So what are some of the advantages of using WooCommerce? What makes this e-commerce platform stand out from the rest in the world of online shopping? Let’s take a look. Price: Perhaps one of the greatest things about WooCommerce is that it is completely free. This is...
  12. C

    Your session has expired” On Clicking Add To Cart In Magento 2.3 Localhost

    change in core_config_data file in phpmyadmin panel 1 2 UPDATE core_config_data SET value = 'http://127.0.0.1/sample/' WHERE core_config_data.path = 'web/unsecure/base_url'; UPDATE core_config_data SET value = 'http://127.0.0.1/sample/' WHERE core_config_data.path = 'web/secure/base_url';
  13. C

    how to install magento 2.4.1 in localhost

    nstall Magento 2.4.1 on Windows 10 using Composer and Command line Localhost XAMPP Ok, Let's go... 1. Download Install XAMPP and Composer 2. Install Elasticsearch & run and test Ok E:\xampp\htdocs\elasticsearch\bin\elasticsearch.bat http://localhost:9200/ do not turn off elasticsearch...
  14. C

    How to install magento 2.3.3 with sample data in localhost

    ---------------------------------------------------------------------- Requirement: xampp-windows-x64-7.2.33-0-VC15-installer elasticsearch-7.15.2-windows-x86_64 Composer-Setup Magento-CE-2.3.3_sample_data-2019-09-26-04-40-18...
Top