/*!
Theme Name: Reland
Theme URI: https://www.themegenix.net/reland/
Author: ThemeGenix
Author URI: https://themeforest.net/user/themegenix/
Description: Reland - Real Estate Group WordPress Theme
Version: 1.1
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: reland
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
 .woocommerce ul.products li.product .price{display:none!important}add_filter('woocommerce_product_add_to_cart_text','custom_reserve_button_text');add_filter('woocommerce_product_single_add_to_cart_text','custom_reserve_button_text');function custom_reserve_button_text(){return __('Reservar','woocommerce')}add_filter('woocommerce_add_to_cart_redirect','redirect_to_checkout_instead_cart');function redirect_to_checkout_instead_cart($url){return wc_get_checkout_url()}add_filter('woocommerce_loop_add_to_cart_link','replace_add_to_cart_button',10,2);function replace_add_to_cart_button($button,$product){if ($product->is_purchasable() && $product->is_in_stock()){$checkout_url=wc_get_checkout_url();return '<a href="' . esc_url(/wp-content/themes/reland/$checkout_url) . '" class="button reserve-button">' . __('Reservar','woocommerce') . '</a>'}return $button}