Hi !
I need to change the default value of the email form when a user send email to other from site the default value is " both " but i need to chenge it to " To site e-mail " can any one help me ?!
Hi ! I need to change the default value of the email form when a user send email to other from site the default value is " both " but i need to chenge it to " To site e-mail " can any one help me ?! |
You can change the email addresses you were asked for during installation by editing the following: |
In the file, yoursite.com/compose.php . . Find: . . default: . . . Replace with: . . default: $email_sel = ""; $lovemail_sel = ' checked="checked"'; $both_sel = ""; break; . . You may have to clear your browser's cache to see the changes. Make sure you make a backup copy of compose.php before you make the changes. My opinions expressed on this site, in no way represent those of Boonex or Boonex employees. |
In the file, yoursite.com/compose.php . . Find: . . default: . . . Replace with: . . default: $email_sel = ""; $lovemail_sel = ' checked="checked"'; $both_sel = ""; break; . . You may have to clear your browser's cache to see the changes. Make sure you make a backup copy of compose.php before you make the changes.
thank you so much :) |