Search found 3018 matches

by Edi
Thu Jun 01, 2023 4:55 pm
Forum: General
Topic: Make hashtags clickable?
Replies: 3
Views: 33

Re: Make hashtags clickable?

Bludit has tags. They can be shown for example at the beginning or at the end of some text. In the text itself you can link with the URL of the tag to show all posts or pages with the tag.
by Edi
Tue May 30, 2023 12:49 pm
Forum: General
Topic: Static home page and blog via a menu item ?
Replies: 20
Views: 285

Re: Static home page and blog via a menu item ?

On a static page the title can be displayed with the following:

Code: Select all

echo $page->title();
But this does not work if the URL filter "/blog/" is set (this works like the page with the template home.php).
by Edi
Tue May 30, 2023 12:23 pm
Forum: General
Topic: Static home page and blog via a menu item ?
Replies: 20
Views: 285

Re: Static home page and blog via a menu item ?

You can hard code it "News" or something like this.
by Edi
Tue May 30, 2023 11:25 am
Forum: General
Topic: Characte counter in tinymce?
Replies: 4
Views: 52

Re: Characte counter in tinymce?

You can enable the statusbar to show the counter.

Set in the file plugin.php in the directory /bl-plugins/tinymce (line 129):

Code: Select all

statusbar: true,
instead of

Code: Select all

statusbar: false,
Clicking on the counter in the status bar switches between counting words and counting characters.
by Edi
Mon May 29, 2023 11:39 pm
Forum: General
Topic: Static home page and blog via a menu item ?
Replies: 20
Views: 285

Re: Static home page and blog via a menu item ?

In the template news.php can the following be found (line 8): <?php if ($page->isStatic() and $page->coverImage()): ?> <div class="img parlx img-head-nobg"> <img src="<?php echo $page->coverImage(); ?>" alt=""> </div> <?php else: ?> <h1 class="color-font"><?ph...
by Edi
Mon May 29, 2023 8:31 pm
Forum: General
Topic: Characte counter in tinymce?
Replies: 4
Views: 52

Re: Characte counter in tinymce?

You can add a counter for words or for characters to the editor TinyMCE. In the settings of the plugin add "wordcounter" to the field the "Toolbar top" or "Toolbar bottom" and to the field "Plugins". See also: https://www.tiny.cloud/docs/plugins/opensource/wor...
by Edi
Mon May 29, 2023 1:28 pm
Forum: General
Topic: Static home page and blog via a menu item ?
Replies: 20
Views: 285

Re: Static home page and blog via a menu item ?

Sorry, it's the wrong one. I should have the template with the loop for the slug "blog".
by Edi
Sat May 27, 2023 11:05 pm
Forum: General
Topic: Static home page and blog via a menu item ?
Replies: 20
Views: 285

Re: Static home page and blog via a menu item ?

What is the code of the template news.php?
by Edi
Sat May 27, 2023 9:39 am
Forum: General
Topic: Static home page and blog via a menu item ?
Replies: 20
Views: 285

Re: Static home page and blog via a menu item ?

I think this has to do with your code of the template home.php.
by Edi
Fri May 26, 2023 3:58 pm
Forum: General
Topic: Static home page and blog via a menu item ?
Replies: 20
Views: 285

Re: Static home page and blog via a menu item ?

LucyDemoon wrote: Fri May 26, 2023 3:06 pm i have similar issue on the home site,

but my blog site have always the last blog entry as titel insted the static page title.
Can you please give the link to your website.