Search found 3121 matches

by Edi
Fri Sep 06, 2019 11:35 am
Forum: General
Topic: Link to category with id
Replies: 10
Views: 4500

Re: Link to category with id

I think the problem is "target=_blank" in connection with an anchor. Try without it or another attribute.
by Edi
Fri Sep 06, 2019 10:55 am
Forum: Themes
Topic: Mediumish theme adaptation : list pages from category
Replies: 5
Views: 3517

Re: Mediumish theme adaptation : list pages from category

In this case you have to add an if condition for the selected category.
by Edi
Fri Sep 06, 2019 10:50 am
Forum: General
Topic: Link to category with id
Replies: 10
Views: 4500

Re: Link to category with id

Kir wrote: Fri Sep 06, 2019 12:50 am I have tried to do this with id tag, but <a href=blog/category/general#news> doesn't work.
<a href="http://kir.dx.am/blogblog/category/general#news"> works for me.
by Edi
Thu Sep 05, 2019 11:17 am
Forum: Plugins
Topic: Comments on one page
Replies: 2
Views: 2215

Re: Comments on one page

Which comment system do you use?
by Edi
Wed Sep 04, 2019 11:10 am
Forum: Allgemein
Topic: Suche funktioniert nicht
Replies: 1
Views: 1563

Re: Suche funktioniert nicht

Ich kann Dir da leider nicht weiterhelfen. :(

Du kannst für das Problem aber ein Ticket eröffnen unter

https://github.com/bludit/bludit/issues
by Edi
Wed Sep 04, 2019 11:06 am
Forum: General
Topic: Is there a limit to images per page?
Replies: 4
Views: 2327

Re: Is there a limit to images per page?

Eisengeist wrote: Wed Sep 04, 2019 10:21 am You have to admit that "ITEMS_PER_PAGE_ADMIN" could be a bit misleading, even with the commentary "Items per page for admin area" above. :D
I think not at the moment. Because it also defines the number of contents in the admin area.
by Edi
Wed Sep 04, 2019 10:54 am
Forum: Allgemein
Topic: Status-Feld in Version 3.9.2
Replies: 5
Views: 3093

Re: Status-Feld in Version 3.9.2

Stimmt, danke für den Hinweis. Du kannst den Status durch Klicken von "Veröffentlichen" beziehungsweise "Entwurf" (derzeit fälschlicherweise "Entwürfe") ändern.

status.png
status.png (8.09 KiB) Viewed 3092 times
by Edi
Tue Sep 03, 2019 5:48 pm
Forum: General
Topic: Is there a limit to images per page?
Replies: 4
Views: 2327

Re: Is there a limit to images per page?

Yes, it is (line 28/29):

Code: Select all

// Items per page for admin area
define('ITEMS_PER_PAGE_ADMIN', 20);
by Edi
Sun Sep 01, 2019 12:03 am
Forum: General
Topic: Request: Mandatory Author's category
Replies: 9
Views: 3618

Re: Request: Mandatory Author's category

You can use the following to get the username, nickname etc.:

$page->username()

and

$page->user('username')
$page->user('nickname')
$page->user('firstName')
$page->user('lastName')

Together with if conditions in the template home.php you can create author pages for example.
by Edi
Thu Aug 29, 2019 11:31 am
Forum: Allgemein
Topic: Wie schaltet man das Hauptbild für einen Artikel aus?
Replies: 9
Views: 5168

Re: Wie schaltet man das Hauptbild für einen Artikel aus?

Danke, ich schaue mir das einmal an.