diff --git a/view/frontend/templates/post/info/author.phtml b/view/frontend/templates/post/info/author.phtml index 3bc45621..0ad5819d 100644 --- a/view/frontend/templates/post/info/author.phtml +++ b/view/frontend/templates/post/info/author.phtml @@ -36,17 +36,21 @@ $modifierName = $modifier !== null ? $modifier->getName() : ''; showAuthorInfo()) : ?> |   - escapeHtml(__( - 'By: %1', - '' . $authorName . '' - )) ?> + %2', + $escaper->escapeUrl($author->getUrl()), + $authorName + ) ?> + |   - escapeHtml(__( - 'Modify By: %1 at %2', - '' . $modifierName . '', - $block->getDateFormat($_post->getUpdatedAt()) - )) ?> + %2 at %3', + $escaper->escapeUrl($modifier->getUrl()), + $modifierName, + $block->getDateFormat($_post->getUpdatedAt()) + ) ?> + diff --git a/view/frontend/templates/post/info/tag.phtml b/view/frontend/templates/post/info/tag.phtml index f781a10c..80e90824 100644 --- a/view/frontend/templates/post/info/tag.phtml +++ b/view/frontend/templates/post/info/tag.phtml @@ -29,5 +29,5 @@ use Magento\Framework\Escaper; $_post = $block->getPost(); ?> getTagList($_post)) : ?> - | escapeHtml(__('Tags: %1', $tagList)); ?> + | escapeHtml(__('Tags: ')) ?>