Marcelo

Results 6 issues of Marcelo

Estou usando o seguinte script para retornar algumas informações de um pagamento recorrente, passando o recurrent payment id: ``` $merchant = new Merchant($merchant_id, $merchant_key); $recurrentPayment = (new CieloEcommerce($merchant, $environment))->getRecurrentPayment($recurrentPaymentId); $next_payment...

Estou usando o código abaixo para pagamentos recorrentes (versão editada): ``` $recurrent = new RecurrentPayment(); $recurrent = $recurrent->setInterval(RecurrentPayment::INTERVAL_MONTHLY)->setAuthorizeNow(true); $payment->setRecurrentPayment($recurrent) ->setType(Payment::PAYMENTTYPE_CREDITCARD) ->creditCard($donation_card_cvv, $donation_brand) ->setExpirationDate(esc_html($donation_card_expiration)) ->setSaveCard(true) // tokenizar cartão ->setCardNumber(esc_html($donation_card)) ->setHolder($donation_card_name); try...

I'm adding a custom image for each social icon, like this: ``` $("#share").jsSocials({ shares: [ { share: "twitter", logo: "dist/images/twitter-square-brands.svg", }, { share: "facebook", logo: "dist/images/facebook-square-brands.svg", }, ], showLabel: false,...

I'm using this code to create a text field for attachment post type: ``` $foo = new \Super_Custom_Post_Meta( 'attachment' ); $foo->add_meta_box( array( 'id' => 'book', 'context' => 'normal', 'fields' =>...

The `state` value is returning with backslashes, making it impossible for the value to be interpreted correctly. I'm using the package in an unconventional environment: WordPress + [Acorn](https://roots.io/acorn/). But I...

In the following example, the `foo` group is not rendered: ``` ->addGroup('base') ->addPartial(Links::class) ->modifyField('items', ['min' => 0]) ->getField('items') ->addText('eyebrow') ->endGroup() ->addGroup('foo') ->endGroup(); ```