Hey John Bartels,
Thanks for your reply!
The files that are relevant to my javascript issue are these:
/media/system/js/mootools-core.js:25
/media/system/js/mootools-core.js:261
/media/system/js/validate.js:9
The main reason why I used another screeenshot is because my browser is in a different language.
Everytime I click "Save" within the module I get the mootools-core error message.
Only sometimes do I get the validate.js-message.
I am not sure how to disable these "mootools" and "validate" javascript files without breaking the site. I tried a plugin that is supposed to disable mootools but then another extension stopped working.
Perhaps it's just my code changes that are not very optimal? (I am not a programmer)
I post the code changes here, perhaps someone will find it useful if the javascript issues would go away. I also attached my current version of the .xml file.
1.
Row 21 in mod_ninja_simple_icon_menu.php:
#Only 5 icon slots used in this example. Make sure the first row is the highest number!
$iconParams = array (
array($params->get('icon5_status'),$params->get('icon5_img'),$params->get('icon5_title'),$params->get('icon5_link'),$params->get('icon5_alt'),$params->get('icon5_target')),
array($params->get('icon4_status'),$params->get('icon4_img'),$params->get('icon4_title'),$params->get('icon4_link'),$params->get('icon4_alt'),$params->get('icon4_target')),
array($params->get('icon3_status'),$params->get('icon3_img'),$params->get('icon3_title'),$params->get('icon3_link'),$params->get('icon3_alt'),$params->get('icon3_target')),
array($params->get('icon2_status'),$params->get('icon2_img'),$params->get('icon2_title'),$params->get('icon2_link'),$params->get('icon2_alt'),$params->get('icon2_target')),
array($params->get('icon1_status'),$params->get('icon1_img'),$params->get('icon1_title'),$params->get('icon1_link'),$params->get('icon1_alt'),$params->get('icon1_target'))
);
2.
Another row in the same file:
Search for this text string:
/* loop through our menu items and display the ones we need to display */
Edit the row below (this will load 100 icons):
for ($i=0; $i<100; $i++){
3. Use the attached file to get 100 icon slots.
4. May not display correctly if you set the value in 2. to 100 and then don't have 100 actual icon slots if the order is reversed.