BrunoCassoni
Forum Replies Created
-
Forum: Reviews
In reply to: [Mercado Pago payments for WooCommerce] última atualiza??oremovi está atualiza??o e voltei pra anterior, tudo funcionando perfeitamente.
Forum: Reviews
In reply to: [Mercado Pago payments for WooCommerce] última atualiza??oSim, está em Português do Brasil. Depois da atualiza??o ficou em Espanhol mesmo e n?o volta, e agora n?o abre mais o pagamento na mesma página do site, está redirecionando pro site do Mercado Pago.
Forum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] Exclusive field of caldera formuse RADIO option
Forum: Plugins
In reply to: [Participants Database] Edit link does not work after the last updateI changed
<tbody> <?php while ( $this->have_records() ) : $this->the_record(); // each record is one row ?> <tr> <?php while( $this->have_fields() ) : $this->the_field(); // each field is one cell ?> <td class="<?php echo $this->field->name ?>-field"> <?php $this->field->print_value() ?> </td> <?php endwhile; // each field ?> </tr> <?php endwhile; // each record ?> </tbody> <?php else : // if there are no records ?> <tbody>
to
<tbody> <?php while ( $this->have_records() ) : $this->the_record(); // each record is one row ?> <?php $record = new PDb_Template($this); ?> <tr> <?php while( $this->have_fields() ) : $this->the_field(); // each field is one cell ?> <td class="<?php echo $this->field->name ?>-field"> <?php /* * put the edit link URL into the link property of the field */ if ($this->field->name == 'edit_link') { $this->field->link = $record->get_edit_link(); } $this->field->print_value(); ?> </td> <?php endwhile; // each field ?> </tr> <?php endwhile; // each record ?> </tbody>
and returned to work the link…
Forum: Plugins
In reply to: [CMB2] Translatethe language was already in pt_br when I installed the plugin, and the translation has not occurred, as needed only translate some items changed in php right, thank you for the answer.
Forum: Plugins
In reply to: [WooCommerce] BlockUI alert!look for this iframe in page (plugins/woocommerce/assets/js/woocommerce.min.js)
<iframe class=”blockUI” style=”z-index:’+t++ +’;display:none;border:none;margin:0;padding:0;position:absolute;width:100%;height:100%;top:0;left:0″ src=”‘+h.iframeSrc+'”></iframe>
and delete this…. problem resolved.