Search found 113 matches

by novafacile
Tue Jun 21, 2022 5:09 pm
Forum: Allgemein
Topic: Seiten am PC erstellen und hochladen
Replies: 15
Views: 3759

Re: Seiten am PC erstellen und hochladen

Bludit ist dafür ausgelegt alles über die Admin-Oberfläche zu pflegen, mit genau dem Ziel, eben einfach in der Anwendung zu sein. Du kannst natürlich direkt in den Dateien basteln, die die Inhalte speichern aber ob das der sicherste Weg ist weiß ich nicht. Sobald der "Anfänger" dann über d...
by novafacile
Fri May 13, 2022 10:28 pm
Forum: General
Topic: How to remove date and duration of reading time on a sticky post ?
Replies: 8
Views: 1621

Re: How to remove date and duration of reading time on a sticky post ?

Starting from your proposal and using a little logic by comparing other pieces of code in the page I made : <!-- Creation date --> <?php if (!$page->sticky()): ?> <h6 class="card-subtitle mb-3 text-muted"><?php echo $page->date(); ?> - <?php echo $L->get('Reading time') . ': ' . $page->re...
by novafacile
Thu May 12, 2022 3:02 pm
Forum: General
Topic: How to remove date and duration of reading time on a sticky post ?
Replies: 8
Views: 1621

Re: How to remove date and duration of reading time on a sticky post ?

Otherwise you can remove the whole code of this, but then it's never shown.
by novafacile
Thu May 12, 2022 2:54 pm
Forum: General
Topic: How to remove date and duration of reading time on a sticky post ?
Replies: 8
Views: 1621

Re: How to remove date and duration of reading time on a sticky post ?

The idea is to replace this ​        ​<!-- Creation date --> ​        ​<​h6​ ​class​="​card-subtitle mb-4 text-muted​"​> ​            ​<​i​ ​class​="​bi bi-calendar​"​>​</​i​>​<?php​ ​echo​ ​$​page​->​date​(); ​?> ​            ​<​i​ ​class​="​ms-3 bi bi-clock-history​"​...
by novafacile
Wed May 11, 2022 11:15 pm
Forum: General
Topic: How to remove date and duration of reading time on a sticky post ?
Replies: 8
Views: 1621

Re: How to remove date and duration of reading time on a sticky post ?

Oh I see I misunderstood your need a bit, you want to remove this only for sticky posts. You can do something like this: Add this in the following file /bl-themes/blogx/php/home.php Line 19 if(!$page->sticky()){ Line 25 } This should removes it from every sticky post. Please test if it's works. Curr...
by novafacile
Wed May 11, 2022 10:26 am
Forum: General
Topic: How to remove date and duration of reading time on a sticky post ?
Replies: 8
Views: 1621

Re: How to remove date and duration of reading time on a sticky post ?

This depends on the theme you use. Wich theme do you use? The date and author are shown with ​​ $​page​->​date​(); $​page​->​author​([...]); You have to remove this from the theme file of the static page. Most themes uses the same theme file for static pages and blog pages. If your theme use the sam...
by novafacile
Tue May 10, 2022 3:43 pm
Forum: General
Topic: admin panel doesn't exist
Replies: 4
Views: 987

Re: admin panel doesn't exist

And is htaccess support in apache2 vhost enabled?
by novafacile
Fri Apr 15, 2022 2:18 pm
Forum: Allgemein
Topic: Ein Beitrag in mehreren Kategorien
Replies: 11
Views: 1469

Re: Ein Beitrag in mehreren Kategorien

Ja, wenn ich wüsste, wie man diese Dinge ins Theme baut, dann braucht der Anwender dies eh nur im CMS eintippen. Doch bis ich dazu komme, im Code zu wühlen, schaue ich mir halt an, was die Themes, Plugins usw. einfach so, so wie sie sind, können. Absolut verständlich und würde ich auch so machen es...
by novafacile
Sun Apr 10, 2022 11:32 pm
Forum: General
Topic: Limit recent posts to 5 on homepage
Replies: 4
Views: 833

Re: Limit recent posts to 5 on homepage

arikenko wrote: Mon Apr 04, 2022 9:19 pm I don't know php but would like to limit posts to just latest 5.
Right now it shows all of the posts :|
The setting General --> Advanced --> Items per page doesn't work?

But update is recommended!
by novafacile
Sun Apr 10, 2022 11:24 pm
Forum: General
Topic: Fresh Install with 404 on admin panel
Replies: 6
Views: 1327

Re: Fresh Install with 404 on admin panel

I tried the webserver docs about editing the htaccess file and creating a config file for nginx but the problem doesn't go away. OS: Windows 10 Laragon test server Nginx 1.21.6 htaccess is an apache feature. with nginx you have to set the settings in the nginx config. Server configuration is always...