Advertisement
iEmanuele

Button description

Oct 19th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.17 KB | None | 0 0
  1. add_filter( 'woocommerce_short_description', '_woocommerce_short_description',999 );
  2.     function _woocommerce_short_description($excerpt){
  3.         $excerpt .= '<script type="text/javascript">';
  4.         $excerpt .= 'jQuery(document).ready(function ($) {';
  5.         $excerpt .= '   $("a[href=\"il-form\"]").click(function () {';
  6.         $excerpt .= '       $(".iphorm-fancybox-link-8").click();';
  7.         $excerpt .= '        return false;';
  8.         $excerpt .= '   });';
  9.         $excerpt .= '});';
  10.         $excerpt .= '</script>';
  11.         $excerpt .= do_shortcode( '[button link="il-form" color="default" size="" type="" shape="" target="_self" title="" gradient_colors="|" gradient_hover_colors="|" accent_color="" accent_hover_color="" bevel_color="" border_width="1px" icon="" icon_position="" icon_divider="no" modal="" animation_type="" animation_direction="left" animation_speed="" alignment="right" class="" id=""]Richiedi Informazioni[/button]' );
  12.         $excerpt .= do_shortcode( '[iphorm_popup id="8" name="Informazioni da prodotto"][/iphorm_popup]' );
  13.         $excerpt .= '<div style="height=5px; width:100%;float:none; clear:both"></div>';
  14.         return $excerpt;
  15.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement