Search

Showing 7 of 1,975 result(s)

/meerkat/licensing#content-development-trial-access

Meerkat is free to use locally during official beta and testing periods. Meerkat may also be used locally during the development process of your site without a license key.

/meerkat/licensing#content-supported-statamic-versions

The development of Meerkat 3 will target the latest Statamic release. Meerkat 1 for Statamic 2 and Meerkat 2 for Statamic 3 are no longer officially supported.

/meerkat/managing-comments#content-unpublishing-comments

Comments may be un-published from the Control Panel by selecting the "Unpublish" option below the comment's content. By default, unpublished comments are not displayed to your site's visitors.

/site-essentials-for-statamic/v1/general-metadata#content-description

The description method queues a <meta name="description" content"..."> tag. By default it binds to the $meta_description variable. 1 <?php 2   3 use Stillat\StatamicSiteEssentials\Support\Facades\Metadata ; 4   5 // Adjusting the returned...

/site-essentials-for-statamic/v1/general-metadata#content-keywords

The keywords method queues a <meta name="keywords" content="..."> tag. By default it binds to the $meta_keywords variable. 1 <?php 2   3 use Stillat\StatamicSiteEssentials\Support\Facades\Metadata ; 4   5 // Adjusting the returned variable. 6...

/site-essentials-for-statamic/v1/general-metadata#content-canonical-link

The canonical method queues a <link rel="canonical" href="..."> meta tag. By default it binds to the $meta_canonical variable. 1 <?php 2   3 use Stillat\StatamicSiteEssentials\Support\Facades\Metadata ; 4   5 // Adjusting the returned variable. 6...

/site-essentials-for-statamic/v1/general-metadata#content-first-link

The first method queues a <link rel="first" href="..."> tag. By default it binds to the $meta_link_first variable. 1 <?php 2   3 use Stillat\StatamicSiteEssentials\Support\Facades\Metadata ; 4   5 // Adjusting the returned variable. 6 Metadata ::...