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
top | |
T x 2 | |
(Shift + E) x 2 |
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
<div class="single-product-banner__content"> | |
<div class="sigle-product__review"> | |
<div class="yotpo bottomLine" | |
data-product-id="{{ product.id }}"> | |
</div> | |
<a class="reviews-wrap__link" href="#single-product__reviews-wrap"></a> | |
{% comment %} |
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('updated_post_meta','shop_order_meta_updated', 10, 4); | |
function shop_order_meta_updated($meta_id, $post_id, $meta_key, $meta_value) { | |
$type = get_post_type( $post_id ); | |
if ($type == 'shop_order') { | |
error_log("shop_order_meta_updated"); | |
error_log("shop_order ID:" . $post_id); | |
error_log("meta_key:" . print_r($meta_key, true) ); | |
error_log("meta_value:" . print_r($meta_value, true) ); | |
error_log(wp_debug_backtrace_summary()); |
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
curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar | |
php wp-cli.phar --info | |
alias wp="php wp-cli.phar" |
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
sudo nano /etc/hosts | |
sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder |
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_custom_image_sizes() { | |
global $_wp_additional_image_sizes; | |
print '<pre>'; | |
print_r( $_wp_additional_image_sizes ); | |
print '</pre>'; | |
} | |
add_action( 'after_setup_theme', 'add_custom_image_sizes' ); |
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
// Bad | |
var sync1 = jQuery("#sync1"); | |
sync1.owlCarousel({ | |
items: 1, | |
slideSpeed: 2000 | |
}); | |
// Good | |
let productPageMainSlider = jQuery(".product-page__main-slider"); | |
productPageMainSlider.owlCarousel({ |
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
<!-- Bad --> | |
<div class="layout-col-4"> | |
<?php | |
if ( is_active_sidebar( 'footer_sidebar_one' ) ) { | |
?> | |
<div id="footer-sidebar-one" class="footer-sidebar widget-area" role="complementary"> | |
<?php | |
dynamic_sidebar( 'footer_sidebar_one' ); | |
?> | |
</div><!-- #footer_sidebar --> |
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 | |
// Place in functions.php | |
add_filter('comments_open', '__return_false', 20, 2); | |
add_filter('pings_open', '__return_false', 20, 2); | |
add_filter('comments_array', '__return_empty_array', 10, 2); | |
add_action('admin_init', array($this, 'remove_comments_links_from_dashboard')); | |
add_action('admin_menu', array($this, 'remove_comments_page_in_menu')); | |
function remove_comments_page_in_menu() { | |
remove_menu_page('edit-comments.php'); |
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
.line-clamp { | |
display: -webkit-box; | |
-webkit-line-clamp: 3; | |
-webkit-box-orient: vertical; | |
overflow: hidden; | |
} |
NewerOlder