The Adobe Commerce table that stores all cron job data iscron_schedule. This table maintains records of all scheduled cron tasks, including their statuses, execution times, and any messages related to their execution. It plays a central role in Magento's scheduling system, allowing for the management and monitoring of background tasks that are essential for various system functions and integrations.
Question 2
How can a custom CMS Page be set as a store home page?
Options:
A.
In the CMS Page admin grid, select the checkbox for the page under the "Home Page' column.
B.
In the CMS Page admin form, set the 'Default Home Page" value to "yes"
C.
In the store configuration, set a custom CMS Page to be a CMS home page
Answer:
C
Explanation:
Explanation:
To set a custom CMS Page as a store home page, the developer or merchant should follow these steps:
In the Admin panel, go to Content > Pages and create or edit a CMS Page that will be used as a home page.
In the Admin panel, go to Stores > Configuration > General > Web > Default Pages.
In the CMS Home Page field, select the CMS Page that was created or edited in step 1.
Save the configuration.
There is no “Home Page” column in the CMS Page admin grid or “Default Home Page” value in the CMS Page admin form.
Verified References: [Adobe Commerce User Guide - Set up your home page]
In Adobe Commerce, to set a custom CMS page as the store's homepage, you need to go to the store configuration. Specifically, navigate to Content > Design > Configuration, select therelevant store view, and then under the "Default Pages" tab, set the "CMS Home Page" option to your custom CMS page. Options A and B do not exist in the Adobe Commerce admin panel for setting a home page.
Question 3
A developer needs to extend the existing jQuery widget. Which jQuery function is used for this purpose?
Options:
A.
$.mage
B.
$.ui
C.
$.widget
Answer:
C
Explanation:
Explanation:
To extend an existing jQuery widget in Adobe Commerce, the$.widgetfunction is used. This function is part of jQuery UI's widget factory and is a powerful tool for creating stateful plugins with a consistent API. It allows developers to create a new widget that inherits from an existing widget, enhancing or modifying its functionality, making option C the correct answer.