What version of 68 Classifieds are you running? Example: V4.1.10 Designer What template are you using? Default Please describe in detail the issue you are having: I have Template codes quick checkout/image upload module but that isn't the problem, when i try and post an ad with JavaScript disabled i get reverted to the default way of posting ads but, all goes fine until i get to the image upload part, i can upload an image but the skip the step and Continue and delete buttons do not work at all and i cant get to the next part. I disabled the preview page and it should go straight to the review order section. Thanks for looking
The templatecodes checkout requires javascript to be enabled. I'm sure you would have to edit the module not to allow the other templatecodes image upload module to not show up in the normal checkout. Try and edit like this to allow regular uploader for normal checkout (about line 46 / image_upload/hooks.php): PHP: if ($step == 100) { //take over the form (submits to this module's index.php) This will effectively disable the image_upload module, leaving you with quick checkout or normal checkout.
Thank you for you help but it didnt reslove the issue The attachment shows where i am stuck, the skip this step doesn't work, you click it and it doesn't do nothing.
send a ticket to me. I will take a look tomorrow morning. I will need FTP details and 68C admin control panel login details.
I can reproduce this, the buttons trigger js, and you'll have to edit your template to make it work with javascript disabled. Here is how I did it: Replace: HTML: <p class="continue"><input type="button" name="Skip" value="{$smarty.const.LANG_ADD_LISTING_SKIP}" onClick="MM_goToURL('parent','usercheckout.php?step=6&category={$section}&listingid={$listingid}&productid={$productid}');return document.MM_returnValue" /></p> {else} <p class="continue"><input type="button" name="Skip" value="Continue »" onClick="MM_goToURL('parent','usercheckout.php?step=6&category={$section}&listingid={$listingid}&productid={$productid}');return document.MM_returnValue" /></p> {/if} With: HTML: {literal} <script type="text/javascript"> <!-- $(document).ready(function() { $('.nojslink').hide(); $('.jsbutton').show(); }); //--> </script> <style type="text/css">.jsbutton { display:none; }</style> {/literal} <p class="continue"> <a href="usercheckout.php?step=6&category={$section}&listingid={$listingid}&productid={$productid}" class="nojslink">{$smarty.const.LANG_ADD_LISTING_SKIP}</a> <input type="button" name="Skip" class="jsbutton" value="{$smarty.const.LANG_ADD_LISTING_SKIP}" onClick="MM_goToURL('parent','usercheckout.php?step=6&category={$section}&listingid={$listingid}&productid={$productid}');return document.MM_returnValue" /> </p> {else} <p class="continue"> <a href="usercheckout.php?step=6&category={$section}&listingid={$listingid}&productid={$productid}" class="nojslink">Continue »</a> <input type="button" name="Skip" class="jsbutton" value="Continue »" onClick="MM_goToURL('parent','usercheckout.php?step=6&category={$section}&listingid={$listingid}&productid={$productid}');return document.MM_returnValue" /> </p> {/if} This is just to show the code without including the whole template, you should add the css to the main style sheet, and place the javascript inside the javascript tags higher up in the template. The link won't have any styling unless you add some.