Hello
How can i change bulk-image upload to exclude as default instead of default include?
greetings jenske
Hello
How can i change bulk-image upload to exclude as default instead of default include?
greetings jenske
Open up source/ad_images.php and fine this line (935):
$output .= "<td class=\"" . $ad_row . "\" valign=\"top\"><input id=\"yincimg" . $imgid . "\" type=\"radio\" checked=\"checked\" name=\"incimg[" . $imgid . "]\" value=\"y\"> <label for=\"yincimg" . $imgid . "\">" . $lang['include'] . "</label>\n
\n<input id=\"nincimg" . $imgid . "\" type=\"radio\" name=\"incimg[" . $imgid . "]\" value=\"n\"> <label for=\"nincimg" . $imgid . "\">" . $lang['exclude'] . "</label></td>\n";
Change it so it ends up like this:
$output .= "<td class=\"" . $ad_row . "\" valign=\"top\"><input id=\"yincimg" . $imgid . "\" type=\"radio\" name=\"incimg[" . $imgid . "]\" value=\"y\"> <label for=\"yincimg" . $imgid . "\">" . $lang['include'] . "</label>\n
\n<input id=\"nincimg" . $imgid . "\" type=\"radio\" name=\"incimg[" . $imgid . "]\" checked=\"checked\" value=\"n\"> <label for=\"nincimg" . $imgid . "\">" . $lang['exclude'] . "</label></td>\n";
Let me know if you have any problem doing this.
You must log in to post.