OwlCyberSecurity - MANAGER
Edit File: site-assistant-tour.js
import { __ } from '@wordpress/i18n'; export default { slug: 'site-assistant-tour', title: __('Take a welcome tour', 'extendify-local'), description: __( 'Learn about the key features of the Site Assistant.', 'extendify-local', ), buttonLabels: { completed: __('Restart', 'extendify-local'), notCompleted: __('Start', 'extendify-local'), }, type: 'tour', dependencies: { goals: [], plugins: [] }, show: ({ plugins, goals, activePlugins, userGoals }) => { if (!plugins.length && !goals.length) return true; return activePlugins .concat(userGoals) .some((item) => plugins.concat(goals).includes(item)); }, backgroundImage: 'https://assets.extendify.com/assist-tasks/welcome-tour.webp', };