Search found 27 matches

by brunojti
02 Sep 2016, 19:14
Forum: Laravel package
Topic: user gets account creation email but cannot login
Replies: 10
Views: 6307

Re: user gets account creation email but cannot login

I've done some progress here, and now I need to update this line: https://github.com/aimeos/ai-client-html/blob/master/client/html/src/Client/Html/Checkout/Standard/Address/Billing/Standard.php#L472 But I'm not being able to overwrite it in my extension. I've created a file located at `ext/my-ext/cl...
by brunojti
02 Sep 2016, 01:21
Forum: Laravel package
Topic: user gets account creation email but cannot login
Replies: 10
Views: 6307

Re: user gets account creation email but cannot login

I've found the following partial:

Code: Select all

client/html/templates/common/partials/address-default.php
.

But everything is hard coded, Am I looking in the wrong place?

Thanks
by brunojti
01 Sep 2016, 13:44
Forum: Laravel package
Topic: user gets account creation email but cannot login
Replies: 10
Views: 6307

Re: user gets account creation email but cannot login

Hi, I am trying to add some fields to Users table like: taxpayerid, phone's area code, neighborhood. And edit some fields: Address1 to Street, Address2 to Number, Address3 to complement. As I am still learning, I'm taking baby steps, and decided to add only taxpayer id to figure out the whole proces...
by brunojti
01 Sep 2016, 12:17
Forum: Laravel package
Topic: Payment provider status update
Replies: 3
Views: 2299

Re: Payment provider status update

What did you've implemented? An Omnipay driver or an Aimeos payment service provider? I am using a Custom Provider (based in Omnipay's code) public function process(\Aimeos\MShop\Order\Item\Iface $order, array $params = array()) { if (!isset($params['payment_type']) || empty($params['payment_type']...
by brunojti
30 Aug 2016, 11:59
Forum: Laravel package
Topic: Payment provider status update
Replies: 3
Views: 2299

Payment provider status update

Hey there! I was able to send the request to create a payment in my payment provider. YAY! :D :D :D Now I can update the payment status via the provider, and I should provide a URL (So the provider can send post requests with status updates). My question is: Which url I should provide to receive the...
by brunojti
26 Aug 2016, 17:14
Forum: Laravel package
Topic: Show custom in payment provider process()
Replies: 3
Views: 2325

Re: Show custom in payment provider process()

I have skipped that page from checkout process, the page I am talking about is the page after summary...

EDIT: The file to edit is: `checkout/standard/order-body-default.php`.

I hope I'm not making anything wrong here =)
by brunojti
26 Aug 2016, 15:12
Forum: Laravel package
Topic: Show custom in payment provider process()
Replies: 3
Views: 2325

Show custom in payment provider process()

Using the following code I was able to show an example form field for user input after the user confirms the summary data. public function process(\Aimeos\MShop\Order\Item\Iface $order, array $params = array()) { $list = array( 'myprovider.accountno' => new \Aimeos\MW\Criteria\Attribute\Standard( ar...
by brunojti
26 Aug 2016, 13:54
Forum: Laravel package
Topic: Skipping payment provider in checkout
Replies: 4
Views: 2388

Re: Skipping payment provider in checkout

AWESOME!

Thanks ;D
by brunojti
26 Aug 2016, 12:03
Forum: Laravel package
Topic: Skipping payment provider in checkout
Replies: 4
Views: 2388

Skipping payment provider in checkout

Hey there. My shop will have only one payment provider and I'd like to remove this step from checkout process. I have changed my config/shop file: 'client' => array( 'html' => array( 'common' => array( 'content' => array(// 'baseurl' => '/', ), 'template' => array(// 'baseurl' => 'packages/aimeos/sh...
by brunojti
24 Aug 2016, 14:53
Forum: Laravel package
Topic: Modify/create new template structure
Replies: 8
Views: 4978

Re: Modify/create new template structure

I need to add some custom JS to payment step on checkout process. I tried to: <?php $this->block()->start('checkout/standard/payment'); ?> <script type="text/javascript"> var sender_hash = ''; window.onload = function () { console.log("Setting session ID to: <?php echo $session_id; ?>...