It seems that no matter how much we tweak our checkout process there are still users who are not smart enough to make it all the way through - sometimes I just don't get it, lol.
With this small mod though you can give them the opportunity to pay for those listings that they abandoned for one reason or another. This is what it will look like when they browse their listings:
When clicking that link they will be injected into step 6 of the normal checkout process, where they will only have to choose the payment provider they wish to use (paypal, CC, etc), and submit their payment.
Here is how to add this simple mod...
Find these lines in userbrowselistings.tpl.php:
Code:
{elseif $entry.display == "Y"}
{$smarty.const.LANG_YES}
{else}
{$smarty.const.LANG_NO}
{/if}
And add this code immediately after them:
Code:
{if $entry.display == "C"}
<br /><a href="usercheckout.php?step=6&listingid={$entry.id}" style="font-weight: bold; color: green;">Pay & activate</a>
{/if}
I hope this helps someone.