This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-moz-document url-prefix() { | |
.sf-field-taxonomy-job_listing_region .select2-search__field, | |
.sf-field-taxonomy-job_listing_category .select2-search__field { | |
padding-left: 34px !important; | |
} | |
.phd { | |
vertical-align: -moz-middle-with-baseline; | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) { | |
.select2-selection__rendered > span { | |
display: table !important; | |
vertical-align: middle !important; | |
} | |
.select2-selection__rendered > span .phd{ | |
display: table-cell !important; | |
vertical-align: middle !important; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$arrey = array( | |
10 => 59, | |
11 => 60, | |
); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_image_size( 'home-thumbnail', 374, 211 ); | |
function pexeto_get_recent_posts_column_layout_html($recent_posts, $columns, $show_content = true, $thumb_height = null){ | |
$html=''; | |
$img_size = pexeto_get_image_size_options($columns, 'blog'); | |
if($thumb_height!==null){ | |
$img_size['height'] = $thumb_height; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alter table wp_ZxXPA_options change option_name option_name VARBINARY(64); | |
alter table wp_ZxXPA_options change option_name option_name VARCHAR(64) character set utf8mb4 not null default ''; | |
alter table wp_ZxXPA_options change option_value option_value LONGBLOB; | |
alter table wp_ZxXPA_options change option_value option_value LONGTEXT character set utf8mb4 not null; | |
alter table wp_ZxXPA_options change autoload autoload VARBINARY(20); | |
alter table wp_ZxXPA_options change autoload autoload VARCHAR(20) character set utf8mb4 not null default 'yes'; | |
alter table wp_ZxXPA_options character set utf8mb4 COLLATE utf8mb4_unicode_ci; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).ready(function($){ | |
if (window.location.href.indexOf("unternehmens-profil") > -1) { | |
$('.upme-fire-editor-view').trigger('click'); | |
$('.upme-profile-edit-bar').hide(); | |
$('.gt3-page-title.gt3-page-title__dashboard').hide(); | |
$('#billing_email-1, #billing_email-2-1').on('blur', function(){ | |
if($.trim($('#billing_email-1').val()) !== $.trim($('#billing_email-2-1').val())) { | |
$('#billing_email-1, #billing_email-2-1').addClass('error'); | |
$('#billing_email-1').after('<div id="upme-match-email-msg" class="upme-input-text-inline-error" ><i id="upme-reg-email-img" original-title="Invalid" class="upme-icon upme-icon-remove upme-input-text-font-cancel" ></i>' + 'Email addresses should match' + '</div>'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Remove broken product data tabs | |
*/ | |
add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 ); | |
function woo_remove_product_tabs( $tabs ) { | |
unset( $tabs['description'] ); // Remove the description tab | |
unset( $tabs['reviews'] ); // Remove the reviews tab |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).ready(function($){ | |
$.fn.renameTag = function(replaceWithTag){ | |
this.each(function(){ | |
var outerHtml = this.outerHTML; | |
var tagName = $(this).prop("tagName"); | |
var regexStart = new RegExp("^<"+tagName,"i"); | |
var regexEnd = new RegExp("</"+tagName+">$","i") | |
outerHtml = outerHtml.replace(regexStart,"<"+replaceWithTag) | |
outerHtml = outerHtml.replace(regexEnd,"</"+replaceWithTag+">"); | |
$(this).replaceWith(outerHtml); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.keyy-login-wrapper .keyy-switch-label, | |
form#loginform { | |
border-color: #E91E63; | |
} | |
.keyy-wave rect.anim { | |
fill:#E91E63; | |
} | |
img.keyy-login-logo { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_action('user_register', 'keyy_auto_send_qr_on_signup', 10, 1); | |
function keyy_auto_send_qr_on_signup($user) { | |
$keyy = Keyy_Login_Plugin_Premium(); | |
$user_obj = get_user_by('id', $user); | |
$keyy->user_send_connection_code($user_obj, 30); | |
} |