volevo segnalare a chi avesse installato sia la contribution per la privacy (http://www.oscommerce.com/community/contributions,3061) che PWA - Purchase Without Account (http://www.oscommerce.com/community/contributions,355) che per avere il box per l'accettazione della privacy anche nel form del PWA, bisogna fare la seguente aggiunta:
Cercare il file Order_info_check.php che si trova in include/modules
ed alla riga 367 dopo
Codice: Seleziona tutto
</tr>
</table></td>
</tr>
</table></td>
</tr>
Codice: Seleziona tutto
<!--PrivacyStart-->
<?php if (ACCOUNT_PRIVACY == 'true') { ?>
<tr>
<td class="main"><b><?php echo MUST_AGREE_TO_PRIVACY; ?></b></td>
</tr>
<tr>
<td align=center><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
<tr class="infoBoxContents">
<td align=center><table width="400" border="0" cellspacing="2" cellpadding="2">
<tr>
<td class="main" colspan="4"><?php echo tep_draw_textarea_field('privacy', 'soft', '48', '15', TEXT_PRIVACY_INFORMATION, 'readonly', 'false'); ?></td>
</tr>
<tr>
<td class="main" align=right><?php echo tep_draw_radio_field('privacy_accept', 'true'); ?></td>
<td class="main"><?php echo AGREE; ?></td>
<td class="main" align=right><?php echo tep_draw_radio_field('privacy_accept', 'false'); ?></td>
<td class="main"><?php echo NOT_AGREE; ?></td>
</tr>
</table></td>
</tr>
</table></td>
</tr>
<tr>
<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
</tr>
<?php }?>
<!--PrivacyEnd-->