Hello Wolfgang,
the core uses it as the default number of posts per page, default 10, can be 1000, for example.
$fp_config ['general'] ['maxentries'] // is the relevant setting (settings.conf.php).
Screenshot 2025-11-07 223238.png
Please note: FlatPress 1.4.1 is not optimized to read 1000 posts ...
Search found 368 matches
- Fri Nov 07, 2025 9:34 pm
- Forum: Theme support
- Topic: Override pagination
- Replies: 1
- Views: 56
- Sat Nov 01, 2025 4:23 pm
- Forum: Plugin support
- Topic: Go Top and Scroll Indicator
- Replies: 6
- Views: 53454
Re: Go Top and Scroll Indicator
Hello @lukask,
due to stricter CSP, only the nonce value for inline script was missing there. Now the plugin should also work under FlatPress 1.4.1 Notturno.
As always, you can download it via the wiki.
Best regards,
Frank
due to stricter CSP, only the nonce value for inline script was missing there. Now the plugin should also work under FlatPress 1.4.1 Notturno.
As always, you can download it via the wiki.
Best regards,
Frank
- Wed Oct 22, 2025 6:57 pm
- Forum: General Support
- Topic: Blog width
- Replies: 1
- Views: 630
Re: Blog width
Hello Stoufb,
Please take a look at the common.css file in the fp-interface/themes/leggero/leggero-v2/res directory.
In this file, search for @media (min-width:
Screenshot 2025-10-22 205256.png
Screenshot 2025-10-22 205545.png
Screenshot 2025-10-22 205517.png
A max-width is specified ...
Please take a look at the common.css file in the fp-interface/themes/leggero/leggero-v2/res directory.
In this file, search for @media (min-width:
Screenshot 2025-10-22 205256.png
Screenshot 2025-10-22 205545.png
Screenshot 2025-10-22 205517.png
A max-width is specified ...
- Mon Oct 06, 2025 12:52 am
- Forum: General Support
- Topic: Tag Plug-in does not work
- Replies: 1
- Views: 105
Re: Tag Plug-in does not work
Hello ClarusAD,
Please post an excerpt from your web server's error log here. Check whether the error also occurs with the unmodified leggero theme.
Thank you very much.
Have a great start to the new week.
Best regards,
Frank
Please post an excerpt from your web server's error log here. Check whether the error also occurs with the unmodified leggero theme.
Thank you very much.
Have a great start to the new week.
Best regards,
Frank
- Mon Oct 06, 2025 12:38 am
- Forum: General Support
- Topic: JavaScript not working in header file
- Replies: 2
- Views: 213
Re: JavaScript not working in header file
Hello ClarusAD,
Try using
{literal}<script nonce="{/literal}{$smarty.const.RANDOM_HEX}{literal}">…</script>{/literal}
Or with externally integrated JS:
<script nonce="{$smarty.const.RANDOM_HEX}" src="{$smarty.const.BLOG_BASEURL}fp-interface/themes/leggero/res/custom.js" defer></script ...
Try using
{literal}<script nonce="{/literal}{$smarty.const.RANDOM_HEX}{literal}">…</script>{/literal}
Or with externally integrated JS:
<script nonce="{$smarty.const.RANDOM_HEX}" src="{$smarty.const.BLOG_BASEURL}fp-interface/themes/leggero/res/custom.js" defer></script ...
- Thu Oct 02, 2025 7:10 pm
- Forum: General Support
- Topic: Javascript
- Replies: 1
- Views: 182
Re: Javascript
Hello dio2,
What appears as HTML output in the browser (Ctrl+U)? Are any warnings or errors displayed in the browser developer tools -> console?
Please post the contents of your myscripts.js file here in the code block.
Best regards,
Frank
What appears as HTML output in the browser (Ctrl+U)? Are any warnings or errors displayed in the browser developer tools -> console?
Please post the contents of your myscripts.js file here in the code block.
Best regards,
Frank
- Wed Oct 01, 2025 9:01 pm
- Forum: General Support
- Topic: HOW TO _bulk_upload_ all pages en masse?
- Replies: 1
- Views: 247
Re: HOW TO _bulk_upload_ all pages en masse?
Hello AtaraxiA,
You can use the [html][/html] tags in the post editor. Insert your HTML code between the two tags.
<iframe src="https://www.your-flatpress.ltd/book.html" title="Book"></iframe>
I would upload it via FTP. Alternatively, take a look at tinyfilemanager . You only need the php file ...
You can use the [html][/html] tags in the post editor. Insert your HTML code between the two tags.
<iframe src="https://www.your-flatpress.ltd/book.html" title="Book"></iframe>
I would upload it via FTP. Alternatively, take a look at tinyfilemanager . You only need the php file ...
- Wed Sep 03, 2025 9:27 pm
- Forum: General Support
- Topic: Flatpress 1.3.1 Issue - Can't edit entries
- Replies: 4
- Views: 654
Re: Flatpress 1.3.1 Issue - Can't edit entries
Another possible solution:
The current (Apache?) server configuration may assume that there is an .htaccess file there, regardless of whether there actually is one or not.
Either set the appropriate <Directory> to AllowOverride None via cPanel, or ask your host to do this for you.
The current (Apache?) server configuration may assume that there is an .htaccess file there, regardless of whether there actually is one or not.
Either set the appropriate <Directory> to AllowOverride None via cPanel, or ask your host to do this for you.
- Wed Sep 03, 2025 8:04 pm
- Forum: General Support
- Topic: Flatpress 1.3.1 Issue - Can't edit entries
- Replies: 4
- Views: 654
Re: Flatpress 1.3.1 Issue - Can't edit entries
Hello Tongara,
It is highly unlikely that this is a FlatPress bug.
The log shows a file system/ownership/permissions issue with the host.
If you manage your web space with cPanel, the answer may lie here:
https://support.cpanel.net/hc/en-us/community/posts/19156062702999-pcfg-openfile-unable-to ...
It is highly unlikely that this is a FlatPress bug.
The log shows a file system/ownership/permissions issue with the host.
If you manage your web space with cPanel, the answer may lie here:
https://support.cpanel.net/hc/en-us/community/posts/19156062702999-pcfg-openfile-unable-to ...
- Tue Sep 02, 2025 6:58 pm
- Forum: Plugin support
- Topic: SEO Metatag Info - fine plugin with extensive functions
- Replies: 18
- Views: 48467
Re: SEO Metatag Info - fine plugin with extensive functions
Hmm, in FlatPress 1.4.1, Smarty compiles array accesses ($_tpl_vars[‘seo_desc’]), which I had overlooked or ignored until now.
I have also incorporated
seometataginfo2_2_5_smarty4.zip
this patch into this version.
// Establish compatibility with older Smarty 4.
function seometataginfo ...
I have also incorporated
seometataginfo2_2_5_smarty4.zip
this patch into this version.
// Establish compatibility with older Smarty 4.
function seometataginfo ...