golden hour
/home/doctorbruno/public_html/doctorbruno.info/taeionline/wp-content/themes/basic/inc
⬆️ Go Up
Upload
File/Folder
Size
Actions
admin
-
Del
OK
customizer
-
Del
OK
hooks.php
11.3 KB
Del
OK
html-blocks.php
3.91 KB
Del
OK
layout.php
4.93 KB
Del
OK
schemaorg.php
4.22 KB
Del
OK
woo-hooks.php
675 B
Del
OK
Edit: woo-hooks.php
<?php /** * WooCommerce Hooks * * @since 1.2.3 * */ /** * * @return string */ if ( ! function_exists( 'basic_woo_custom_cart_button_text' ) ) : function basic_woo_custom_cart_button_text() { return __( 'Add to Cart', 'basic' ); } endif; add_filter( 'woocommerce_product_single_add_to_cart_text', 'basic_woo_custom_cart_button_text' ); add_filter( 'woocommerce_product_add_to_cart_text', 'basic_woo_custom_cart_button_text' ); /** * * @param $cols * * @return int */ if ( ! function_exists( 'basic_woo_custom_cols' ) ) : function basic_woo_custom_cols( $cols ) { return 12; } endif; add_filter( 'loop_shop_per_page', 'basic_woo_custom_cols', 20 );
Save