-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix for template area scope to make it frontend data * Additional error handling added * Bug fix: MPP min amount was not reflecting for PDP page * Bug fix - obsolete sql attribute removed * Version 3.5.4 update and Bug fix for ACL * Check for Telesales extension for admin order * composer description updated * copy updated
- Loading branch information
1 parent
f3d220f
commit 1b69770
Showing
19 changed files
with
107 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,5 +54,4 @@ | |
} | ||
|
||
$installer->endSetup(); | ||
?> | ||
|
9 changes: 2 additions & 7 deletions
9
...dminhtml/default/default/template/affirm/affirm/errorOrderCreatePageOnAffirmPayment.phtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,6 @@ | ||
<?php | ||
/** @var Mage_Core_Block_Template $this **/ | ||
?> | ||
<?php | ||
$url = 'http://help.merchants.affirm.com/article/67-virtual-terminal-overview'; | ||
?> | ||
|
||
<h3> | ||
Affirm is not available as a payment method in Magento at this time. Instead you may use Affirm's Virtual Terminal to process payment. | ||
<a href="<?php echo $url; ?>"><?php echo $url; ?></a> | ||
</h3> | ||
For orders created using Magento Admin, Affirm is only available as a payment method via Telesales at this time. Please contact your Affirm representative for more information. | ||
</h3> |
21 changes: 21 additions & 0 deletions
21
...ion/app/design/adminhtml/default/default/template/affirm/affirm/payment/form/affirm.phtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?php | ||
/** @var Affirm_Affirm_Block_Payment_Form $this **/ | ||
?> | ||
<style type="text/css"> | ||
.affirm-module-version { | ||
display: none; | ||
} | ||
|
||
.affirm_payment_info { | ||
color: #6f6f6f; | ||
font-size: 14px; | ||
} | ||
</style> | ||
<ul class="form-list affirm" id="payment_form_affirm" style="display:none;"> | ||
<li class="form-alt"> | ||
<div class="affirm_payment_info"> | ||
<p><?php echo $this->__('If you have Affirm Telesales enabled, User will be sent Affirm checkout link to securely complete the purchase and will be redirected back to your site after confirmation or cancellation.'); ?></p> | ||
</div> | ||
</li> | ||
</ul> | ||
<span class="affirm-module-version"><?php echo $this->helper('affirm')->getModuleConfigVersion(); ?></span> |
Oops, something went wrong.