Current File : //home/mdkeenpw/www/wp-content/plugins/extendify/src/Assist/tasks/setup-woocommerce-store.js |
import { __ } from '@wordpress/i18n';
const { themeSlug } = window.extSharedData;
const { launchCompleted } = window.extAssistData;
export default {
slug: 'setup-woocommerce-store',
title: __('Set up your eCommerce store', 'extendify-local'),
description: __(
'Set up WooCommerce to start selling on your website.',
'extendify-local',
),
link: 'admin.php?page=wc-admin&path=%2Fsetup-wizard',
buttonLabels: {
notCompleted: __('Set up', 'extendify-local'),
completed: __('Revisit', 'extendify-local'),
},
type: 'internalLink',
dependencies: { plugins: ['woocommerce'] },
show: ({ plugins, activePlugins }) => {
// They need either extendable or launch completed
if (themeSlug !== 'extendable' && !launchCompleted) return false;
if (!plugins.length) return true;
return activePlugins.some((item) => plugins.includes(item));
},
backgroundImage:
'https://images.extendify-cdn.com/assist-tasks/woocommerce.webp',
};