I'd like this moved out of the admin settings and into the variables file in a skin so that different themes can have different organizational methods. With this I can in one skin show one per row and in another skin say 3 per row. The 1 per row will have descriptions, this way I can have a simplified view (3 per) and a detailed view (1 per). thanks.
I am rebuilding efiction! Join us on irc! #efiction at
You can do this already with categories. Edit the variables.php file for a particular skin.
Mine have the categories in columns of 3 so it says:
$blocks['categories']['status'] = 1;
$blocks['categories']['template'] = "{link} [{count}]";
$blocks['categories']['columns'] = 3;
Depending on what you want, you change the number of columns, and change the template.
Whoever said nothing is impossible never tried slamming a revolving door.
url: https://www.potionsandsnitches.org/fanfiction
php: 7.4.33 msql: 5.6.51-community GPL
efic version: 3.5.5 latest patches: yes
bridges: none mods: challenges, tracker, story end, beta, word
You can already do this.
$itemsperpage = 5;
You can do this already with categories. Edit the variables.php file for a particular skin.
Mine have the categories in columns of 3 so it says:
$blocks['categories']['status'] = 1;
$blocks['categories']['template'] = "{link} [{count}]";
$blocks['categories']['columns'] = 3;Depending on what you want, you change the number of columns, and change the template.
Thanks, I tried this and nothing changed. I assume the default setting on the site has precedence and that is 3 atm. I changed that to 1 and it worked,but that applies to every skin which is not what I want. Thank you.
$blocks["categories"]["status"] = '1';
$blocks["categories"]["columns"] = 1;
$blocks["categories"]["template"] = "{link}";
$blocks["categories"]["tpl"] = '1';
I am rebuilding efiction! Join us on irc! #efiction at
Did you try what Tammy suggested?
Add to the variables.php file for a particular skin:
$itemsperpage = 5;
Whoever said nothing is impossible never tried slamming a revolving door.
url: https://www.potionsandsnitches.org/fanfiction
php: 7.4.33 msql: 5.6.51-community GPL
efic version: 3.5.5 latest patches: yes
bridges: none mods: challenges, tracker, story end, beta, word
That affected story entries within a category. I wish to have a single column of category links in one skin and 3 in another. Thanks.
I am rebuilding efiction! Join us on irc! #efiction at
$columns = 1;
$blocks["categories"]["status"] = '1';
$blocks["categories"]["columns"] = '1';
$blocks["categories"]["tpl"] = '1';
$columns = 1;
Resulted in 3 columns. Hmm, tricky.
http://fanforge.net/browse.php?skin=default2&type=categories&id=1
I am rebuilding efiction! Join us on irc! #efiction at
$displaycolumns = 1;
that worked, thanks π
I am rebuilding efiction! Join us on irc! #efiction at
