I’m using magento 1.9. Is there a way to make certain products only available to specific customer groups? If this is not possible with the basic system, is there a free extension that handles that?
Daily Archives: January 28, 2023
I have a strange issue on Magento 2.4.5-p1 on production (on dev I don’t get the issue) When I send a request e.g.: query { storeConfig { store_code code locale secure_base_media_url store_name newsletter_enabled } } I expect a response like: { "data": { "storeConfig": { "store_code": "default", ... but in […]
I have a plugin for the afterSetCollection method, which is hung on the MagentoCatalogBlockProductProductListToolbar -> setCollection method. But for some reason, sorting occurs by the price, color and others fields, but by the field in the discount model object, sorting does not occur. But nevertheless, products with this filtering parameter […]
Create a custom module for Magento 2 where it needs to validate billing mobile numbers as per Indian standards, where it doesn’t allow more than 10 digits including 0
I am getting HTTP ERROR 500 error on the frontend and this error in error logs : [2023-01-27T16:23:35.766286+00:00] main.CRITICAL: Exception: Deprecated Functionality: Creation of dynamic property MagentoFrameworkErrorProcessor::$_errorDir is deprecated in /var/www/html/pub/errors/processor.php on line 171 in /var/www/html/vendor/magento/framework/App/ErrorHandler.php:62
Given two numbers X and Y. the task is to find the number N (N ≤ 10^18) which satisfies these two conditions: (N + X)… Read More The post Find the number N, where (N+X) divisible by Y and (N-Y) divisible by X appeared first on GeeksforGeeks.
Creating self-string using special characters in JavaScript is a useful technique for adding unique and dynamic elements to your code. In this article, we will… Read More The post How to create self string using special characters? appeared first on GeeksforGeeks.
Variables are the building blocks of any programming language. In JavaScript, a variable can be used to store reusable values. These values can be anything… Read More The post JavaScript Variables appeared first on GeeksforGeeks.
Here, we will discuss and learn about the syntax error in node.js and how we can handle these syntax errors, because when we are using… Read More The post How to handle syntax errors in Node.js ? appeared first on GeeksforGeeks.