# extendify/3.1.2/src/Assist/tasks/domain-recommendation.js

Extendify, version 3.1.2. 25 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.1.2/code/src/Assist/tasks/domain-recommendation.js
- Raw: https://pluginprobe.com/plugins/extendify/3.1.2/raw/src/Assist/tasks/domain-recommendation.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.2/code/src/Assist/tasks/domain-recommendation.js#L10-L20`.

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

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

export default {
	slug: 'domain-recommendation',
	title: __('Choose your domain', 'extendify-local'),
	innerTitle: __('Claim your domain', 'extendify-local'),
	description: __('Claim the perfect domain for your site.', 'extendify-local'),
	buttonLabels: {
		completed: __('Register this domain', 'extendify-local'),
		notCompleted: __('Register this domain', 'extendify-local'),
	},
	type: 'domain-task',
	dependencies: { plugins: [] },
	show: ({ showDomainTask }) => {
		// They need either extendable or launch completed
		if (themeSlug !== 'extendable' && !launchCompleted) return false;
		return showDomainTask;
	},
	backgroundImage:
		'https://images.extendify-cdn.com/assist-tasks/domains-recommendations.webp',
};

```
