Hi Darlene,
Turning shared favorites on/off completely (from the admin page) isn't an option in the current version (0.8.2).
If you don't want your users to see the option, locate line 202-205 in "disp_settings.php".
The lines currently says:
- Code: Select all
// Show/hide shared favorites:
fancy_tr($tmpcount,$tdnorm,$tdalt,$tdhighlight);
echo "<td>".xlate("Display shared favorites").":".add_faq(29)."</td>";
echo '<td align="left">'.add_checkbox('disp_fav_shares',$_SESSION['disp_fav_shares']).'</td></tr>';
...just delete them or - even better - comment out the three lines.
You might also want to run this simple SQL-query (f.ex. using PhpMyAdmin) against your user-table, so the option is hidden at login time:
- Code: Select all
UPDATE user SET disp_fav_shares = '0'
...this example assumes you're not using a prefix for your AmpJuke tables.
If you do have a prefix - f.ex. "ampjuke_", the query should be stated as:
- Code: Select all
UPDATE ampjuke_user SET disp_fav_shares = '0'
//Michael.