Post by JasonSGN » Wed Jun 01, 2011 10:17 pm

Q, I'm interested in purchasing your Offline Credit Card module and was wondering if you had a time-frame for when a version for Opencart 1.5 will be ready.

New member

Posts

Joined
Fri Jan 01, 2010 12:15 am

Post by Loxie » Sat Jun 11, 2011 2:26 pm

I have already purchased this particular mod and I noticed after the purchase that it wasn't yet compatible with 1.5 :( Hope it gets updated soon!

Newbie

Posts

Joined
Mon Aug 30, 2010 4:15 am

Post by mberlant » Sat Jun 11, 2011 7:23 pm

As Qphoria has said in many recent posts, most aftermarket developers (he, in particular), will not begin to port their wares to 1.5 until after 1.5 has been debugged, its final design has been confirmed, and a stable version has been released.

Please use proper English at all times, so that all members may understand you.


User avatar
Active Member

Posts

Joined
Sun Mar 13, 2011 8:33 pm

Post by Qphoria » Thu Jul 14, 2011 4:41 am

Ok, Offline CC has been updated to support 1.5.x

IMPORTANT:
If upgrading from a previous version to 150.1, you need to do the following:
1. Upload the new files over the old files
2. Click UNINSTALL in the extension list
3. Click INSTALL in the extension list
4. Edit the extension and reconfigure it

The reason for this is because I changed the way the allowed types are saved and it needs to clear out the old fields with the new fields

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by studio009 » Wed Aug 03, 2011 11:50 pm

Hi can anybody send me Offline credit card module compataible to 1.5x in exchange of Shoppica premium template ..Plzz tell me if anyones interested ..

Newbie

Posts

Joined
Wed Aug 03, 2011 8:17 pm

Post by curtistimsah » Thu Aug 04, 2011 9:32 am

Qphoria wrote:Ok, Offline CC has been updated to support 1.5.x

IMPORTANT:
If upgrading from a previous version to 150.1, you need to do the following:
1. Upload the new files over the old files
2. Click UNINSTALL in the extension list
3. Click INSTALL in the extension list
4. Edit the extension and reconfigure it

The reason for this is because I changed the way the allowed types are saved and it needs to clear out the old fields with the new fields
I PURCHASED version 1.5.1 but I also cannot find the "div class=content" in either the "order_form.tpl" or the "order_info.tpl" to add the "offline_cc.inc.tpl" anywhere. Are you sure these are the correct files?

Also, I cannot find any documentation on how to de-crypt the part of cc # that is stored in SQL database or how the "hash code" is suppose to work??

Newbie

Posts

Joined
Thu Aug 04, 2011 12:06 am

Post by cantykiwi » Thu Aug 04, 2011 10:11 am

Yeah his readme file is not quite correct for v1.5.x. You need to look for the following lines in this file:-

"admin/view/template/sale/order_info.tpl"

<tr>
<td><?php echo $text_payment_method; ?></td>
<td><?php echo $payment_method; ?></td>
</tr>
</table>

and add the line after the </table> statement.

Or if you are using vQmod, here is a file that will do it for you.

Attachments


New member

Posts

Joined
Mon Sep 13, 2010 12:37 pm

Post by Qphoria » Thu Aug 04, 2011 10:53 am

cantykiwi wrote:Yeah his readme file is not quite correct for v1.5.x. You need to look for the following lines in this file:-

"admin/view/template/sale/order_info.tpl"

<tr>
<td><?php echo $text_payment_method; ?></td>
<td><?php echo $payment_method; ?></td>
</tr>
</table>

and add the line after the </table> statement.

Or if you are using vQmod, here is a file that will do it for you.
Well actually I changed it altogether from our last conversation.
This time it is just
<div class="content"> in 1.4.x
<div id="content"> in 1.5.x

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by cantykiwi » Thu Aug 04, 2011 11:13 am

Q, So you want it to appear at the top of all the customer sales order tabs for orders that use it? wouldn't it make more sense to just have it showing under the payment details tab as that's what it relates to?

Anyway each to his own I guess, I like it under the payment details tab only.

Still a great module! :)

New member

Posts

Joined
Mon Sep 13, 2010 12:37 pm

Post by Qphoria » Thu Aug 04, 2011 11:19 am

Well i initially thought they both used
<div class="content">

so I was just trying to unify the process with a common search point.. but I mucked that up apparently.. so i guess it can go wherever.

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by curtistimsah » Fri Aug 05, 2011 9:51 am

cantykiwi wrote:Yeah his readme file is not quite correct for v1.5.x. You need to look for the following lines in this file:-

"admin/view/template/sale/order_info.tpl"

