Apache
sudo a2dismod php8.0
sudo a2enmod php7.4
sudo service apache2 restart
<?php | |
// Test cards | |
$cards = array( | |
'378282246310005', // American Express | |
'371449635398431', // American Express | |
'5078601870000127985', // Aura | |
'5078601800003247449', // Aura | |
'30569309025904', // Diners Club | |
'38520000023237', // Diners Club |
<div class="form-group"> | |
<label for="phone">Telefone <span class="required">*</span></label> | |
<input type="text" class="form-control" id="phone" name="phone" placeholder="(99) 9999-9999" pattern="(\([0-9]{2}\))\s([9]{1})?([0-9]{4})-([0-9]{4})" title="Número de telefone precisa ser no formato (99) 9999-9999" required="required" /> | |
</div> |
sudo a2dismod php8.0
sudo a2enmod php7.4
sudo service apache2 restart
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Exemplo de Media Types</title> | |
<!-- todos os dispositivos --> | |
<link href="estilos.css" rel="stylesheet" type="text/css" media="all" /> | |
<!-- monitores e com largura máxima de 600px (por exemplo tablets) --> | |
<link href="estilo1.css" rel="stylesheet" type="text/css" media="screen and (max-width: 800px)" /> | |
<!-- apenas para monitores coloridos --> | |
<link href="estilo2.css" rel="stylesheet" type="text/css" media="only screen and (color)" /> |
function custom_wc_ajax_variation_threshold( $qty, $product ) { | |
return 10; | |
} | |
add_filter( 'woocommerce_ajax_variation_threshold', 'custom_wc_ajax_variation_threshold', 10, 2 ); |
<?php | |
/** | |
* Adds a custom message about how long will take to delivery. | |
*/ | |
function my_wc_custom_cart_shipping_notice() { | |
echo '<tr class="shipping-notice"><td colspan="2"><small>'; | |
_e( '<strong>Atenção:</strong> O prazo de entrega começa a contar a partir da aprovação do pagamento.', 'my-text-domain' ); | |
echo '</small></td></tr>'; | |
} |
<?php | |
/** | |
* Custom simple product price format. | |
* | |
* Adds credit cart parcels in price html. | |
* | |
* @param string $price Old price format. | |
* | |
* @return string Price format with credit card parcels. | |
*/ |
<?php | |
function custom_woocommerce_correios_shipping_methods( $rate ) { | |
$rate['cost'] = 0; | |
return $rate; | |
} | |
add_filter( 'woocommerce_correios_correios-pac_rate', 'custom_woocommerce_correios_shipping_methods' ); |
<?php | |
// Update table | |
function cs_add_data($competition, $date, $numbers) { | |
global $wpdb; | |
$table_name = $wpdb->prefix . 'nome da sua tabela'; | |
$numbers = str_replace('/', '-', $numbers); | |
// Test variables | |
if (!is_numeric($competition)) | |
wp_die('O número do concurso é inválido'); |
<?php | |
/** | |
* Plugin Name: WooCommerce Installments Example | |
* Plugin URI: http://claudiosmweb.com/ | |
* Description: Added the price with 3 installments without interest. | |
* Author: claudiosanches | |
* Author URI: http://www.claudiosmweb.com/ | |
* Version: 1.0 | |
* License: GPLv2 or later | |
*/ |