-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions_bck.php
236 lines (184 loc) · 7.58 KB
/
functions_bck.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<?php
/**
* Kukumi shop functions and definitions
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package Kukumi shop
*/
/* Carga CSS y JS */
add_action( 'wp_enqueue_scripts', 'kukumishop_scripts' );
function kukumishop_scripts() {
/* Boostrap 5.3 JS */
wp_enqueue_script( 'bootstrap-js', get_template_directory_uri() . '/inc/bootstrap53/bootstrap.min.js', array( 'jquery' ), '5.3.2', true);
/* Boostrap 5.3 */
wp_enqueue_style( 'bootstrap-css', get_template_directory_uri() . '/inc/bootstrap53/bootstrap.min.css',array(), '5.3.2', 'all');
/* Flickyti 2.3 JS */
wp_enqueue_script( 'flickyti-js', get_template_directory_uri() . '/inc/flickyti23/flickyti.min.js', array( 'jquery' ), '2.3', true);
/* Flickyti 2.3 */
wp_enqueue_style( 'flickyti-css', get_template_directory_uri() . '/inc/flickyti23/flickyti.min.css',array(), '2.3', 'all');
/* Style.css */
wp_enqueue_style( 'kukumishop-style' , get_stylesheet_uri(), array() , filemtime ( get_template_directory() . '/style.css' ) , 'all' );
}
/* Config Theme */
add_action( 'after_setup_theme', 'kukumishop_theme_config', 0 );
function kukumishop_theme_config(){
/* Registro lógico de menu */
register_nav_menus(
array(
'kukumishop_main_menu' => 'Kukumi Shop Main Menu', /* slug */
'kukumishop_footer_menu' => 'Kukumi Shop Footer Menu', /* slug */
)
);
/* Soporte para woocommerce */
/*NOTE: Vamos a declarar la base predeterminada que tendrá nuestra tienda */
add_theme_support( 'woocommerce', array(
'thumbnail_image_width' => 255,
'single_image_width' => 255,
'product_grid' => array(
'default_rows' => 10,
'min_rows' => 5,
'max_rows' => 10,
/* NOTE:Establecemos a 1 para que el usuario no pueda modificarlo en customizer pues vamos a definirlo nosotros */
'default_columns' => 1,
'min_columns' => 3,
'max_columns' => 3,
)
) );
add_theme_support( 'wc-product-gallery-zoom' );
add_theme_support( 'wc-product-gallery-lightbox' );
add_theme_support( 'wc-product-gallery-slider' );
if ( ! isset( $content_width ) ) {
$content_width = 600;
}
}
/* GENERAL Filtros */
/* 1 - Filtro para añadir la clase 'nav-item menu__item' a todas las etiquetas li del menu */
add_filter('nav_menu_css_class', 'kukumishop_agregar_clases_css_menu', 10, 2);
function kukumishop_agregar_clases_css_menu($classes, $item) {
$classes[] = 'nav-item menu__item';
return $classes;
}
/* Woocommerce */
/* 1 - archive-product.php */
//NOTE: Eliminamos el título de la página
add_filter('woocommerce_show_page_title', 'kukumishop_elimina_titulo_pagina');
function kukumishop_elimina_titulo_pagina(){
return false;
}
//NOTE: Ordenación del catálogo
remove_action('woocommerce_before_shop_loop','woocommerce_catalog_ordering',30);
//NOTE: Resultados númericos búsqueda/paginación.
remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
//NOTE: Eliminamos los breadcrumb
remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20 );
/* NOTE: Creamos el contenedor para la vista archive-product.php */
add_action( 'woocommerce_before_main_content','kukumishop_open_container_shop',5 );
function kukumishop_open_container_shop(){
remove_action( 'woocommerce_breadcrumb',20 );
echo '<div class="container-xl shop-content">
<div class="row">';
}
add_action( 'woocommerce_before_main_content', 'kukumishop_add_shop_tags', 9 );
function kukumishop_add_shop_tags(){
echo '<div class="col-lg-10 col-md-8 order-1">';
}
add_action( 'woocommerce_after_main_content', 'kukumishop_close_shop_tags', 4 );
function kukumishop_close_shop_tags(){
echo '</div>';
}
/* NOTE: Cerramos el contenedor container-xl y row */
add_action( 'woocommerce_after_main_content','kukumishop_close_container_shop',5 );
function kukumishop_close_container_shop(){
echo '</div> </div>';
}
/* Eliminamos sidebar para reubicarlos posteriormente */
remove_action( 'woocommerce_sidebar','woocommerce_get_sidebar', 10 );
//NOTE: Estamos metiendo woocommerce_catalog_ordering o el listado de ordenación en el sidebar por medio de un hook action
add_action( 'woocommerce_before_main_content', 'kukumishop_add_sidebar_tags', 6 );
function kukumishop_add_sidebar_tags(){
echo '<div class="sidebar-shop col-lg-2 col-md-4 order-2 ">';
/* Reubicamos select de catalogo para ordenar */
add_action('get_sidebar','woocommerce_catalog_ordering');
}
/* Reubicamos sidebar */
add_action( 'woocommerce_before_main_content','woocommerce_get_sidebar', 7 );
/* Cerramos el contenedor div del sidebar */
add_action( 'woocommerce_before_main_content', 'kukumishop_close_sidebar_tags', 8 );
function kukumishop_close_sidebar_tags(){
echo '</div>';
}
/* Eliminamos el precio para reubicarlo luego */
remove_action ('woocommerce_after_shop_loop_item_title','woocommerce_template_loop_price');
/* Eliminamos el botón añadir al carrito */
remove_action ('woocommerce_after_shop_loop_item','woocommerce_template_loop_add_to_cart');
add_action ('woocommerce_shop_loop_item_title','kukumishop_titulo_precio_wrap',1);
function kukumishop_titulo_precio_wrap() {
echo '<div class="product__info">';
}
add_action ('woocommerce_shop_loop_item_title','woocommerce_template_loop_price');
add_action ('woocommerce_shop_loop_item_title','kukumishop_titulo_precio_end_wrap',20);
function kukumishop_titulo_precio_end_wrap() {
echo '</div>';
}
/*
add_action ('woocommerce_before_shop_loop','test3');
function test3(){
echo 'INICIO LOOP';
}
add_action ('woocommerce_after_shop_loop','test4');
function test4(){
echo 'FIN LOOP';
}
add_action('woocommerce_before_template_part','test1');
function test1(){
echo '-- INICIO --';
}
add_action('woocommerce_after_template_part','test2');
function test2(){
echo '-- FIN --';
}
*/
/* Es el enlace al producto */
//remove_action('woocommerce_before_shop_loop_item','woocommerce_template_loop_product_link_open');
/* Esta es la imagen del producto */
//remove_action('woocommerce_before_shop_loop_item_title','woocommerce_template_loop_product_thumbnail');
/* Este action se ejecuta en cada producto MUY INTERESANTE */
/*
add_action('woocommerce_shop_loop','test1');
function test1(){
//
// global $product;
// echo $product->id . ' - id <br> ' ;
// echo $product->name . '- nombre producto <br>' ;
// echo $product->price . '- precio <br>' ;
// echo $product->sale_price . ' precio sale <br>' ;
// echo $product->image_id . '- id img <br>' ;
// echo $product->product_url . ' - url <br>' ;
//
}
*/
// add_action ('woocommerce_after_shop_loop_item_title','woocommerce_template_loop_price');
/*
add_action ('woocommerce_before_shop_loop','test1');
function test1(){
echo 'INICIO LOOP PRODUCTOS';
}
remove_action ('woocommerce_after_shop_loop','woocommerce_pagination',10);
add_action ('woocommerce_after_shop_loop','woocommerce_pagination',20);
add_action ('woocommerce_after_shop_loop','test2');
function test2(){
echo 'FIN LOOP PRODUCTOS';
}
add_action('woocommerce_before_shop_loop_item_title','test3');
function test3(){
echo 'PING';
}
/* Este filtro recupera la información del orden en el que se va a mostrar el catálogo.
/* Visto en https://decodecms.com/modificar-desplegable-de-orden-de-productos-en-woocommerce/ ver ejemplo.
add_filter( 'woocommerce_catalog_orderby', 'prueba' );
function prueba($args){
var_dump($args);
$cad = '<a> '
return $args;
}
*/