<tr>
<td><?php echo $text_payment_method; ?></td>
<td><?php echo $payment_method; ?></td>
</tr>
</table>

and add the line after the </table> statement.

Or if you are using vQmod, here is a file that will do it for you.

Here is what mine looks like now....

/tr>
<tr>
<td><?php echo $text_payment_method; ?></td>
<td><?php echo $payment_method; ?></td>
</tr>
</table><?php include('view/template/sale/offline_cc.inc.tpl');?>
</div>

I have no <div class="content"> in my file that I can find (1.5.1).
Also, I am not a programmer, just a marketing guy so please talk as simpleton as you can! =)

thanks

Newbie

Posts

Joined
Thu Aug 04, 2011 12:06 am

Post by cantykiwi » Fri Aug 05, 2011 10:11 am

Yeah that should work fine for you now with that change, you don't need to make any other changes in that file.

If still not working you have done something else wrong, maybe files in the wrong place or incorrect setup of the module in admin?

Don't forget to enable the module in the extension->payments section and set it up.

If you go into sales->orders on the admin menu and pick a customer that paid using the offline credit card module and look under the payment details tab you should see the credit card details at the bottom of the screen.

The <div class="content"> tag is for v1.4.x. of opencart and is in a different template file.

All the best!

New member

Posts

Joined
Mon Sep 13, 2010 12:37 pm

Post by Qphoria » Fri Aug 05, 2011 12:35 pm

curtistimsah wrote: I have no <div class="content"> in my file that I can find (1.5.1).
Also, I am not a programmer, just a marketing guy so please talk as simpleton as you can! =)

thanks
did you read my post?
Qphoria wrote: Well actually I changed it altogether from our last conversation.
This time it is just
<div class="content"> in 1.4.x
<div id="content"> in 1.5.x

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by curtistimsah » Sat Aug 06, 2011 11:49 pm

cantykiwi wrote:Yeah that should work fine for you now with that change, you don't need to make any other changes in that file.

If still not working you have done something else wrong, maybe files in the wrong place or incorrect setup of the module in admin?

Don't forget to enable the module in the extension->payments section and set it up.

If you go into sales->orders on the admin menu and pick a customer that paid using the offline credit card module and look under the payment details tab you should see the credit card details at the bottom of the screen.

The <div class="content"> tag is for v1.4.x. of opencart and is in a different template file.

All the best!
Awesome! It works....can you believe I did the code right? I sure can't. Thanks again for your help.

Newbie

Posts

Joined
Thu Aug 04, 2011 12:06 am

Post by tane » Fri Oct 07, 2011 7:37 am

I feel very stupid here but where do I find this elusive module?
A search for "offline" in the extensions section returns only 2 results
Offline Processing Credit Card (Free) and only for v1.4.*
Test Payment Gateway --> Not what I am after.

Very sorry but must be missing a trick

##########
UPDATE
#########
Found it for those of you missing google foo like I was https://theqdomain.com/ocstore/

Newbie

Posts

Joined
Fri Oct 07, 2011 7:31 am

Post by pingpongrob » Fri Oct 07, 2011 8:44 pm

I'm running 1.5.1.3 and just installed the new version of offline credit card by Qphoria.
I believe I have done all the steps correctly, but come up with an error when I test it out.

SyntaxError: JSON.parse: unexpected character.
Can anyone please point me in the right direction.

New member

Posts

Joined
Sun Sep 25, 2011 4:51 pm

Post by Qphoria » Fri Oct 07, 2011 10:37 pm

pingpongrob wrote:I'm running 1.5.1.3 and just installed the new version of offline credit card by Qphoria.
I believe I have done all the steps correctly, but come up with an error when I test it out.

SyntaxError: JSON.parse: unexpected character.
Can anyone please point me in the right direction.
need to see a link to your site

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by dony_b » Sat Oct 08, 2011 12:08 am

I had the same exact problem with this extension and no resolution yet...

User avatar
Active Member

Posts

Joined
Wed Aug 18, 2010 9:56 pm
Location - Boston, MA

Post by Qphoria » Sat Oct 08, 2011 1:36 am

And no link from you either... ::)

There are no known issues on this module so I need more info

Image


User avatar
Administrator

Posts

Joined
Tue Jul 22, 2008 3:02 am

Post by dony_b » Sat Oct 08, 2011 1:50 am

Its on a local host so I dont have a link but Ive contacted you by email a few times with screenshots attached but you never responded to my emails.

User avatar
Active Member

Posts

Joined
Wed Aug 18, 2010 9:56 pm
Location - Boston, MA
Who is online

Users browsing this forum: No registered users and 4 guests