Tatitas
Forum Replies Created
-
Olá, @dcmt
Nós fazemos plugins e já tentamos 2 métodos para fazer uma API que realize essa atualiza??o, n?o somente com o PIX, mas também com outros métodos, mas ainda n?o tivemos sucesso, exatamente pela demora que o Mercado Pago tem de reconhecer o pagamento.
Ainda seguimos tentando por aqui, mas por hora o Mercado Pago só libera usando Checkout Pro e concordo com você, é horrível o Checkout Pro deles.
Se você conseguir fazer algo por ai, me avise e vamos se ajudando. Se eu conseguir por aqui, eu te aviso!
Thank you for the reply.
I have many forms and websites, so it would be impossible to create CSS for each form specifically.
I’ll wait for the update with the correction.Outro error log!!!!!!!!
ID was called incorrectly. Order properties should not be accessed directly. Backtrace: require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), do_action('template_redirect'), WP_Hook->do_action, WP_Hook->apply_filters, WC_AJAX::do_wc_ajax, do_action('wc_ajax_checkout'), WP_Hook->do_action, WP_Hook->apply_filters, WC_AJAX::checkout, WC_Checkout->process_checkout, WC_Checkout->process_order_payment, MercadoPago\Woocommerce\Gateways\CustomGateway->process_payment, MercadoPago\Woocommerce\Gateways\CustomGateway->handleResponseStatus, WC_Abstract_Legacy_Order->__get, wc_doing_it_wrong. This message was added in version 3.0.
Solu??o:
O problema está no método
MercadoPago\Woocommerce\Gateways\CustomGateway->handleResponseStatus
.Em vez de
$order->id
usar$order->get_id()
em vez de$order->status
, usar$order->get_status()
em vez de$order->billing_first_name
, usar$order->get_billing_first_name()
Pela amor de Deus gente, arruma isso. é um erro atrás do outro, nínguem da um suporte se quer…
Vai em Configura??es > Mercado Pago Checkout Pro > Configura??es avan?adas
Lá vai ter Pagamento recusado, Pagamento com sucesso e Pagamento pendente
Forum: Plugins
In reply to: [Mercado Pago payments for WooCommerce] O STATUS DO PEDIDO N?O ATUALIZAOlá Cilmara, tudo bem? Sou programadora e já tive esse problema antes. No seu arquivo wp-config.php encontre a parte do código “define(‘WP_DEBUG’, false);” e mude para “define(‘WP_DEBUG’, true);”
Também adicione mais esses 2 comandos:
define(‘WP_DEBUG_LOG’, true);
define(‘WP_DEBUG_DISPLAY’, false);Realize uma compra teste e verifique na pasta wp-content/plugins o arquivo debug.log para verificar onde ele identifica o erro. Tenho um projeto que disponibiliza baixar arquivos após a compra e por aqui está atualizando o status normalmente. Se quiser postar aqui o erro, eu tento te ajudar. Se você for esperar o Mercado Pago está na ro?a rsrs
Now looks perfect. Thank you so much guys!
Forum: Plugins
In reply to: [Premium Addons for Elementor] Blog Widget Bug after update 4.10.30It was already with thumbnail. For some reason I generated the CSS data again and everything went back to normal. Thank you!
About emoji: I would like an option to enable/disable the use of emoji. Just because in Brazil it’s common for some elderly people to only use only emoji for chatting and they don’t type what they need.
About the colour of the X button: The option to change the color of the “X – Close” button is only enabled if I use more than 1 channel. I only use WhatsApp and it doesn’t enable the option to change the color. Before the update we had the option to change the color even if the number of channels was 1. VIDEO: https://www.awesomescreenshot.com/video/26845208?key=a3ac4b19ee3714a23c7b604a0f1c65c2
Thanks!
- This reply was modified 10 months, 2 weeks ago by Tatitas. Reason: ADD VIDEO
Hello, thanks for reaching out. We will work on introducing the ability to change this text shortly. Would you like to notify you once it’s available?
Yes, it would be wonderful!
As to your other question, may I ask which emoji you are referring to? You can also contact us via?[email protected]?and we will do our best to help you out!
On the left side of the “Write your message…” we now have the option to add Emoticons to the message. Can I disable it?
Sorry I have one more question. After the new plugin update, the close button shows as “fill: #A886CD”. It is no longer possible to change the color. So if the website is dark and the button is black, it wouldn’t make sense to use pink as the close button. Will it no longer be possible to change the color of the close button? Code in css:
ellipse [Attributes Style] {
cx: 26;
cy: 26;
rx: 26;
ry: 26;
fill: rgb(168, 134, 205);
}I tried changing the css of the ID: #chaty-widget-0 .chaty-i-trigger .chaty-cta-button button but it doesn’t work.
Bom, estudei vários códigos e cheguei em um. Vou deixar o código abaixo para ajudar outras pessoas:
// Libera editar telefone e celular add_action( 'woocommerce_edit_account_form', 'add_billing_phone_to_edit_account_form' ); function add_billing_phone_to_edit_account_form() { $user = wp_get_current_user(); ?> <p class="woocommerce-form-row woocommerce-form-row--wide form-row form-row-wide"> <label for="billing_phone"><?php _e( 'Celular', 'woocommerce' ); ?> <span class="required">*</span></label> <input type="text" class="woocommerce-Input woocommerce-Input--phone input-text" name="billing_phone" id="billing_phone" value="<?php echo esc_attr( $user->billing_phone ); ?>" /> </p> <?php } add_action( 'woocommerce_save_account_details_errors','billing_phone_field_validation', 20, 1 ); function billing_phone_field_validation( $args ){ if ( isset($_POST['billing__phone']) && empty($_POST['billing_phone']) ) $args->add( 'error', __( 'Digite seu telefone/celular', 'woocommerce' ),''); } add_action( 'woocommerce_save_account_details', 'my_account_saving_billing_phone', 20, 1 ); function my_account_saving_billing_phone( $user_id ) { if( isset($_POST['billing_phone']) && ! empty($_POST['billing_phone']) ) update_user_meta( $user_id, 'billing_phone', sanitize_text_field($_POST['billing_phone']) ); }
Vale lembrar que: billing_phone é para Telefone, billing_mobile_phone é para Celular (caso precise usar telefone/celular no cadastro).
Forum: Plugins
In reply to: [WooCommerce] Product Edit Beta BugI hope it will be possible to use third-party plugins as soon as possible the beta layout is very beautiful. Unfortunately I need third-party plugins and I deactivated the beta version. My feedback was posted here, I hope it helped in some way.
I don’t like to use a lot of plugins, I hoped to have a correct translation. But ok, looks fine.
Thank you.
Forum: Plugins
In reply to: [WooCommerce] Product Edit Beta BugTranslate ENGLISH to PT-BR:
checkout.php
- <span style=”text-decoration: underline;”>”Select how you would like to receive your order.</span>” – It is not translating manually using Loco Translate and it is not translating as default WordPress language (Example: https://simulador.tatitaswebsites.com.br/wp-content/uploads/translate2.png)
- <span style=”text-decoration: underline;”>”Step 3 – Pickup options</span>” – It is not translating manually using Loco Translate and it is not translating as default WordPress language (Example: https://simulador.tatitaswebsites.com.br/wp-content/uploads/translate2.png)
- If you choose to purchase using Pickup option <span style=”text-decoration: underline;”>”Collection from</span>” appears in Order Details – It is not translating manually using Loco Translate and it is not translating as default WordPress language (Example: https://simulador.tatitaswebsites.com.br/wp-content/uploads/translate3.png)
Forum: Plugins
In reply to: [WooCommerce] Product Edit Beta BugAlso:
I have projects with addons and I can’t use them with de Product Editor Beta. Should have a tab like “Addons” or “Extensions”. For example the plugin: Advanced Product Fields Extended for WooCommerce.
Forum: Plugins
In reply to: [WooCommerce] Product Edit Beta BugAlso needs to be fixed:
.wc-block-components-panel__button>.wc-block-components-panel__button-icon {padding-right: 13px;}
.wc-block-components-panel__button {padding-top: 8px;}
Worked. Thank you!
It will be perfect if we have a settings for it on the plugin.