Frequently Asked Questions: script questions: flinx customize: page: 2
-
1
I’d rather use text links than buttons. Is there any way to make it not require a button?
No, not really. We designed Flinx with image links in mind and at this time there is no way to disable them.

May 21, 2004 |
By Sasha |
Filed under FAQ, Flinx: Customize, Scripts
-
2
How can I change my images without deleting and re-adding the link?
First, make sure that the new images have the exact same name and extension as the old ones. Then, go into your images directory with your FTP program and delete all the images you plan to replace. After they’ve been deleted, upload the new ones.
May 21, 2004 |
By Sasha |
Filed under FAQ, Flinx: Customize, Scripts
-
3
Sort sites by subject or date opened?
How can I change Flinx Collective so that it will sort my sites by Subject or Date Opened instead of Title?
Open category.php, and find this line:
$result = mysql_query("SELECT * FROM $table_link WHERE relCatID=$id ORDER BY title ASC");Change it to this for sort by subject:
$result = mysql_query("SELECT * FROM $table_link WHERE relCatID=$id ORDER BY subject ASC");Or this for sort by date:
$result = mysql_query("SELECT * FROM $table_link WHERE relCatID=$id ORDER BY date ASC");
May 21, 2004 |
By Sasha |
Filed under FAQ, Flinx: Customize, Scripts