This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This WooCommerce code snippet enables to exclude some categories from the categories list widget. | |
* | |
* Author: Oscar Abad Folgueira | |
* Author URI: http://www.oscarabadfolgueira.com | |
* | |
* You can copy this snippet and paste in your functions.php or you can build your own plugin | |
* | |
* Change the category ids to your needs. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* This WooCommerce code snippet enables you to change de paypal icon-image on checkout page. | |
* | |
* Author: Oscar Abad Folgueira | |
* Author URI: http://www.oscarabadfolgueira.com | |
* | |
* You can copy this snippet and paste in your functions.php or you can build your own plugin | |
* | |
* Change the image for other you want. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Este WordPress Snippet cambia la palabra "Hola" de saludo al usuario logueado. Parte superior derecha de la pantalla. | |
* | |
* Author: Oscar Abad Folgueira | |
* Author URI: http://www.oscarabadfolgueira.com | |
* | |
* You can copy this snippet and paste in your functions.php or you can build your own plugin | |
* | |
* Change the text to replace to your needs. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: OAF Restrict Partial Content Shortcode | |
Plugin URI: https://www.oscarabadfolgueira.com | |
Description: This plugin creates a [restrict_pcs] that you can use to restrict some contents of your posts or pages. | |
Version: 1.0 | |
Author: Oscar Abad Folgueira | |
Author URI: https://www.oscarabadfolgueira.com | |
License: GPLv2 only | |
License URI: http://www.gnu.org/licenses/gpl-2.0.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* Plugin Name: OAF Restrict Partial Content Shortcode | |
* Plugin URI: https://www.oscarabadfolgueira.com/crear-shortcode-restringir-partes-del-contenido | |
* Description: This plugin creates a [restrict_pcs] that you can use to restrict some contents of your posts or pages. | |
* Version: 1.2 | |
* Author: Oscar Abad Folgueira | |
* Author URI: https://www.oscarabadfolgueira.com | |
* License: GPLv2 only | |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function wp_dinapyme_personalizar_colores_mce( $opciones ) { | |
// el array $colores_base contiene los colores estándar del editor de WordPress | |
$colores_base = ' | |
"000000", "Negro", | |
"993300", "Burnt orange", | |
"333300", "Dark olive", | |
"003300", "Dark green", | |
"003366", "Dark azure", | |
"000080", "Navy Blue", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$mis_colores = ' | |
"403075", "Dinapyme Color 1", | |
"408E2F", "Dinapyme Color 2", | |
"AA6B39", "Dinapyme Color 3" | |
'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'woocommerce_product_categories_widget_args', 'dinapyme_woocommerce_excluir_categoria_del_widget' ); | |
// Creación de la función que añade los IDs de las categorías al array de argumentos | |
function dinapyme_woocommerce_excluir_categoria_del_widget( $argumentos_widget ) { | |
$argumentos_widget['exclude'] = array('12','10'); //añadirmos las IDs de las categorías | |
return $argumentos_widget; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'woocommerce_sale_flash', 'dinapyme_wc_modificar_texto_oferta' ); | |
function dinapyme_wc_modificar_texto_oferta( $texto ) { | |
//cabia el valor del texto original 'Sale!' de WooCommerce por el texto '¡Promoción!' | |
return str_replace( __( 'Sale!', 'woocommerce' ), __( '¡Promoción!', 'woocommerce' ), $texto ); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Mi primer plugin | |
* Plugin URI: http://www.dinapyme.com/podcast/42-introduccion-al-desarrollo-de-plugins-para-wordpress/ | |
* Description: Plugin de ejemplo para saber como crear un plugin | |
* Version: 0.1 | |
* Author: Oscar Abad Folgueira | |
* Author URI: https://www.dinapyme.com | |
* Text Domain: dinapyme-ejemplo | |
* Domain Path: /languages/ |