Skip to content

Commit

Permalink
Merge pull request #3997 from 10up/fix/issue-3915
Browse files Browse the repository at this point in the history
[Facets] Incorrect link on `filter blocks`
  • Loading branch information
felipeelia authored Nov 7, 2024
2 parents 29b1f78 + fdefd28 commit 9769a5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions includes/classes/Feature/Facets/Facets.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public function __construct() {
$this->title = esc_html__( 'Filters', 'elasticpress' );

$this->summary = '<p>' .
wp_is_block_theme()
( wp_is_block_theme()
? sprintf(
/* translators: Site Editor URL */
__( 'Adds <a href="%s">filter blocks</a> that administrators can add to the website’s templates and template parts, so that visitors can filter applicable content and search results by one or more taxonomy terms, metafields, and date ranges.', 'elasticpress' ),
Expand All @@ -52,7 +52,7 @@ public function __construct() {
__( 'Adds <a href="%s">filter widgets</a> that administrators can add to the website’s sidebars (widgetized areas), so that visitors can filter applicable content and search results by one or more taxonomy terms, metafields, and date ranges.', 'elasticpress' ),
esc_url( admin_url( 'widgets.php' ) )
)
. '</p>';
) . '</p>';

$this->docs_url = __( 'https://www.elasticpress.io/documentation/article/configuring-elasticpress-via-the-plugin-dashboard/#filters', 'elasticpress' );

Expand Down

0 comments on commit 9769a5b

Please sign in to comment.