Jojogali
Forum Replies Created
-
Excelente diagnóstico. Testamos a transferência bancária e sentimos a mesma dificuldade. Trocamos o e-mail utilizado no envio por outro, alojado num servidor diferente e o problema desvaneceu.
Muito obrigada pelo feedback e ajuda.
Obrigada!
Forum: Plugins
In reply to: [Export and Import Users and Customers] Custom FieldOh great. And does your plugin do this import linked with the client’s ID? Will I be able to add certain information to a certain user? Others I’ve seen only allow to import data but do not connect it to the users accounts.
Thank you!
E têm a certeza que o problema está no plugin Mutlibanco? é que a página inteira n?o carregar é estranho, e deviam haver entradas fatal error no error_log do PHP.
Sim, pois anteriormente aconteceu em 12 encomendas (3 clientes repetidamente a tentar) todas com o mesmo método de pagamento. Expressei-me mal, a pagina carrega, mas os conteúdos abaixo do header ficam a branco. Ou seja, carrega “vazia”.
Vamos necessitar mesmo do nosso log de um dia que tenham tido esse problema e com o registo dessa encomenda especificamente. Se o nosso log n?o tem entradas dessa encomenda é porque nunca chegámos a tentar criar a referência.
Certo, compreendo, infelizmente o dia de ontem (31/05) está vazio no WP, no PHP, nos logs do plugin, em todo o lado. No entanto, como é possível ver no print da encomenda em si, há uma nota de encomenda ao invés das notas normais de uma encomenda que decorra sem qualquer problema, onde é dada uma nova referência – o que sugere que algo correu mal ou pelo menos está diferente pois n?o foi gerada nenhuma referência para a encomenda e aquele processo deu-se sozinho.
Irei continuar a monitorizar para que n?o aconte?a, mas de facto n?o compreendo o que poderá provocar tal situa??o.
Olá, boa tarde!
Obrigado pela resposta t?o rápida. N?o temos log das transa??es do dia de ontem, estranhamente: https://ibb.co/ZBT786YO erro que os utilizadores encontram é a página simplesment n?o carregar para o ecr? final de finaliza??od e encomenda (onde apresentaria a referencia, e dados introduzidos).
Envio lhe alguns prints de uma encomenda onde sucedeu este erro (e a pessoa tentou finalizar a encomenda 4x com os mesmos produtos e obtendo sempre valores ligeiramente diferentes)
https://ibb.co/bB1L4n2
https://ibb.co/FY8hpXRForum: Plugins
In reply to: [CMB2] Suggested terms CleaningI am not sure. The smart search on the HOME page uses FWP for the field filtering.. But maybe? What could I do if that was the case?
Forum: Plugins
In reply to: [CMB2] Suggested terms CleaningHi, I understand my explanation is limited but so is my knowledge in terms of programming, unfortunately. I know enough to make some very basic tasks and search for certain actions.
But I’ll be more than willing to share the file. Since it’s pretty lengthy, please download it here: https://www.filedropper.com/cmb-search-imoveis
Thank you
Yes it is! Thank you ??
(I’ve doubled the allowed memory size and that error disappeared. The other one has been appearing for a few months – before I installed Types so it should not be related. PHP wise there are no more errors)
Hi, thank you for your answer!
The only 2 errors I see are:
[14-Aug-2017 16:11:51 UTC] PHP Notice: has_cap foi chamada com um argumento obsoleto desde a vers?o 2.0! A utiliza??o de níveis de utilizadores através de plugins e temas está obsoleta. Use os papéis e capacidades dos utilizadores em alternativa. in /home/condelix/public_html/wp-includes/functions.php on line 3782
[14-Aug-2017 16:08:39 UTC] PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 81 bytes) in /home/condelix/public_html/wp-includes/wp-db.php on line 2350I can’t seem to register for support, but I can provide you with the code currently active to organize admin columns:
/** * Adiciona colunas ao admin Imóvel * ***/ add_filter( 'manage_edit-imovel_columns', 'ssys_edit_imovel_columns' ) ; function ssys_edit_imovel_columns( $columns ) { $columns = array( 'cb' => '<input type="checkbox" />', 'ref' => __( 'Ref.' ), 'imagem' => __('Imagem'), 'title' => __( 'Imóvel' ), 'destaque' => __('<span class="dashicons dashicons-star-half"></span>'), 'valor' => __( 'Valor' ), 'angariacao' => __( 'No Ang.' ), 'author' => __( 'Comercial' ), 'date' => __( 'Date' ) ); return $columns; } add_action( 'manage_imovel_posts_custom_column', 'ssys_manage_imovel_columns', 10, 2 ); function ssys_manage_imovel_columns( $column, $post_id ) { global $post; switch( $column ) { case 'ref' : echo get_the_ID(); break; case 'imagem' : echo get_the_post_thumbnail( $post_id, array( 100, 100) ); break; case 'imovel' : break; case 'valor' : /* Get the post meta. */ $venda = get_post_meta( $post_id, '_ssys_valor_venda_imovel', true ); $arrendamento = get_post_meta( $post_id, '_ssys_valor_arrendamento_imovel', true ); $trespasse = get_post_meta( $post_id, '_ssys_valor_trespasse_imovel', true ); if( $venda != '0,00' ) echo '<strong> Venda:</strong> '. $venda; if( $arrendamento != '0,00' ) echo '<strong> Arrendamento:</strong>'. $arrendamento; if( $trespasse != '0,00' ) echo '<strong> Trespasse: </strong>'. $trespasse; break; case 'destaque' : $destaque = get_post_meta( $post_id, '_ssys_destaque_imovel', true ); if($destaque){ echo '<span data-id="'. $post_id .'" data-action="unset" class="dashicons dashicons-star-filled"></span>'; }else{ echo '<span data-id="'. $post_id .'" data-action="set" class="dashicons dashicons-star-empty"></span>'; } break; case 'angariacao': $refImovel = get_post_meta( get_the_ID(), '_ssys_num_angariacao_imovel', true ); echo $refImovel; break; /* Just break out of the switch statement for everything else. */ default : break; } } function column_title($item){ //Build row actions $actions = array( 'edit' => sprintf('<a href="/wp-admin/post.php?post=%s&action=%s&imovel=%s">Edit</a>',$item->ID,'edit',$item->ID), ); if($this->post_type == 'interacao'){ if( get_post_meta( $item->ID, '_ssys_privada_interacao', true ) == 'on') $interacao_privada = '<strong>Privado </strong>'; //Return the title contents return sprintf('%1$s %2$s %3$s', /*$1%s*/ $interacao_privada, /*$2%s*/ $item->post_title, /*$3%s*/ $this->row_actions($actions) ); }else{ //Return the title contents return sprintf('%1$s %2$s', /*$1%s*/ $item->post_title, /*$2%s*/ $this->row_actions($actions) ); } }
Is it possible I have to add it there? This was not developed by my, so I wouldn’t know how to properly do so.
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] WooCommerce 3.0 IssuesI’m using version Version 2.3.9 and I currently can’t access the Attributes on the products. It’s a never ending loading. Is this normal?
Forum: Plugins
In reply to: [Slideshow] Responsive SlideYes of, I’ve emailed you. If you miss it, please check your spam box, it might been misplaced.
Thank you ??
Forum: Plugins
In reply to: [Slideshow] Responsive SlideHi, have you reached any conclusion regardings this?
Forum: Plugins
In reply to: [Slideshow] Responsive SlideYes, sadly it’s only available to use and customize on fullscreen. ??