This file contains hidden or 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( 'wp_mail', 'ox_redirect_email_filter', 10, 1 ); | |
function ox_redirect_email_filter( $args ) { | |
// Get original To address | |
$original_to = $args['to']; | |
// Send to developer only | |
$args['to'] = '[email protected]'; |
This file contains hidden or 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
$response = wp_remote_get( 'http://192.168.1.9:8080/users' ); | |
if ( is_array( $response ) ) { | |
$body = wp_remote_retrieve_body( $response ); | |
$data = json_decode( $body ); | |
if( ! empty( $data ) ) { | |
echo '<ul>'; | |
foreach( $data->objects as $product ) { |
This file contains hidden or 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
$(window).load(function(){ | |
// Quitamos el # del hash | |
var hash = location.hash.replace('#',''); | |
//Si hay un hash es que vamos a mostrar un tipo de pista | |
if(hash != ''){ | |
//Hacemos scroll al id que viene en el hash y le quitamos 50px para que aparezca debajo del menú | |
$('html, body').animate({ scrollTop: $('#' + hash).offset().top - 50}, 1000); | |
} |
This file contains hidden or 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 | |
class WC_API_Custom extends WC_API_Resource { | |
protected $base = '/experiences'; | |
public function register_routes( $routes ) { | |
$routes[ $this->base ] = array( | |
array( array( $this, 'get_experiences' ), WC_API_Server::READABLE ) | |
); | |
return $routes; |
This file contains hidden or 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 REST API support to an already registered post type. | |
*/ | |
add_filter( 'register_post_type_args', 'my_post_type_args', 10, 2 ); | |
function my_post_type_args( $args, $post_type ) { | |
if ( 'destination' === $post_type ) { | |
$args['show_in_rest'] = true; | |
This file contains hidden or 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('post_type_link', 'ox_post_type_link', 1, 3); | |
function ox_post_type_link( $link, $post = 0 ){ | |
if ( $post->post_type == 'plan' ){ | |
$terms = wp_get_object_terms( $post->ID, 'tax_destination' ); | |
if (!is_wp_error($terms) && !empty($terms) && is_object($terms[0])) | |
$taxonomy_slug = $terms[0]->slug; | |
return home_url( $taxonomy_slug .'/' . $post->post_name ); |
This file contains hidden or 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: ox Core | |
* Plugin URI: https://github.com/citricamente/ox-core | |
* Version: 0.2 | |
* Author: Citricamente | |
* License: GPL2 | |
* Text Domain: barcelo-core | |
* Domain Path: /languages | |
*/ |
This file contains hidden or 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 | |
add_filter('add_to_cart_redirect', 'themeprefix_add_to_cart_redirect'); | |
function themeprefix_add_to_cart_redirect() { | |
global $woocommerce; | |
$checkout_url = $woocommerce->cart->get_checkout_url(); | |
return $checkout_url; | |
} | |
//Add New Pay Button Text |
NewerOlder