-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
executable file
·1301 lines (1036 loc) · 39 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
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?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() . '/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() . '/inc/ajax-functions.php';
// require_once get_template_directory() . '/inc/pre-venda.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';
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' ),
'menu-topo' => __( 'Menu Topo', 'odin' ),
'menu-categorias' => __( 'Menu Categorias', 'odin' ),
'menu-footer' => __( 'Menu Footer Suporte', 'odin' ),
'menu-footer-2' => __( 'Menu Footer Minha', '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_action( 'after_setup_theme', 'odin_setup_features' );
/**
* 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>',
)
);
}
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' );
/**
* Load site scripts.
*
* @since 2.2.0
*/
function odin_enqueue_scripts() {
$template_url = get_template_directory_uri();
wp_enqueue_style( 'odin-custom-style', $template_url . '/assets/css/custom.css', array(), null, 'all' );
wp_enqueue_style( 'google-fonts', 'https://fonts.googleapis.com/css?family=Roboto+Condensed:700,400,300|Roboto:400,700,300', array(), null, 'all' );
wp_enqueue_script( 'owl-js',$template_url .'/inc/owl-carousel/owl-carousel/owl.carousel.js', array(), null, true );
wp_enqueue_style( 'owl-style', $template_url .'/inc/owl-carousel/owl-carousel/owl.carousel.css', array(), null, 'all' );
wp_enqueue_style( 'owl-theme', $template_url .'/inc/owl-carousel/owl-carousel/owl.theme.css', array(), null, 'all' );
// Loads Odin main stylesheet.
wp_enqueue_style( 'odin-style', get_stylesheet_uri(), array(), null, 'all' );
// jQuery.
wp_enqueue_script( 'jquery' );
wp_enqueue_script( 'attrchange',$template_url .'/assets/js/attrchange.js', array('jquery'), null, true );
wp_enqueue_script( 'attrchange_ext-js',$template_url .'/assets/js/attrchange_ext.js', array('jquery'), null, true );
// General scripts.
// 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 );
wp_enqueue_script( 'mask-js', $template_url . '/assets/js/mask.js', array(), null, true );
wp_localize_script( 'odin-main', 'odin_main', array('ajaxurl' => admin_url( 'admin-ajax.php' ) ) );
// 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' );
}
}
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';
/**
*custom post types
*/
require_once get_template_directory() . '/inc/custom-post.php';
require_once get_template_directory() . '/inc/options.php';
/**
*custom fields
*/
require_once get_template_directory() . '/inc/custom-fields.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';
}
// add_action( 'init', 'menu' );
add_action('init', 'add_excerpt_pages');
function add_excerpt_pages() {
add_post_type_support( 'page', 'excerpt' );
}
add_image_size( 'slider-1', 1200, 557, array( 'left', 'top' ) ); // Hard crop left top
add_image_size( 'slider-2', 642, 400, array( 'left', 'top' ) ); // Hard crop left top
add_image_size( 'slider-3', 1200, 557, array( 'left', 'top' ) ); // Hard crop left top
add_image_size( 'video', 500, 280, array( 'left', 'top' ) ); // Hard crop left top
add_image_size( 'produto-galeria', 450, 700, array( 'left', 'top' ) ); // Hard crop left top
add_image_size( 'produto-single', 500, 420, array( 'left', 'top' ) ); // Hard crop left top
add_image_size( 'sub-video', 407, 280, array( 'left', 'top' ) ); // Hard crop left top
///////add to cart
function cs_wc_loop_add_to_cart_scripts() {
if ( is_shop() || is_product_category() || is_product_tag() || is_product() || is_home() ): ?>
<script>
jQuery( document ).ready( function( $ ) {
$( document ).on( 'change', '.quantity .qty', function() {
$( this ).parent( '.quantity' ).next( '.add_to_cart_button' ).attr( 'data-quantity', $( this ).val() );
});
});
</script>
<?php endif;
}
add_action( 'wp_footer', 'cs_wc_loop_add_to_cart_scripts' );
///adiciona no menu///
add_filter( 'wp_nav_menu_items', 'add_loginout_link', 10, 2 );
function add_loginout_link( $items, $args ) {
if (is_user_logged_in() && ($args->theme_location == 'menu-topo' OR $args->theme_location == 'menu-footer-2')) {
$items .= '<li class="menu-item menu-item-type-post_type menu-item-object-page carrinho-menu"><a href="'. wp_logout_url( get_permalink( woocommerce_get_page_id( 'myaccount' ) ) ) .'">Sair</a></li>';
$items .= '<li class="menu-item menu-item-type-post_type menu-item-object-page page_item page-item-9 menu-item-28"><a title="Minha conta" href="' . get_permalink( wc_get_page_id( 'myaccount' )).'">Minha conta</a></li>';
}
elseif (!is_user_logged_in() && ($args->theme_location == 'menu-topo' OR $args->theme_location == 'menu-footer-2')) {
$items .= '<li class="menu-item menu-item-type-post_type menu-item-object-page carrinho-menu"><a href="' . get_permalink( wc_get_page_id( 'myaccount' ) ) . '">Entrar</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page carrinho-menu"><a href="' . get_permalink( wc_get_page_id( 'myaccount' ) ) . '">Criar conta</a></li>';
}
return $items;
}
add_filter( 'wp_nav_menu_items', 'your_custom_menu_item', 10, 2 );
function your_custom_menu_item ( $items, $args ) {
if ( $args->theme_location == 'menu-topo') {
$items .= "<li class='menu-item menu-item-type-post_type menu-item-object-page carrinho-menu'>
<div class='inline-block carrinho-link'><a class='inline-block cart-contents' href='".WC()->cart->get_cart_url()."'>
<img src='".get_template_directory_uri()."/assets/images/carrinho.png' alt=''></a></div>
<div class='inline-block carrinho-cont'>". WC()->cart->get_cart_contents_count() ."</div> <div class='inline-block carrinho-valor' ".WC()->cart->get_cart_total()."</li>";
}
return $items;
}
/**
* Register meta box(es).
*/
// function wpdocs_register_meta_boxes() {
// add_meta_box( 'customizador', __( 'Customização do texto', 'textdomain' ), 'wpdocs_my_display_callback', 'slide' );
// }
// add_action( 'add_meta_boxes', 'wpdocs_register_meta_boxes' );
/**
* Meta box display callback.
*
* @param WP_Post $post Current post object.
*/
function wpdocs_my_display_callback( $post ) {
$terms = wp_get_post_terms( $post->ID, 'slider' );
$slider=$terms[0]->slug;
?>
<style>
#acf-tamanho_da_fonte_do_titulo,#acf-cor_da_fonte_do_titulo, #acf-tamanho_da_fonte_do_texto, #acf-cor_do_texto, #acf-preco{
display:inline-block;
margin:0 20px;
}
#edit-slug-box{
display:none;
}
#acf-tamanho_da_fonte_do_titulo, #acf-tamanho_da_fonte_do_texto {
text-align: center;
}
#acf-tamanho_da_fonte_do_titulo input, #acf-tamanho_da_fonte_do_texto input{
width:40px;
}
#customizador{
overflow:scroll;
}
#customizador img{
width:initial;
height: initial;
}
#dummyId div{
line-height: initial;
}
</style>
<!-- <img src="<?php echo get_template_directory_uri();?>/inc/imagem.php" width="200" height="80"> -->
<div style="position:relative">
<div style="position:relative;z-index:9"></div>
<?php
echo get_the_post_thumbnail($post->ID, $slider, array( 'id' => 'thumb-canvas' ));
?>
<canvas id="canvas" style="position:absolute;top:0;z-index:999;left:0;background:transparent;text-align:center;"> -->
This text is displayed if your browser does not support HTML5 Canvas.
</canvas>
<div id="dummyId">
</div>
</div>
<div id="log"></div>
</section>
<?php
// Display code/markup goes here. Don't forget to include nonces!
}
/**
* Save meta box content.
*
* @param int $post_id Post ID
*/
function wpdocs_save_meta_box( $post_id ) {
// Save logic goes here. Don't forget to include nonce checks!
}
add_action( 'save_post', 'wpdocs_save_meta_box' );
function myposttype_admin_js($hook_suffix) {
global $typenow; if ($typenow=="slide") {
echo '<script type="text/javascript">
jQuery(document).ready(function($) {
var canvas;
var ctx;
var x = 50;
var y = 50;
var dx = 5;
var dy = 3;
var determineFontHeight = function(fontStyle) {
var body = document.getElementById("dummyId");
var dummy = document.createElement("div");
var dummyText = document.createTextNode("M");
dummy.appendChild(dummyText);
dummy.setAttribute("style", fontStyle);
dummy.className="dummyclass";
body.appendChild(dummy);
var result = dummy.clientHeight;
body.removeChild(dummy);
return result;
};
tam_tit = document.getElementById("acf-field-tamanho_da_fonte_do_titulo").value;
cor_tit = document.getElementById("acf-field-cor_da_fonte_do_titulo").value;
tam_txt = document.getElementById("acf-field-tamanho_da_fonte_do_texto").value;
cor_txt = document.getElementById("acf-field-cor_do_texto").value;
console.log( tam_tit )
console.log( cor_tit )
console.log( tam_txt )
console.log( cor_txt )
var style = "font-family: Roboto; font-size: " + tam_tit + ";";
var pixelHeight = determineFontHeight(style);
var dragok = false,
tit1 = document.getElementById("acf-field-titulo_linha_1"),
canvas = document.getElementById("canvas");
text1=tit1.value;
console.log("text1:"+text1)
thumb = document.getElementById("thumb-canvas");
console.log(WIDTH);
var WIDTH = thumb.offsetWidth;
console.log(WIDTH);
var HEIGHT = thumb.height;
canvas.width=WIDTH;
canvas.height=HEIGHT;
var bodyRectY = document.body.getBoundingClientRect(),
elemRectY = canvas.getBoundingClientRect(),
offsetY = elemRectY.top - bodyRectY.top + +40;
var bodyRectX = document.body.getBoundingClientRect(),
elemRectX = canvas.getBoundingClientRect(),
offsetX = elemRectX.left - bodyRectX.left ;
function rect(x,y,w,h) {
ctx.font = tam_tit+"px Roboto";
ctx.fillText(text1, x, y);
}
function clear() {
ctx.clearRect(0, 0, WIDTH, HEIGHT);
}
function init() {
canvas = document.getElementById("canvas");
ctx = canvas.getContext("2d");
return setInterval(draw, 10);
}
function draw() {
clear();
ctx.fillStyle = "#FAF7F8";
ctx.fillStyle = cor_tit;
textLength = ctx.measureText(text1); // TextMetrics object
textLength = textLength.width
rect(x - 15, y + 15, textLength, 30);
}
function myMove(e){
if (dragok){
x = e.pageX - offsetX -textLength/2;
y = e.pageY - offsetY-pixelHeight/2;
}
}
function myDown(e){
jQuery( "#log" ).html(
"e.pageY: "+e.pageY+
"<br>y:"+ y+
"<br>canvas.offsetTop:"+canvas.offsetTop +
"<br>pageY: " + event.pageY+
"<br>offsetY: " + offsetY+
"<br>canvas.scrollLeft: " + canvas.scrollLeft+
"<br>e.pageY< y + 15 + offsetY"+
"<br>"+e.pageY +"<"+ y + " + " + 15 +" + "+ offsetY+
"<br>e.pageY> y - 15 + offsetY"+
"<br>"+e.pageY +">"+ y + " - " + 15 +" + " + offsetY+
"<br><br>e.pageX: "+e.pageX+
"<br>x:"+ x+
"<br>canvas.offsetLeft:"+canvas.offsetLeft +
"<br>offsetX: " + offsetX+
"<br>pageX: " + event.pageX+
"<br>e.pageX < x + textLength + offsetX"+
"<br>"+ e.pageX +" < "+ textLength + " + " + 15 + " + " + offsetX+
"<br>e.pageX > x - 15 + offsetX" +
"<br>"+ e.pageX +" > "+ x + " - " + 15 + " + " + offsetX);
if (
e.pageX < x + textLength/2 + offsetX &&
e.pageX > x - textLength/2 + offsetX &&
e.pageY < y + pixelHeight/2 + offsetY &&
e.pageY > y - pixelHeight/2 + offsetY){
x = (e.pageX - offsetX) - textLength/2;
y = (e.pageY - offsetY) - pixelHeight/2;
dragok = true;
canvas.onmousemove = myMove;
}
}
function myUp(){
dragok = false;
canvas.onmousemove = null;
}
init();
canvas.onmousedown = myDown;
canvas.onmouseup = myUp;
});
</script>';
}
}
add_action('admin_print_footer_scripts', 'myposttype_admin_js');
// customizer//
function DG_customize_register($wp_customize){
$wp_customize->add_section('DG_text_slider', array(
'title' => __('Textos dos Sliders', 'DG'),
'priority' => 120,
));
// =============================
// = Text Input =
// =============================
$wp_customize->add_setting('legenda', array(
'default' => 'Edddditavel!',
'capability' => 'edit_theme_options',
'type' => 'option',
));
$wp_customize->add_control('DG_slider1', array(
'label' => __('Legenda Slider 1', 'DG'),
'section' => 'DG_text_slider',
'settings' => 'legenda',
));
}
add_action('customize_register', 'DG_customize_register');
// remove_all_filters( 'get_the_excerpt');
function adiciona_coupon(){
echo 'teste';
}
// add_action('woocommerce_cart_totals_before_order_total', 'adiciona_coupon');
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40);
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 6);
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_excerpt', 20);
remove_action( 'woocommerce_product_tabs', 'woocommerce_product_reviews_tab', 30);
remove_action( 'woocommerce_product_tab_panels', 'woocommerce_product_reviews_panel', 30);
add_filter( 'woocommerce_product_tabs', 'sb_woo_remove_reviews_tab', 98);
function sb_woo_remove_reviews_tab($tabs) {
unset($tabs['reviews']);
return $tabs;
}
add_filter('woocommerce_variable_price_html','custom_from',10,2);
add_filter('woocommerce_grouped_price_html','custom_from',10,2);
add_filter('woocommerce_variable_sale_price_html','custom_from',10,2);
function custom_from($price, $product){
$prices = $product->get_variation_prices( true );
$min_price = current( $prices['regular_price']);
$min2 = current($prices['sale_price']);
if ($min_price==$min2){
return '<ins><span class="amount">R$'
.$min_price
.'</span></ins>';
}
else{
// echo '<pre>';
// print_r($prices);
// echo 'teste'.$min_price;
// echo "</pre>";
return '<del><span class="amount">R$'
.$min_price.'</span></del> <ins><span class="amount">R$'
.$min2
.'</span></ins>';
}
}
add_filter( 'manage_slide_posts_columns', 'set_custom_edit_slide_columns' );
add_action( 'manage_slide_posts_custom_column' , 'custom_slide_column', 10, 2 );
function set_custom_edit_slide_columns($columns) {
$columns['slider'] = __( 'Slider', 'your_text_domain' );
return $columns;
}
function custom_slide_column( $column, $post_id ) {
switch ( $column ) {
case 'slider' :
$terms = get_the_term_list( $post_id , 'slider' , '' , ',' , '' );
if ( is_string( $terms ) )
echo $terms;
else
_e( 'Nenhum Slider', 'your_text_domain' );
break;
}
}
show_admin_bar( false);
add_action('admin_head', 'my_custom_fonts');
function my_custom_fonts() {
echo '<style>
.advanced_options, #product-type option[value="external"], #product-type option[value="grouped"], ._sold_individually_field, .options_group:nth-child(2) .dimensions_field, .linked_product_tab, #commentsdiv{
display:none!important;
}
#product-type option[value="external"]{
}
</style>';
}
function load_template_part($template_name, $part_name=null) {
ob_start();
get_template_part($template_name, $part_name);
$var = ob_get_contents();
ob_end_clean();
return $var;
}
add_filter( 'woocommerce_add_to_cart_redirect', 'rv_redirect_on_add_to_cart' );
function rv_redirect_on_add_to_cart() {
if ( isset( $_GET['add-to-cart'] ) ) {
$product_id = $_GET['add-to-cart'];
return get_permalink( $product_id );
}
}
function wcmvp_set_view_count( $post_id ) {
$count_key = 'wcmvp_product_view_count';
$count = get_post_meta( $post_id, $count_key, true );
if ( $count == '' ) {
delete_post_meta( $post_id, $count_key );
update_post_meta( $post_id, $count_key, '1' );
} else {
$count ++;
update_post_meta( $post_id, $count_key, (string) $count );
}
}
function wcmvp_set_view_count_products() {
global $product;
wcmvp_set_view_count( $product->id );
}
add_action( 'woocommerce_after_single_product', 'wcmvp_set_view_count_products' );
function remove_loop_button(){
remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );
}
add_action('init','remove_loop_button');
/*STEP 2 -ADD NEW BUTTON THAT LINKS TO PRODUCT PAGE FOR EACH PRODUCT */
add_action('woocommerce_after_shop_loop_item','replace_add_to_cart');
function replace_add_to_cart() {
global $product;
if ($product->get_stock_quantity()==0 && $product->get_type() !='variable' ){
$link = $product->get_permalink();
echo '<a data-prod-id="'.$product->get_id().'" data-link="'.$link.'" data-nome="'.$product->get_title().'"class="encomendarAdd button" href="#" class="button addtocartbutton">Esgotago</a>';
}
elseif($product->get_type() =='variable'){
$filhas=$product->get_children();
$estoque=0;
foreach ($filhas as $filha => $id) {
$produto = get_product($id);
if ($produto->get_stock_quantity()!=0) {
$estoque=1;
}
// echo '<prev>';
// print_r($produto->get_stock_quantity());
// echo '</prev>';
}
if ($estoque ==0) {
$link = $product->get_permalink();
echo '<a data-prod-id="'.$product->get_id().'" data-link="'.$link.'" data-nome="'.$product->get_title().'"class="encomendarAdd button" href="#" class="button addtocartbutton">Esgotago</a>';
}
else{
woocommerce_template_loop_add_to_cart();
}
}
else{
woocommerce_template_loop_add_to_cart();
}
}
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
add_action( 'woocommerce_single_product_summary', 'custom_woocommerce_template_single_add_to_cart' );
function custom_woocommerce_template_single_add_to_cart(){
global $product;
if($product->get_type() =='variable'){
$filhas=$product->get_children();
$estoque=0;
foreach ($filhas as $filha => $id) {
$produto = get_product($id);
if ($produto->get_stock_quantity()!=0) {
$estoque=1;
}
// echo '<prev>';
// print_r($produto->get_stock_quantity());
// echo '</prev>';
}
if ($estoque ==0) {
$link = $product->get_permalink();
$prices = $product->get_variation_prices( true );
$min_price = current( $prices['regular_price']);
echo '';
echo '<div class="preco" style="display:block;float:left;width:initial" itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<p class="price"> <ins><span class="amount">R$'.$min_price.'</span></ins></p>
<meta itemprop="price" content="10">
<meta itemprop="priceCurrency" content="BRL">
<link itemprop="availability" href="http://schema.org/OutOfStock">
</div>
<div class="botao-comprar">
Esgotado!<br><a data-link="'.$link.'" data-nome="'.$product->get_title().'"class="encomendarAdd button" href="#" class="button addtocartbutton">Encomendar</a>
</div>';
}
else{
woocommerce_template_single_add_to_cart();
}
}
else{
woocommerce_template_single_add_to_cart();
}
}
add_action( 'wpcf7_init', 'custom_add_shortcode_encomenda' );
function custom_add_shortcode_encomenda() {
wpcf7_add_shortcode( 'encomenda', 'custom_encomenda_shortcode_handler' );
}
function custom_encomenda_shortcode_handler( $tag ) {
return '<input id="encomendaLink" type="hidden" name="link"value=""><input id="encomendaNome" type="hidden" name="produto"value="">';
}
add_filter( 'woocommerce_get_availability', 'wcs_custom_get_availability', 1, 2);
function wcs_custom_get_availability( $availability, $_product ) {
// Change Out of Stock Text
if ( $_product->get_stock_quantity()==0 && $_product->get_type() !='variation' ) {
$link = $_product->get_permalink();
echo 'Esgotado!<br>';
echo '<a data-link="'.$link.'" data-nome="'.$_product->get_title().'"class="encomendarAdd button" href="#" class="button addtocartbutton">Encomendar</a>';
}
// echo $_product;
// echo '<pre>';
// print_r($_product);
// echo '</pre>';
}
/* Adding the Add-To-Cart button so that it would go after the main product description.
*/
// add_action( 'woocommerce_after_single_product_summary', 'woocommerce_template_single_add_to_cart', 12 );
// remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
function my_woocommerce_add_error( $error ) {
if( 'Que feio! O e-mail ou token do PagSeguro são inválidos amiguinho!' == $error ) {
$error = 'O e-mail ou token do PagSeguro são inválidos.';
}
return $error;
}
add_filter( 'woocommerce_add_error', 'my_woocommerce_add_error' );
// customizacao data de aniversario
// adiciona campo nascimento no checkout
// adiciona campo nascimento no checkout
/**
* Add the field to the checkout
**/
add_action('woocommerce_checkout_billing', 'my_custom_checkout_field', 20);
function my_custom_checkout_field( $user ) {
?>
<p class="form-row form-row form-row-first " id="nascimento_field">
<label for="nascimento" class="">Data de nascimento</label>
<input type="text" class="input-text " name="nascimento" id="nascimento" placeholder="" value="<?php echo get_user_meta( get_current_user_id(), 'date_of_birth', true ) ?>">
</p>
<p class="form-row form-row form-row-last " id="sexo_field">
<label for="sexo" class="">Sexo</label>
<input type="text" class="input-text " name="sexo" id="sexo" placeholder="" value="<?php echo get_user_meta( get_current_user_id(), 'sexo', true ) ?>">
</p>
<?php
}
// function reigel_woocommerce_checkout_fields( $checkout_fields = array() ) {
// $checkout_fields['order']['date_of_birth'] = array(
// 'type' => 'text',
// 'class' => array('my-field-class form-row-wide'),
// 'label' => __('Data de Nascimento'),
// 'placeholder' => __('dd/mm/aaaa'),
// 'required' => false,
// 'value' =>'bla'
// );
// return $checkout_fields;
// }
// add_filter( 'woocommerce_checkout_fields', 'reigel_woocommerce_checkout_fields' );
// adiciona campo nascimento no checkout
// adiciona campo nascimento no checkout
// salva campo nascimento no checkout
// salva campo nascimento no checkout
function reigel_woocommerce_checkout_update_user_meta( $customer_id, $posted ) {
print_r($posted);
if (isset($_POST['nascimento'])) {
$dob = sanitize_text_field( $_POST['nascimento'] );
update_user_meta( $customer_id, 'date_of_birth', $dob);
}
if (isset($_POST['sexo'])) {
$dob = sanitize_text_field( $_POST['sexo'] );
update_user_meta( $customer_id, 'sexo', $dob);
}
}
add_action( 'woocommerce_checkout_update_user_meta', 'reigel_woocommerce_checkout_update_user_meta', 10, 2 );