negapo
Forum Replies Created
-
Forum: Plugins
In reply to: [Moloni] Aten??o, houve um erro ao inserir o documentoOlá Francisco,
O erro parece ser devido ao envio por transportadora n?o ter uma taxa de IVA e n?o estar configurado, nas op??es do plug-in, uma raz?o para a isen??o dos portes no envio. Basta escolher uma raz?o de isen??o, ou optar por cobrar IVA no transporte (que é o mais frequente). Se optar por cobrar IVA no transporte a configura??o é feita no WooCommerce, nos métodos de envio tem de marcar a op??o Situa??o fiscal: Tributável.
Forum: Plugins
In reply to: [Moloni] Escolher o estado da encomenda para emiss?o de FaturaMuito bom trabalho, obrigado.
Forum: Plugins
In reply to: [Moloni] Hook depois de criado uma Nota de CréditoPerfeito, muito obrigado, acho que vai facilitar muito a integra??o do plug-in com lógicas de negócio mais avan?adas.
Sure, sorry for the lack of details:
In list view, the media library opens in edit mode which is different from last version, and the fields Title and Alt text cannot be edit, if you click save or cancel nothing happens. Take a look:
https://ibb.co/F8FDPDw
WC 8.5.2
WP 6.4.3
Store Front and no additional plug-ins
No console js errors.Forum: Plugins
In reply to: [Moloni] Código AT no meta da encomenda?Boa dica, obrigado pelo código.
Just a side note, that’s not a filter, that’s a function, not a good idea to change core functions but if this a temporary issue there is no problem. The main thing is the last post, thats what we want to hear, this is not a environment or installation issue, its a bug thats being addressed.
For anyone who finds it usefull:
function sg_security_add_roles( $roles ) { $roles[] = 'role_id_name'; return $roles; } add_filter( "sg_security_2fa_roles", "sg_security_add_roles");
Sorry, there is already a filter: “sg_security_2fa_roles”
I didn’t read the code to the end
We have the same problem, will you do anything at the plug-in side on future versions to solve this?
The above code isn’t a filter right, its a core WP function, should we overwrite it?
Forum: Plugins
In reply to: [Moloni] Op??o Ignorar Encomendas com valor zero na Integra??o automáticaOlá Ricardo, suponho que um exemplo prático aplicável ao seu problema fosse uma melhor resposta por isso aqui vai:
// Esta Linha de código faz com que a fun??o 'filtrar_documentos' seja chamada antes do Moloni criar um documento e permite-nos, por exemplo, cancelar a sua cria??o add_filter( 'moloni_before_insert_document' , 'filtrar_documentos' ); // Esta fun??o vê o valor total do documento e se for menor ou igual 0€ cancela a sua cria??o. function filtrar_documentos( $documento ) { if ($documento->documentTotal < 0.01) { $documento->stopProcess = true; } return $documento; }
Este código deve ser inserido no ficheiro “functions.php” que pode encontrar quando edita o seu tema em “Editor de Ficheiros de Tema”.
Eu n?o testei o código e tenho ideia que ele neste momento aplica-se a todo o tipo de documentos, sejam guias de transportes, faturas, faturas-recibo, etc. Provavelmente só quererá aplicar a algum tipo de documentos mas talvez a equipa do Moloni possa ajudar.
Great, thanks for the detailed answer.
Or using the product ID dor example.
Thanks Pavel, great answer and idea. Any way i can only purge the cache for individual products (or product URL). Does the function take any arguments?
ThanksSame here, users cannot log in with 2FA after the update. Nothing fancy on my setup, a single site of WP + Woo hosted on siteground with the SG Optimize and Security Plug-in.
Do i have to reset the 2FA cods on everybody?Thanks a lot.