Search found 3121 matches

by Edi
Sat Jan 05, 2019 9:51 pm
Forum: Plugins
Topic: Cachy is incompatible with the search plugin
Replies: 11
Views: 7031

Re: Cachy is incompatible with the search plugin

I presume this happens because the "page" (this means the key of the page) with the search results cannot be found in the database file pages.php.
by Edi
Fri Jan 04, 2019 10:43 am
Forum: Themes
Topic: Single content with categories / tags in template "Blog X"
Replies: 1
Views: 1559

Re: Single content with categories / tags in template "Blog X"

You can add the following to the file page.php of the theme: if ($page->category() ==! "") { echo '<li><a href="'.HTML_PATH_ROOT.$url->filters('category').'/'.strtolower($page->category()).'">'.$page->category().'</a></li>'; } How this can be done shows for example the theme &quo...
by Edi
Fri Jan 04, 2019 10:20 am
Forum: General
Topic: Direct link from a menu
Replies: 3
Views: 2022

Re: Direct link from a menu

A possibility is creating a page with a redirect. You can either add a redirect rule to the file .htaccess or with JavaScript. To redirect for example the page with the pretty URL "forward" to Google with .htaccess you can use: Redirect /foward/ http://www.google.com/ The same with adding ...
by Edi
Thu Jan 03, 2019 9:42 am
Forum: Plugins
Topic: Cookie Consent + Detect AdBlock Bludit version 3.0.0 and onward
Replies: 14
Views: 6834

Re: Cookie Consent + Detect AdBlock Bludit version 3.0.0 and onward

blooditbloggus wrote: Wed Jan 02, 2019 7:20 pm But I cannot compel the readers of my blog to allow cloudflare javascript.
You are right. We will add a version without an external connection.
by Edi
Mon Dec 31, 2018 12:22 pm
Forum: Themes
Topic: [Theme] Keep it simple
Replies: 11
Views: 6056

Re: [Theme] Keep it simple

Works on my end. Please try after purging the browser cache.

lucy-raquel.jpg
lucy-raquel.jpg (37.5 KiB) Viewed 4660 times
by Edi
Sun Dec 30, 2018 10:57 am
Forum: Plugins
Topic: [Plugin] paw.MoreLevels - Mehr als nur 2 Level
Replies: 6
Views: 4986

Re: [Plugin] paw.MoreLevels - Mehr als nur 2 Level

Danke! Der Eintrag ist aufdatiert.
by Edi
Sat Dec 29, 2018 11:57 pm
Forum: Themes
Topic: [Theme] Keep it simple
Replies: 11
Views: 6056

Re: [Theme] Keep it simple

Finally I found the bug.

You can add the following CSS rule to the file bludit.css, exchange the file with the updated one or using the plugin HTML Code to add it (between <script> and </script>):

Code: Select all

#nav-wrap > a::before {
    font-family: 'Font Awesome 5 Free';
}
by Edi
Sat Dec 29, 2018 3:23 pm
Forum: Themes
Topic: [Theme] Keep it simple
Replies: 11
Views: 6056

Re: [Theme] Keep it simple

Yes, I have to look at it. It's strange, because it is only the case using smartphones, not when testing it with a browser.
by Edi
Sat Dec 29, 2018 1:10 pm
Forum: Themes
Topic: [Theme] Keep it simple
Replies: 11
Views: 6056

Re: [Theme] Keep it simple

On this page the youtube video don't respect the correct size (560x315) whatever dimension I give it You can use the following: <iframe src="https://www.youtube.com/embed/UKWSaXlapVA" style="width:560px;height:315px" frameborder="0" allow="accelerometer; autoplay;...
by Edi
Sat Dec 29, 2018 12:52 pm
Forum: Themes
Topic: [Theme] Keep it simple
Replies: 11
Views: 6056

Re: [Theme] Keep it simple

When i click on a category, the page with all the article open up, but if I click on a title, the page won' t load if the home page is linked to a category, only the title is loaded, not the content There was a bug in the theme. You can modify the line (34) in the file page.php or exchange the file...