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
|
<?php /** * Enqueue scripts and styles. */ function penci_scripts() {
wp_enqueue_style( 'penci-font-awesome', get_template_directory_uri() . '/css/font-awesome.min.css', '', '4.5.2' ); $fontawesome_ver5 = penci_get_setting( 'penci_fontawesome_ver5' ); if ( $fontawesome_ver5 ) { wp_enqueue_style( 'penci-font-awesomev5', get_template_directory_uri() . '/css/font-awesome.5.11.2.swap.min.css', array(), '5.11.2' ); }
if ( ! penci_get_theme_mod( 'penci_disable_default_fonts' ) ) { wp_enqueue_style( 'penci-fonts', penci_fonts_url(), array(), '1.0' ); $data_fonts = penci_fonts_url( 'earlyaccess' ); if ( is_array( $data_fonts ) && ! empty( $data_fonts ) ) { foreach ( $data_fonts as $fontname ) { wp_enqueue_style( 'penci-font-' . $fontname, '//fonts.googleapis.com/earlyaccess/' . esc_attr( $fontname ) . '.css', array(), PENCI_PENNEWS_VERSION ); } } }
if ( class_exists( 'WooCommerce' ) ) { wp_enqueue_style( 'penci-woocommerce', get_template_directory_uri() . '/css/woocommerce.css', '', PENCI_PENNEWS_VERSION ); }
if ( class_exists( 'bbPress' ) ) { wp_enqueue_style( 'penci-bbpress', get_template_directory_uri() . '/css/pennews-bbpress.css', '', PENCI_PENNEWS_VERSION ); }
if ( class_exists( 'BuddyPress' ) ) { wp_enqueue_style( 'penci-buddypress', get_template_directory_uri() . '/css/pennews-buddypress.css', '', PENCI_PENNEWS_VERSION ); }
if ( class_exists( 'Tribe__Events__Main' ) ) { wp_enqueue_style( 'penci-events', get_template_directory_uri() . '/css/events.css', '', PENCI_PENNEWS_VERSION ); }
if ( class_exists( 'Penci_Portfolio' ) ) { wp_enqueue_style( 'penci-portfolio', get_template_directory_uri() . '/css/portfolio.css', '', PENCI_PENNEWS_VERSION ); } if ( function_exists( 'penci_pennews_recipe_load_textdomain' ) ) { wp_enqueue_style( 'penci-recipe', get_template_directory_uri() . '/css/recipe.css', '', PENCI_PENNEWS_VERSION ); } if ( function_exists( 'penci_register_review_scripts' ) ) { wp_enqueue_style( 'penci-review', get_template_directory_uri() . '/css/review.css', '', PENCI_PENNEWS_VERSION ); }
$nav_show = penci_get_theme_mod( 'penci_verttical_nav_show' );
if ( $nav_show ) { wp_enqueue_style( 'penci-vertical-nav', get_template_directory_uri() . '/css/vertical-nav.css', '', PENCI_PENNEWS_VERSION ); }
wp_enqueue_style( 'penci-style', get_stylesheet_uri(), '', PENCI_PENNEWS_VERSION );
$check_mac = strpos( getenv( "HTTP_USER_AGENT" ), 'Mac' ); if ( penci_get_setting( 'penci_smooth_scroll' ) && $check_mac == false ) { wp_enqueue_script( 'smoothscroll', get_template_directory_uri() . '/js/smoothscroll.js', array( 'jquery' ), '', true ); }
if ( defined( 'PENCI_DEPLOY_MODE' ) && PENCI_DEPLOY_MODE ) { wp_register_script( 'fitvids', get_template_directory_uri() . '/js/fitvids.js', array( 'jquery' ), '1.1', true );
wp_enqueue_script( 'theia-sticky-sidebar', get_template_directory_uri() . '/js/theia-sticky-sidebar.js', array( 'jquery' ), '', true );
if ( ! penci_get_setting( 'penci_hide_header_sticky' ) ) { wp_enqueue_script( 'jquery-sticky', get_template_directory_uri() . '/js/jquery.sticky.js', array( 'jquery' ), '1.0', true ); }
if ( is_singular() ) { wp_enqueue_script( 'infinitescroll', get_template_directory_uri() . '/js/jquery.infinitescroll.min.js', array( 'jquery' ), '', true ); }
wp_enqueue_script( 'mousewheel', get_template_directory_uri() . '/js/jquery.mousewheel.min.js', array( 'jquery' ), '3.1.13', true ); wp_enqueue_script( 'mCustomScrollbar', get_template_directory_uri() . '/js/jquery.mCustomScrollbar.min.js', array( 'jquery','mousewheel' ), '3.1.5', true ); wp_enqueue_script( 'video', get_template_directory_uri() . '/js/jquery.video.js', array( 'jquery' ), '0.1.3', true );
wp_enqueue_script( 'TweenMax', get_template_directory_uri() . '/js/TweenMax.min.js', array( 'jquery' ), '1.20.4', true ); wp_enqueue_script( 'wow', get_template_directory_uri() . '/js/wow.min.js', array( 'jquery' ), '1.1.3', true ); wp_enqueue_script( 'owl.carousel', get_template_directory_uri() . '/js/owl.carousel.min.js', array( 'jquery' ), '1.0', true ); wp_enqueue_script( 'flexmenu', get_template_directory_uri() . '/js/flexmenu.min.js', array( 'jquery' ), '1.0', true ); wp_enqueue_script( 'inview', get_template_directory_uri() . '/js/jquery.inview.min.js', array( 'jquery' ), '1.1.0', true );
wp_register_script( 'velocity', get_template_directory_uri() . '/js/velocity.min.js', array( 'jquery' ), '1.5.0', true ); wp_register_script( 'imagesloaded', get_template_directory_uri() . '/js/imagesloaded.pkgd.min.js', '', '4.1.0', true ); wp_register_script( 'magnific-popup', get_template_directory_uri() . '/js/magnific-popup.min.js', array( 'jquery' ), '1.1.0', true ); wp_register_script( 'lazy', get_template_directory_uri() . '/js/jquery.lazy.min.js', array( 'jquery' ), '1.8.2', true );
wp_register_script( 'jquery.isotope', get_template_directory_uri() . '/js/isotope.pkgd.min.js', array( 'jquery' ), '3.0.4', true ); wp_register_script( 'jquery.justifiedGallery', get_template_directory_uri() . '/js/jquery.justifiedGallery.min.js', array( 'jquery' ), '3.6.3', true );
wp_enqueue_script('jarallax', get_template_directory_uri() . '/js/jarallax.min.js', array('jquery'), '1.9.0', true ); wp_enqueue_script('jarallax-video', get_template_directory_uri() . '/js/jarallax-video.min.js', array('jarallax'), '1.9.0', true );
wp_enqueue_script('on-screen', get_template_directory_uri() . '/js/on-screen.umd.min.js', array('jquery'), '1.3.2', true );
wp_enqueue_script( 'penci-script-lib', get_template_directory_uri() . '/js/script.lib.min.js', array( 'fitvids', 'velocity', 'imagesloaded', 'owl.carousel', 'flexmenu', 'magnific-popup', 'lazy', 'jquery.justifiedGallery', 'jquery.isotope', 'mCustomScrollbar', 'jarallax-video' ), PENCI_PENNEWS_VERSION ); wp_enqueue_script( 'penci', get_template_directory_uri() . '/js/script.js', array('penci-script-lib'), PENCI_PENNEWS_VERSION, true );
} else { wp_enqueue_script( 'penci-script-lib', get_template_directory_uri() . '/js/script.lib.min.js', array('jquery'), PENCI_PENNEWS_VERSION, true ); wp_enqueue_script( 'penci', get_template_directory_uri() . '/js/script.min.js', array( 'jquery', 'penci-script-lib' ), PENCI_PENNEWS_VERSION, true ); }
$localize_script = array( 'ajaxUrl' => admin_url( 'admin-ajax.php' ), 'nonce' => wp_create_nonce( 'ajax-nonce' ), 'errorMsg' => esc_html__( 'Something wrong happened. Please try again.', 'pennews' ), 'login' => penci_get_tran_setting( 'penci_plogin_email_place' ), 'password' => penci_get_tran_setting( 'penci_plogin_pass_place' ), 'errorPass' => '<p class="message message-error">' . penci_get_tran_setting( 'penci_plogin_mess_error_email_pass' ) . '</p>', 'prevNumber' => penci_get_setting( 'penci_autoload_prev_number' ), 'minlengthSearch' => penci_get_setting( 'penci_ajaxsearch_minlength' ), 'linkTitle' => penci_get_tran_setting( 'penci_linkTitle_text' ), 'linkTextAll' => penci_get_tran_setting( 'penci_linkTextAll_text' ), 'linkText' => penci_get_tran_setting( 'penci_linkText_text' ), ); wp_localize_script( 'penci', 'PENCILOCALIZE', $localize_script );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } }
add_action( 'wp_enqueue_scripts', 'penci_scripts' );
if( !function_exists('penci_admin_scripts') ) { function penci_admin_scripts( $hook ) {
if ( $hook == 'widgets.php' || 'nav-menus.php' == $hook ) { wp_enqueue_style( 'wp-color-picker' ); wp_enqueue_script( 'wp-color-picker' ); wp_enqueue_media(); wp_enqueue_script( 'penci-admin-widget', get_template_directory_uri() . '/js/admin-widget.js', array( 'jquery'), PENCI_PENNEWS_VERSION, true );
wp_localize_script( 'penci-admin-widget', 'Penci', array( 'WidgetImageTitle' => esc_html__( 'Select an image', 'pennews' ), 'WidgetImageButton' => esc_html__( 'Insert into widget', 'pennews' ), 'ajaxUrl' => admin_url( 'admin-ajax.php' ), 'nonce' => wp_create_nonce( 'ajax-nonce' ), 'sidebarAddFails' => esc_html__( 'Adding custom sidebar fails.', 'pennews' ), 'sidebarRemoveFails' => esc_html__( 'Removing custom sidebar fails.', 'pennews' ), 'cfRemovesidebar' => esc_html__( 'Are you sure you want to remove this custom sidebar?', 'pennews' ), ) ); }
wp_enqueue_style( 'penci-admin', get_template_directory_uri() . '/css/admin.css', '', PENCI_PENNEWS_VERSION ); if( is_rtl() ){ wp_enqueue_style( 'penci-admin-rtl.css', get_template_directory_uri() . '/css/admin-rtl.css', '', PENCI_PENNEWS_VERSION ); } } } add_action( 'admin_enqueue_scripts', 'penci_admin_scripts' );
/** * Get Google fonts URL for the theme. * * @return string Google fonts URL for the theme. */ function penci_fonts_url( $data = 'normal' ) { $fonts = $array_earlyaccess = array(); $subsets = 'latin,latin-ext';
$array_fonts = array( 'Roboto', 'Mukta Vaani', 'Oswald', 'Teko' );
$array_options = $array_get = $earlyaccess = array();
if ( penci_get_theme_mod( 'penci_font_textlogo' ) ) { $array_options[] = penci_get_theme_mod( 'penci_font_textlogo' ); } if ( penci_get_theme_mod( 'penci_font_textlogo_on_mobile' ) ) { $array_options[] = penci_get_theme_mod( 'penci_font_textlogo_on_mobile' ); } if ( penci_get_theme_mod( 'penci_fwidget_font_blocktitle' ) ) { $array_options[] = penci_get_theme_mod( 'penci_fwidget_font_blocktitle' ); } if ( penci_get_theme_mod( 'penci_font_for_title' ) ) { $array_options[] = penci_get_theme_mod( 'penci_font_for_title' ); } if ( penci_get_theme_mod( 'penci_font_for_body' ) ) { $array_options[] = penci_get_theme_mod( 'penci_font_for_body' ); } if ( penci_get_theme_mod( 'penci_font_slogan' ) ) { $array_options[] = penci_get_theme_mod( 'penci_font_slogan' ); } if ( penci_get_theme_mod( 'penci_font_main_menu_item' ) ) { $array_options[] = penci_get_theme_mod( 'penci_font_main_menu_item' ); } if ( penci_get_theme_mod( 'penci_font_blocktitle' ) ) { $array_options[] = penci_get_theme_mod( 'penci_font_blocktitle' ); } if ( penci_get_theme_mod( 'penci_footer_font_textlogo' ) ) { $array_options[] = penci_get_theme_mod( 'penci_footer_font_textlogo' ); }
if ( penci_get_theme_mod( 'penci_block_pag_rmore_font' ) ) { $array_options[] = penci_get_theme_mod( 'penci_block_pag_rmore_font' ); }
if ( penci_get_theme_mod( 'penci_arch_rmore_font' ) ) { $array_options[] = penci_get_theme_mod( 'penci_arch_rmore_font' ); }
if ( penci_get_theme_mod( 'penci_font_block_heading_title' ) ) { $array_options[] = penci_get_theme_mod( 'penci_font_block_heading_title' ); }
if ( penci_get_theme_mod( 'penci_font_textlogo_mobile_nav' ) ) { $array_options[] = penci_get_theme_mod( 'penci_font_textlogo_mobile_nav' ); }
if( ! empty( $array_options ) ) {
$font_earlyaccess = penci_font_google_earlyaccess(); $font_earlyaccess_keys = array_keys( $font_earlyaccess ); foreach( $array_options as $font ) {
if( in_array( $font, $font_earlyaccess_keys ) ){
if( isset( $font_earlyaccess[$font] ) ){ $font_earlyaccess_name = strtolower( str_replace(' ', '', $font_earlyaccess[$font] ) ); $array_earlyaccess[] = $font_earlyaccess_name; } continue; }
$font_family = str_replace( '"', '', $font ); $font_family_explo = explode( ", ", $font_family ); $array_get[] = $font_family_explo[0]; }
unset( $font_earlyaccess, $font_earlyaccess_keys ); }
$array_end = array_unique( array_merge( $array_fonts, $array_get ), SORT_REGULAR );
$string_end = implode( ':300,300italic,400,400italic,500,500italic,700,700italic,800,800italic|', $array_end ); $string_end .= ':300,300italic,400,400italic,500,500italic,700,700italic,800,800italic';
if ( 'off' !== _x( 'on', 'Google font: on or off', 'pennews' ) ) { $fonts_url = add_query_arg( 'family', urlencode( $string_end . ':300,300italic,400,400italic,500,500italic,700,700italic,800,800italic&subset=cyrillic,cyrillic-ext,greek,greek-ext,latin-ext' ), "//fonts.googleapis.com/css" ); }
if( $data == 'earlyaccess' ) { return $array_earlyaccess; } else { return $fonts_url; } }
if( ! function_exists( 'penci_add_css_ie' ) ) { function penci_add_css_ie() {
if ( ! function_exists( 'penci_get_server_value' ) ) { return ''; }
$http_user_agent = penci_get_server_value( 'HTTP_USER_AGENT' ); if ( preg_match( '~MSIE|Internet Explorer~i', $http_user_agent ) || ( strpos( $http_user_agent, 'Trident/7.0; rv:11.0' ) !== false ) ) { echo '<st' . 'yle type="text/css">.main-navigation.pencimn-slide_down ul li:hover > ul,.main-navigation.pencimn-slide_down ul ul{-webkit-transform: none;-moz-transform: none; -ms-transform: none; -o-transform: none; transform: none;}</st' . 'yle>'; } } }
add_action('wp_head', 'penci_add_css_ie', 999 );
|