# extendify/3.1.1/src/Assist/tasks/update-site-description.js

Extendify, version 3.1.1. 27 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.1.1/code/src/Assist/tasks/update-site-description.js
- Raw: https://pluginprobe.com/plugins/extendify/3.1.1/raw/src/Assist/tasks/update-site-description.js
- Modified: 2025-08-27T13:47:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/3.1.1/code/src/Assist/tasks/update-site-description.js#L10-L20`.

```javascript
import { __ } from '@wordpress/i18n';

const { themeSlug } = window.extSharedData;
const { launchCompleted } = window.extAssistData;

export default {
	slug: 'site-description',
	title: __('Add a site description', 'extendify-local'),
	description: __(
		'In a few words, explain what your site is about.',
		'extendify-local',
	),
	buttonLabels: {
		completed: __('Change', 'extendify-local'),
		notCompleted: __('Add', 'extendify-local'),
	},
	type: 'modal',
	dependencies: { plugins: [] },
	show: () => {
		if (themeSlug === 'extendable') return true;
		if (launchCompleted) return true;
		return false;
	},
	backgroundImage:
		'https://images.extendify-cdn.com/assist-tasks/upload-logo.webp',
};

```
