Magento 2 Hide Price for Guest Extension - User Guide

Note:

If you are using the Hyvä theme, you must install both the main package and the Hyvä package. If you are using Luma or any other theme, you only need to install the main package.

Configurations

At the back end, go to FME EXTENSIONS > Configurations. Here You can find the following settings:

PRODUCT HIDE PRICE

  • Hide Price: Enable or disable the hide price module.
  • Hide from Groups: Restrict price visibility for specific customer groups.
  • Hide Add to Cart: Enable or disable the "Add to Cart" button.
  • Hide Product Category Price: Choose categories where the price will be hidden for guest users.
  • Hide Product Category Add to Cart: Choose categories where the "Add to Cart" button will be hidden.
  • Start Date Price: Set a specific start date to hide the price.
  • End Date Price: Set an end date to display the price again.
  • Start Date Cart: Set a specific start date to hide the "Add to Cart" button.
  • End Date Cart: Set an end date to display the "Add to Cart" button again.
  • Alternate Text for Add to Cart Button: Specify alternate text to display instead of the "Add to Cart" button.
  • Hide Store Products Add to Cart: Restrict the "Add to Cart" option by store views.

configurations.png

Frontend

frontend.jpg

GraphQL APIs

  • Product Query

Query

{
 products(search: "bag", pageSize: 2) {
   items {
     id
     name
     sku
   fme_guest_hide_price_content {
       hide_price
       hide_add_to_cart
       hide_price_text
       hide_add_to_cart_text
       hide_price_alert {
           status
           title
           description
       }
   }
   }
 }
}

Response

{
   "data": {
       "products": {
           "items": [
               {
                   "id": 8,
                   "name": "Voyage Yoga Bag",
                   "sku": "24-WB01",
                   "fme_guest_hide_price": {
                       "minimum_price": {
                           "regular_price": {
                               "value": null,
                               "currency": null
                           },
                           "final_price": {
                               "value": null,
                               "currency": null
                           }
                       }
                   },
               {
                   "id": 1,
                   "name": "Joust Duffle Bag",
                   "sku": "24-MB01",
                   "fme_guest_hide_price_content": {
                       "hide_price": true,
                       "hide_add_to_cart": false,
                       "hide_price_text": "Price text",
                       "hide_add_to_cart_text": "Cart text",
                       "hide_price_alert": {
                           "status": true,
                           "title": "Title here",
                           "description": "Description here !!"
                       }
                   }
               }
           ]
       }
   }
}
  • Configurations For Alternate Text

unnamed.png

Compatible with 2.1.x, 2.2.x, 2.3.x, 2.4.1, 2.4.2, 2.4.3, 2.4.4, 2.4.5, 2.4.6, 2.4.7
69.99 Community
$269.99 Enterprise