Css לאקספלורר

  • Post Author:
  • Post Category:

Explorer Hacks Css /* IE10 + */ @supports (-ms-accelerator:true) { .people .elementor-column-wrap.elementor-element-populated{display:block !important;} } @supports (-ms-ime-align:auto) { .people .elementor-column-wrap.elementor-element-populated{display:block !important;} }  

להמשך קריאה Css לאקספלורר

מחיקת מוצרים נלווים בווקומרס

  • Post Author:
  • Post Category:

remove related products woocomerce function gs_remove_related_products() { remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20 ); } add_action( 'init', 'gs_remove_related_products', 10 );  

להמשך קריאה מחיקת מוצרים נלווים בווקומרס

ביטול מחיקת טגים של אדיטור TIMCE

  • Post Author:
  • Post Category:

add_filter('tiny_mce_before_init', 'tinymce_init'); function tinymce_init( $init ) { $init['extended_valid_elements'] .= ', span[style|id|nam|class|lang]'; $init['verify_html'] = false; return $init; } אפשר טאג SPAN אפשר טאג STYLE אפשר טאג ID אפשר טאג NAM אפשר…

להמשך קריאה ביטול מחיקת טגים של אדיטור TIMCE

סניפט הנחות בווקומרס

  • Post Author:
  • Post Category:

// The product custom field - Frontend add_action( 'woocommerce_before_add_to_cart_button', 'custom_discount_price_product_field' ); function custom_discount_price_product_field() { global $product; $curs = get_woocommerce_currency_symbol(); // Currency symbol // Get the discounted value (from product backend)…

להמשך קריאה סניפט הנחות בווקומרס