This file contains 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 scan_folders( $path = '', $return = array() ) { | |
$path = $path == ''? dirname( __FILE__ ) : $path; | |
$lists = @scandir( $path ); | |
if ( ! empty( $lists ) ) { | |
foreach ( $lists as $f ) { | |
if ( is_dir( $path . DIRECTORY_SEPARATOR . $f ) && $f != "." && $f != ".." ) { | |
if ( ! in_array( $path . DIRECTORY_SEPARATOR . $f, $return ) ) | |
$return[] = trailingslashit( $path . DIRECTORY_SEPARATOR . $f ); | |
This file contains 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 | |
/*source: https://stackoverflow.com/questions/26848825/php-sorting-array-by-id-and-parent-id*/ | |
$arr = array( | |
array('id' => 1, 'parent' => 0, 'title' => 'XXX1', 'children'=>array()), | |
array('id' => 85, 'parent' => 0, 'title' => 'XXX2', 'children'=>array()), | |
array('id' => 41, 'parent' => 0, 'title' => 'XXX2', 'children'=>array()), | |
array('id' => 17, 'parent' => 0, 'title' => 'XXX3', 'children'=>array()), | |
array('id' => 66, 'parent' => 1, 'title' => 'XXX4', 'children'=>array()), | |
array('id' => 92, 'parent' => 1, 'title' => 'XXX5', 'children'=>array()), |
This file contains 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 | |
/* Forked from : https://gist.github.com/yoanmarchal/4030827 */ | |
/** | |
* Given a string containing any combination of YouTube and Vimeo video URLs in | |
* a variety of formats (iframe, shortened, etc), each separated by a line break, | |
* parse the video string and determine it's valid embeddable URL for usage in | |
* popular JavaScript lightbox plugins. | |
* | |
* In addition, this handler grabs both the maximize size and thumbnail versions |
This file contains 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 | |
/* WooCommerce prices shown with or without tax depending on client type */ | |
add_filter( 'option_woocommerce_tax_display_shop', 'woocommerce_show_prices_with_or_without_tax' ); | |
add_filter( 'option_woocommerce_tax_display_cart', 'woocommerce_show_prices_with_or_without_tax' ); | |
function woocommerce_show_prices_with_or_without_tax( $option ) { | |
if ( is_user_logged_in() ) { | |
//Client type from user_meta or profile or whatever... | |
//Example: $client_hide_tax = get_user_meta( get_current_user_id(), 'client_type', true ) ? true : false; | |
//Example to create this field on registration: https://gist.github.com/webdados/c8dbbe7ccdea3463312e5b865ad92d92 |
This file contains 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 | |
class WP_HTML_Compression | |
{ | |
// Settings | |
protected $compress_css = true; | |
protected $compress_js = true; | |
protected $info_comment = true; | |
protected $remove_comments = true; | |
// Variables |
This file contains 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 | |
/** | |
* Repeatable Custom Fields in a Metabox with Image upload | |
* Drag and Drop option | |
* Modified by: ashokmhrj | |
* Extracted from: Helen Hou-Sandi | |
*/ | |
define('PATH_TO_JS','define path here'); | |
function ask_admin_repeater_script(){ |
This file contains 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
/** | |
* WordPress | |
* Showing feature image in admin post listing | |
*/ | |
add_filter('manage_posts_columns' , 'ask_custom_columns'); | |
/*add_filter('manage_{post-type-slug}_posts_columns' , 'ask_custom_columns');*/ | |
function ask_custom_columns( $columns ) { | |
$columns = array( |
This file contains 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 | |
/* Array sort as per heierachical */ | |
function sort_terms_hierarchicaly(Array &$cats, Array &$into, $parentId = 0) { | |
foreach ($cats as $i => $cat) { | |
if ( $cat->parent == $parentId ) { | |
$into[$cat->term_id] = $cat; | |
unset($cats[$i]); | |
} |
This file contains 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 | |
/** | |
* shows percentage in flash sales | |
*/ | |
add_filter( 'woocommerce_sale_flash', 'ask_percentage_sale', 11, 3 ); | |
function ask_percentage_sale( $text, $post, $product ) { | |
$discount = 0; | |
if ( $product->get_type() == 'variable' ) { | |
$available_variations = $product->get_available_variations(); |
This file contains 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('woocommerce_widget_shopping_cart_before_buttons','ask_woo_mini_cart_before_buttons' ); | |
function ask_woo_mini_cart_before_buttons(){ | |
wp_nonce_field( 'woocommerce-cart' ); | |
?> | |
<div class="submit-button"> | |
<input type="submit" class="button" name="update_cart" value="<?php esc_attr_e('Uppdatera varukorg', 'tidymerch'); ?>"/> | |
</div> | |
<?php |
NewerOlder