We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45eed4f commit 28b22afCopy full SHA for 28b22af
2 files changed
modules/search/views/header.php
@@ -7,7 +7,7 @@
7
8
<body class="search-page<?php if ($container->cookies()->get('dayNight')->value() == 'dark') : ?> dark<?php endif; ?>">
9
10
- <header class="d-header justify-between">
+ <header class="justify-between">
11
12
<div class="box-logo">
13
<a title="<?= __('app.home'); ?>" class="logo" href="/"><?= config('meta', 'name'); ?></a>
modules/search/views/search.php
@@ -27,7 +27,7 @@
27
28
<?php foreach ($data['results'] as $result) :
29
if (config('general', 'search_engine') == false) {
30
- $url_content = '';
+ $url_content = post_slug($result['post_type'], $result['post_id'], $result['post_slug']);
31
} else {
32
$url_content = ($type == 'comment') ? $url_content . '#comment_' . $result['comment_id'] : $result['url'];
33
}
0 commit comments