WebCards Support Forums

WebCards Support Forums » General Support Requests

bulk-image upload

(2 posts)

No tags yet.

  1. jenske
    Member

    Hello
    How can i change bulk-image upload to exclude as default instead of default include?

    greetings jenske

    Posted 1 year ago #
  2. corbyboy
    Key Master

    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.

    Posted 1 year ago #

RSS feed for this topic

Reply

You must log in to post.