Search found 263 matches

by Torsten_Kelsch
Tue Dec 12, 2017 1:23 pm
Forum: General
Topic: Bludit on PHP 7.2
Replies: 3
Views: 2005

Re: Bludit on PHP 7.2

The fix works, thank you!
by Torsten_Kelsch
Sun Dec 10, 2017 3:08 am
Forum: General
Topic: Bludit on PHP 7.2
Replies: 3
Views: 2005

Re: Bludit on PHP 7.2

Great, thank you, I will try the fix tomorrow.
by Torsten_Kelsch
Sat Dec 09, 2017 8:21 pm
Forum: General
Topic: Bludit on PHP 7.2
Replies: 3
Views: 2005

Bludit on PHP 7.2

Just to inform the developer(s): Bludit 2 runs fine on PHP 7.1, but not on PHP 7.2. The following error appears:

Deprecated: Function create_function() is deprecated in /[…]/bl-kernel/helpers/text.class.php on line 237
by Torsten_Kelsch
Sat Dec 09, 2017 6:28 pm
Forum: Plugins
Topic: [Plugin] static-pages
Replies: 3
Views: 2315

Re: [Plugin] static-pages

Great, thank you!
by Torsten_Kelsch
Sat Dec 09, 2017 12:05 am
Forum: Plugins
Topic: [Plugin] static-pages
Replies: 3
Views: 2315

[Plugin] static-pages

For Bludit 1, the plugin was named Pages, for Bludit 2 it is Static Pages. The old plugin was able to create a menu which represented sub-pages by building a structure like: <ul> <li> <ul> <li></li> </ul> </li> </ul> The current plugin is not able to create such complex menus. Is an update planned? ...
by Torsten_Kelsch
Wed Nov 08, 2017 2:22 pm
Forum: General
Topic: [Solved] Bludit 2: How to build a horizontal navigation?
Replies: 5
Views: 2375

Re: [Solved] Bludit 2: How to build a horizontal navigation?

Edi wrote: Wed Nov 08, 2017 2:13 pm Thank you for sharing your solution!
You’re welcome. But I have an off topic question: How can I mark my thread as solved, except to change the first title? Or are only the forum admins able to do this?
by Torsten_Kelsch
Wed Nov 08, 2017 2:04 pm
Forum: General
Topic: [Solved] Bludit 2: How to build a horizontal navigation?
Replies: 5
Views: 2375

Re: Bludit 2: How to build a horizontal navigation?

Now it works. I extended the code from the theme Log a bit so that it fits my needs. And here’s my code: <ul> <?php function umlaute($string) { $search = array("Ä", "Ö", "Ü", "ä", "ö", "ü", "ß", "´"); $replace = array(&q...
by Torsten_Kelsch
Tue Nov 07, 2017 11:45 pm
Forum: General
Topic: [Solved] Bludit 2: How to build a horizontal navigation?
Replies: 5
Views: 2375

Re: Bludit 2: How to build a horizontal navigation?

Edi wrote: Tue Nov 07, 2017 10:09 pm The theme Log has a horizontal navigation for static content. You can copy the code.
Oh, cool, thank you. I will try that.
by Torsten_Kelsch
Tue Nov 07, 2017 7:12 pm
Forum: General
Topic: [Solved] Bludit 2: How to build a horizontal navigation?
Replies: 5
Views: 2375

[Solved] Bludit 2: How to build a horizontal navigation?

Hello, in Bludit 2.0.2, I’d like to have a horizontal navigation for the static pages in my self-made theme, but I don’t know how to build it. My code is as follows: <ul> <li><a href="<?php echo $Site->homepage(); ?>">Start</a></li> <?php foreach($pages as $page) { echo '<li '; if( $WHERE_...
by Torsten_Kelsch
Fri Oct 20, 2017 2:52 pm
Forum: General
Topic: Get Parent pages / child page content in Bludit 2.0
Replies: 8
Views: 5111

Re: Get Parent pages / child page content in Bludit 2.0

There are some clarifications: https://forum.bludit.org/viewtopic.php?f=13&t=1016 . In short: Published content can be sorted by date or by position and can have sub content. Static pages can’t have sub pages at the moment, but as Edi told me, this is only a bug and will be fixed. So, let’s simp...