-
Notifications
You must be signed in to change notification settings - Fork 1
/
functions.php
executable file
·578 lines (497 loc) · 14.9 KB
/
functions.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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
<?php
/**
* Odin functions and definitions.
*
* Sets up the theme and provides some helper functions, which are used in the
* theme as custom template tags. Others are attached to action and filter
* hooks in WordPress to change core functionality.
*
* For more information on hooks, actions, and filters,
* see http://codex.wordpress.org/Plugin_API
*
* @package Odin
* @since 2.2.0
*/
/**
* Sets content width.
*/
if ( ! isset( $content_width ) ) {
$content_width = 600;
}
/**
* Odin Classes.
*/
require_once get_template_directory() . '/core/classes/class-bootstrap-nav.php';
require_once get_template_directory() . '/inc/class-bootstrap-nav-boaterra.php';
require_once get_template_directory() . '/core/classes/class-shortcodes.php';
require_once get_template_directory() . '/core/classes/class-thumbnail-resizer.php';
// require_once get_template_directory() . '/core/classes/class-theme-options.php';
// require_once get_template_directory() . '/core/classes/class-options-helper.php';
// require_once get_template_directory() . '/core/classes/class-post-type.php';
// require_once get_template_directory() . '/core/classes/class-taxonomy.php';
// require_once get_template_directory() . '/core/classes/class-metabox.php';
// require_once get_template_directory() . '/core/classes/abstracts/abstract-front-end-form.php';
// require_once get_template_directory() . '/core/classes/class-contact-form.php';
// require_once get_template_directory() . '/core/classes/class-post-form.php';
// require_once get_template_directory() . '/core/classes/class-user-meta.php';
// require_once get_template_directory() . '/core/classes/class-post-status.php';
// require_once get_template_directory() . '/core/classes/class-term-meta.php';
/**
* Odin Widgets.
*/
require_once get_template_directory() . '/core/classes/widgets/class-widget-like-box.php';
/**
* A Boa Terra Widgets
*/
require_once get_template_directory() . '/inc/widgets.php';
if ( ! function_exists( 'odin_setup_features' ) ) {
/**
* Setup theme features.
*
* @since 2.2.0
*/
function odin_setup_features() {
/**
* Add support for multiple languages.
*/
load_theme_textdomain( 'odin', get_template_directory() . '/languages' );
/**
* Register nav menus.
*/
register_nav_menus(
array(
'main-menu' => __( 'Main Menu', 'odin' )
)
);
register_nav_menus(
array(
'institucional' => __( 'Menu institucional', 'odin' )
)
);
/*
* Add post_thumbnails suport.
*/
add_theme_support( 'post-thumbnails' );
/**
* Add feed link.
*/
add_theme_support( 'automatic-feed-links' );
/**
* Support Custom Header.
*/
$default = array(
'width' => 0,
'height' => 0,
'flex-height' => false,
'flex-width' => false,
'header-text' => false,
'default-image' => '',
'uploads' => true,
);
add_theme_support( 'custom-header', $default );
/**
* Support Custom Background.
*/
$defaults = array(
'default-color' => '',
'default-image' => '',
);
add_theme_support( 'custom-background', $defaults );
/**
* Support Custom Editor Style.
*/
add_editor_style( 'assets/css/editor-style.css' );
/**
* Add support for infinite scroll.
*/
add_theme_support(
'infinite-scroll',
array(
'type' => 'scroll',
'footer_widgets' => false,
'container' => 'content',
'wrapper' => false,
'render' => false,
'posts_per_page' => get_option( 'posts_per_page' )
)
);
/**
* Add support for Post Formats.
*/
// add_theme_support( 'post-formats', array(
// 'aside',
// 'gallery',
// 'link',
// 'image',
// 'quote',
// 'status',
// 'video',
// 'audio',
// 'chat'
// ) );
/**
* Support The Excerpt on pages.
*/
// add_post_type_support( 'page', 'excerpt' );
/**
* Switch default core markup for search form, comment form, and comments to output valid HTML5.
*/
add_theme_support(
'html5',
array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption'
)
);
/*
* Let WordPress manage the document title.
* By adding theme support, we declare that this theme does not use a
* hard-coded <title> tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( 'title-tag' );
add_image_size( 'mini-thumbnail', 80, 80 );
}
}
add_filter( 'woocommerce_product_single_add_to_cart_text', 'woo_custom_cart_button_text' ); // 2.1 +
function woo_custom_cart_button_text() {
return __( 'ADICIONAR NO CARRINHO', 'odin' );
}
add_action( 'after_setup_theme', 'odin_setup_features' );
// WooCommerce Checkout Fields Hook
add_filter( 'woocommerce_checkout_fields' , 'hjs_wc_checkout_fields' );
function hjs_wc_checkout_fields( $fields ) {
$fields['billing']['billing_email']['label'] = 'Email';
return $fields;
}
// Adiciona 32 itens por pagina
add_filter( 'loop_shop_per_page', 'new_loop_shop_per_page', 20 );
function new_loop_shop_per_page( $cols ) {
return 32;
}
/**
* Register widget areas.
*
* @since 2.2.0
*/
function odin_widgets_init() {
register_sidebar(
array(
'name' => __( 'Main Sidebar', 'odin' ),
'id' => 'main-sidebar',
'description' => __( 'Site Main Sidebar', 'odin' ),
'before_widget' => '<aside id="%1$s" class="widget %2$s">',
'after_widget' => '</aside>',
'before_title' => '<h3 class="widgettitle widget-title">',
'after_title' => '</h3>',
)
);
register_sidebar(
array(
'name' => __( 'Home E-mail/Mais pedidos Sidebar', 'odin' ),
'id' => 'home-email-sidebar',
'description' => __( 'Home E-mail Sidebar', 'odin' ),
'before_widget' => '',
'after_widget' => '',
'before_title' => '',
'after_title' => '',
)
);
register_sidebar(
array(
'name' => __( 'Home Produtos Sidebar', 'odin' ),
'id' => 'home-produtos-sidebar',
'description' => __( 'Home Produtos Sidebar', 'odin' ),
'before_widget' => '',
'after_widget' => '',
'before_title' => '',
'after_title' => '',
)
);
register_sidebar(
array(
'name' => __( 'Rodapé 1', 'odin' ),
'id' => 'footer-sidebar',
'description' => __( 'Footer Sidebar', 'odin' ),
'before_widget' => '',
'after_widget' => '',
'before_title' => '',
'after_title' => '',
)
);
register_sidebar(
array(
'name' => __( 'Rodapé 2', 'odin' ),
'id' => 'footer-sidebar-2',
'description' => __( 'Footer Sidebar 2', 'odin' ),
'before_widget' => '',
'after_widget' => '',
'before_title' => '',
'after_title' => '',
)
);
register_sidebar(
array(
'name' => __( 'Rodapé 3', 'odin' ),
'id' => 'footer-sidebar-3',
'description' => __( 'Footer Sidebar 3', 'odin' ),
'before_widget' => '',
'after_widget' => '',
'before_title' => '',
'after_title' => '',
)
);
register_sidebar(
array(
'name' => __( 'Rodapé 4', 'odin' ),
'id' => 'footer-sidebar-4',
'description' => __( 'Footer Sidebar 4', 'odin' ),
'before_widget' => '',
'after_widget' => '',
'before_title' => '',
'after_title' => '',
)
);
}
add_action( 'widgets_init', 'odin_widgets_init' );
/**
* Flush Rewrite Rules for new CPTs and Taxonomies.
*
* @since 2.2.0
*/
function odin_flush_rewrite() {
flush_rewrite_rules();
}
add_action( 'after_switch_theme', 'odin_flush_rewrite' );
function odin_unlogged_user_body_class( $classes ) {
if ( ! is_user_logged_in() ) {
$classes[] = 'unlogged-user';
}
// return the $classes array
return $classes;
}
add_filter( 'body_class', 'odin_unlogged_user_body_class' );
/**
* Load site scripts.
*
* @since 2.2.0
*/
function odin_enqueue_scripts() {
$template_url = get_template_directory_uri();
// Loads Odin main stylesheet.
wp_enqueue_style( 'odin-style', get_stylesheet_uri(), array(), null, 'all' );
// jQuery.
wp_enqueue_script( 'jquery' );
// General scripts.
if ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) {
// Bootstrap.
wp_enqueue_script( 'bootstrap', $template_url . '/assets/js/libs/bootstrap.min.js', array(), null, true );
// FitVids.
wp_enqueue_script( 'fitvids', $template_url . '/assets/js/libs/jquery.fitvids.js', array(), null, true );
// Main jQuery.
wp_enqueue_script( 'odin-main', $template_url . '/assets/js/main.js', array(), null, true );
} else {
// Grunt main file with Bootstrap, FitVids and others libs.
wp_enqueue_script( 'odin-main-min', $template_url . '/assets/js/main.min.js', array(), null, true );
}
wp_localize_script( 'odin-main-min', 'odin', array( 'ajax_url' => admin_url( 'admin-ajax.php' ) ) );
$woocommerce_checkout_params = array(
'ajax_url' => WC()->ajax_url(),
'wc_ajax_url' => WC_AJAX::get_endpoint( "%%endpoint%%" ),
'update_order_review_nonce' => wp_create_nonce( 'update-order-review' ),
'apply_coupon_nonce' => wp_create_nonce( 'apply-coupon' ),
'remove_coupon_nonce' => wp_create_nonce( 'remove-coupon' ),
'option_guest_checkout' => get_option( 'woocommerce_enable_guest_checkout' ),
'checkout_url' => WC_AJAX::get_endpoint( "checkout" ),
'is_checkout' => is_page( wc_get_page_id( 'checkout' ) ) && empty( $wp->query_vars['order-pay'] ) && ! isset( $wp->query_vars['order-received'] ) ? 1 : 0,
'debug_mode' => defined('WP_DEBUG') && WP_DEBUG,
'i18n_checkout_error' => esc_attr__( 'Error processing checkout. Please try again.', 'woocommerce' ),
);
wp_localize_script( 'odin-main-min', 'wc_checkout_params', $woocommerce_checkout_params );
// Grunt watch livereload in the browser.
// wp_enqueue_script( 'odin-livereload', 'http://localhost:35729/livereload.js?snipver=1', array(), null, true );
// Load Thread comments WordPress script.
if ( is_singular() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
if (is_account_page() || is_cart() ||is_home()) {
wp_enqueue_script( 'jquery-mask', get_template_directory_uri() . '/assets/js/jquery.mask.min.js', array(), false, true );
}
}
add_action( 'wp_enqueue_scripts', 'odin_enqueue_scripts', 1 );
/**
* Odin custom stylesheet URI.
*
* @since 2.2.0
*
* @param string $uri Default URI.
* @param string $dir Stylesheet directory URI.
*
* @return string New URI.
*/
function odin_stylesheet_uri( $uri, $dir ) {
return $dir . '/assets/css/style.css';
}
add_filter( 'stylesheet_uri', 'odin_stylesheet_uri', 10, 2 );
/**
* Query WooCommerce activation
*
* @since 2.2.6
*
* @return boolean
*/
if ( ! function_exists( 'is_woocommerce_activated' ) ) {
function is_woocommerce_activated() {
return class_exists( 'woocommerce' ) ? true : false;
}
}
/**
* Core Helpers.
*/
require_once get_template_directory() . '/core/helpers.php';
/**
* WP Custom Admin.
*/
require_once get_template_directory() . '/inc/admin.php';
/**
* Comments loop.
*/
require_once get_template_directory() . '/inc/comments-loop.php';
/**
* WP optimize functions.
*/
require_once get_template_directory() . '/inc/optimize.php';
/**
* Custom template tags.
*/
require_once get_template_directory() . '/inc/template-tags.php';
/**
* WooCommerce compatibility files.
*/
if ( is_woocommerce_activated() ) {
add_theme_support( 'woocommerce' );
require get_template_directory() . '/inc/woocommerce/hooks.php';
require get_template_directory() . '/inc/woocommerce/functions.php';
require get_template_directory() . '/inc/woocommerce/template-tags.php';
}
/**
* WP Customizer ( kirki )
*/
require_once get_template_directory() . '/inc/customizer.php';
/**
* ACF and Fields.
*/
require_once get_template_directory() . '/inc/acf/acf.php';
require_once get_template_directory() . '/inc/custom-fields.php';
/**
* Extra WC Fields
*/
require_once get_template_directory() . '/inc/class-extra-fields.php';
/**
* Brasa Donate
*/
// require_once get_template_directory() . '/inc/class-donate-plugin.php';
function plugin_prefix_unregister_post_type(){
unregister_post_type( 'instituicoes' );
}
add_action('init','plugin_prefix_unregister_post_type');
/**
* Order to TXT
*/
require_once get_template_directory() . '/inc/class-order-to-txt.php';
function wc_remove_related_products( $args ) {
return array();
}
add_filter('woocommerce_related_products_args','wc_related_products', 10);
// adiciona quantidade de ítens em uma nova coluna na listagem de produtos
function sv_wc_cogs_add_qty_column_header( $columns ) {
$new_columns = array();
foreach ( $columns as $column_name => $column_info ) {
$new_columns[ $column_name ] = $column_info;
if ( 'order_number' === $column_name ) {
$new_columns['qty'] = __( 'Comprado', 'odin' );
}
}
return $new_columns;
}
add_filter( 'manage_edit-shop_order_columns', 'sv_wc_cogs_add_qty_column_header', 20 );
function sv_wc_cogs_add_qty_column_content( $column ) {
global $post;
if ( 'qty' === $column ) {
$order = wc_get_order( $post->ID );
$bundle_qty = 0;
$itens_qty = 0;
foreach( $order->get_items() as $item ) {
$product = $item->get_product();
// if ( $sku = $product->get_sku() ) {
if ( isset( $item[ 'bundled_by'] ) ) {
$bundle_qty++;
continue;
}
$itens_qty++;
// }
}
if ($itens_qty == 1) {
echo $itens_qty . ' item ';
}
else{
echo $itens_qty . ' itens ';
}
if ($bundle_qty) {
if ($bundle_qty == 1) {
echo '[ '. $bundle_qty .' produto agrupado ]';
}
else{
echo '[ '. $bundle_qty .' produtos agrupados ]';
}
}
}
}
add_action( 'manage_shop_order_posts_custom_column', 'sv_wc_cogs_add_qty_column_content' );
// adiciona quantidade de ítens em uma nova coluna na listagem de produtos
// add_action( 'woocommerce_before_single_product_summary', 'product_list_bundle', 40);
// lista produtos na cache_javascript_headers()
function product_list_bundle(){
global $product;
print_r(get_post_meta( $product->id ));
print_r($product->id);
if ( $product->is_type( 'yith_bundle' ) ) : ?>
<div class="product-grouped">
<span class="col-md-12 product-grouped-list section-title">
<?php _e( 'Itens: ', 'odin' );?>
</span>
<?php
foreach ( $product->get_bundled_items() as $product_item ) :
$product_id = $product_item->product_id;
if ( ! $product = wc_get_product( $product_id ) ) {
continue;
}
if ( 'yes' === get_option( 'woocommerce_hide_out_of_stock_items' ) && ! $product->is_in_stock() ) {
continue;
}
$post = $product->post;
setup_postdata( $post );
?>
<span class="col-md-12 product-grouped-list">
<?php echo get_the_title( $product_id );?>
</span>
<?php endforeach;
// Reset to parent grouped product
$post = $parent_product_post;
$product = wc_get_product( $parent_product_post->ID );
setup_postdata( $parent_product_post );
?>
</div><!-- .product-grouped -->
<?php endif;
}
/**
* Remove the password strength meter script from the scripts queue
* you can also use wp_print_scripts hook
*/
add_action( 'wp_enqueue_scripts', 'misha_deactivate_pass_strength_meter', 10 );
function misha_deactivate_pass_strength_meter() {
wp_dequeue_script( 'wc-password-strength-meter' );
}