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
function fws_admin_posts_filter( $query ) { | |
global $pagenow; | |
if ( is_admin() && $pagenow == 'edit.php' && !empty($_GET['my_parent_pages'])) { | |
$query->query_vars['post_parent'] = $_GET['my_parent_pages']; | |
} | |
} | |
add_filter( 'parse_query', 'fws_admin_posts_filter' ); | |
function admin_page_filter_parentpages() { | |
global $wpdb; |
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_filter( 'wpseo_schema_webpage', 'change_schema_ref', 11, 2 ); | |
function change_schema_ref( $piece ) { | |
$linkstring ='https://www.agespace.org'.$_SERVER['REQUEST_URI']; | |
$piece['@id']=$linkstring; |
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
.woocommerce.single-product .product .summary .variations { | |
width: 100%; | |
} | |
.woocommerce.single-product .product .summary .variations td { | |
display: block; | |
width: 100%; | |
} | |
.woocommerce.single-product .product .summary .variations td label { | |
font-family: 'Nunito', Helvetica, Arial, sans-serif; | |
letter-spacing: 0px; |
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
//https://stackoverflow.com/questions/3586401/cant-decode-json-string-in-php | |
$json = stripslashes('{\"json\":[{\"username\":\"1062576\",\"accountId\":\"45656565\"}]}'); | |
$postarray = json_decode($json); | |
print_r($postarray); |
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
//https://stackoverflow.com/a/26744533/861265 | |
function getURLParams(url){ | |
var p={}; | |
url.replace(/[?&]+([^=&]+)=([^&]*)/gi,function(s,k,v){p[k]=v}) | |
return p; | |
} |
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
Steps to download, compile, and install are as follows (I'm installing version 1.0.1g below; please replace "1.0.1g" with your version number): | |
Step – 1 : Downloading OpenSSL: | |
Run the command as below : | |
$ wget http://www.openssl.org/source/openssl-1.0.1g.tar.gz | |
Also, download the MD5 hash to verify the integrity of the downloaded file for just varifacation purpose. In the same folder where you have downloaded the OpenSSL file from the website : |
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_filter('acf/fields/relationship/query/name=also_may_like', 'exclude_outofstock', 10, 3); | |
function exclude_outofstock ( $args, $field, $post_id ) { | |
$meta_query[] = [ | |
'key' => '_stock_status', | |
'value' => 'instock', | |
'compare' => '=', |
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 | |
function add_acf_body_class($class) { | |
$value = get_field('header_height'); | |
$class[] = $value; | |
return $class; | |
} | |
add_filter('body_class', 'add_acf_body_class'); |
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 | |
//Disable the new user notification sent to the site admin | |
function smartwp_disable_new_user_notifications() { | |
//Remove original use created emails | |
remove_action( 'register_new_user', 'wp_send_new_user_notifications' ); | |
remove_action( 'edit_user_created_user', 'wp_send_new_user_notifications', 10, 2 ); | |
//Add new function to take over email creation | |
add_action( 'register_new_user', 'smartwp_send_new_user_notifications' ); | |
add_action( 'edit_user_created_user', 'smartwp_send_new_user_notifications', 10, 2 ); |