Paulo Miranda
Forum Replies Created
-
Forum: Plugins
In reply to: [FCM Push Notification from WP] Subscribe to notifications?HI,
I sent a new version of the plugin and modified its description to indicate that the purpose is for apps.
thanks for your contribution
Forum: Plugins
In reply to: [FCM Push Notification from WP] Subscribe to notifications?HI,
Thanks for the sugestion. I will improve the description. The notification is sent to the users who installed the application you developed and integrated the Firebase Cloud Message
Precisei disso agora, já que tou criando um catálogo. É que o produto ainda vai ser produzido.
usei css
.resultado-frete table td:nth-child(3) {
display: none;
}vai esconder a terceira coluna da tabela
Forum: Plugins
In reply to: [FCM Push Notification from WP] Flutter click_actionHi,
I modified it to not check the option when editing a page or post. I sent a new version.
1.2.0
When editing a post or page, the screen no longer has the option of sending a marked notification. If you want to send a notification when performing an update you need to check the Send Push Notification option.Thank you for your contribution
Forum: Plugins
In reply to: [FCM Push Notification from WP] title & body is not displaying rightHI,
I sent a correction. I removed the html code from the title and the content tags (blocks)
Forum: Plugins
In reply to: [FCM Push Notification from WP] Flutter click_actionHI,
The click_action key already exists in the Fcm-dp-push-notification.php file
https://dprogrammer.net/wp-content/uploads/2020/10/click-action-ok.jpg
I will perform new tests to release an update and see if everything is ok
Forum: Plugins
In reply to: [FCM Push Notification from WP] the plug dont workUse the Cloud Messaging option to send a notification. There is an option to send to a user token and to a topic. Choose topic option
Forum: Plugins
In reply to: [FCM Push Notification from WP] the plug dont workI just set up on a client’s website, and it’s working.
I received in an application that I am developing using Flutter
Does it work when using the test option?
/wp-admin/admin.php?page=fcmdpplgpn_push_notification&tab=test_fcmIs the topic the same registered in the application?
It is not the name of the application that informs, but the topicWhen you send the message using the firebase control panel, does the application receive the notification?
I’m sorry for just answering now
Boa tarde,
eu consegui resolver o problema com as máscaras com a dica que existe aqui no fórum, e sobre o problema dos campos desalinhados eu achei no stackoverflow.
Atualizei um site de teste para a versão 3.5.2 e continuou funcionando: máscara e alinhamentos.
Comentei sobre esses dois problemas no post abaixo.
Checkout desalinhado e problemas com as máscaras no Woocommerce
O problema do alinhamento, é que o label do complemento some, fazendo o campo ficar fora do lugar.
Forum: Plugins
In reply to: [Brazilian Market on WooCommerce] Checkout todo desalinhadoBoa tarde Raphaloi,
minha loja só tinha um produto virtual, por isso nem me atentei para esse problema. Cadastrei um produto físico e percebi que ao clicar na opção de informar um endereço de entrega, não mostrava os campos. Depois de bater cabeça tentando resolver, percebi que existe um erro na função. Quando desabilitei ela, voltou a mostrar.
o nome da função tá diferente do declarado no add_filter
custom_woocommerce_shipping_fields_custom
custom_woocommerce_shipping_fields// Shipping Fields.
add_filter( ‘woocommerce_shipping_fields’, ‘custom_woocommerce_shipping_fields’ );
function custom_woocommerce_shipping_fields_custom( $fields ) {
$fields[‘shipping_address_2’][‘label’] = ‘Address 2’;
$fields[‘shipping_address_2’][‘label_class’] = ”;return $fields;
}Forum: Plugins
In reply to: [Brazilian Market on WooCommerce] Checkout todo desalinhadoInspecionando o html, percebi que o label estava lá, mas não mostrava. Achei que tivesse sob o menu fixo do meu site. Tentei utilizar o código que está aqui, mas não resolveu. Em outro tópico aqui do fórum tem uma solução com css que até alinhou o campo, mas ficou sem label. Olhando com mais atenção percebi que tinha uma classe que no endereço 1 não tinha: screen-reader-text. Quando removi ela via inspesionar, o label voltou. Como não consegui desabilitar o css, pesquisei por uma solução no google
achei isso aqui, que resolveu
https://stackoverflow.com/questions/50525250/set-billing-address-2-label-in-woocommerce-checkoutPara resolver o problema das máscaras existe uma solução aqui no fórum também.
Então nesse caso, o problema não do plugin de checkout, é por causa de uma classe de acessibilidade que faz o conteúdo sumir da tela.
screen-reader-text
https://make.ww.wp.xz.cn/accessibility/handbook/markup/the-css-class-screen-reader-text/