如何在woocommerce中将产品说明(简称)添加到悬停框?

时间:2016-02-01 16:50:52

标签: php html css web woocommerce

我使用以下内容将产品名称和价格添加到悬停框中。

在functions.php中

// Alter produt loop individual products 

add_action( 'woocommerce_before_shop_loop_item_title', 'new_product_defaults_wrap_open' , 20 ); //opener
add_action( 'woocommerce_after_shop_loop_item_title', 'new_product_defaults_wrap_close', 40); //closer

function new_product_defaults_wrap_open() {
  echo '<div class="product-details">';    
}
function new_product_defaults_wrap_close() {
    echo '</div><!--/.product-details-->';
}

在css中:

/*The code below will simply setup the price-title area to be hidden and have a background. Please note that uou will have to change the background and height to match your website color scheme and product height  but first load it as and then adjust                                                                                      
*/

.products .product .product-details {
        position: absolute;
        background: rgba(119, 203, 109, 0.95);
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        color: #f7f7f7;
        padding: 1.618em;
        text-align: left;
    opacity: 0;
    height: 167px;
    filter: alpha(opacity=@opacity * 100);  
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -ms-transition: all ease 0.4s;
        -o-transition: all ease 0.4s;
        transition: all ease 0.4s; 
  }

/* Show the that was setup above when the user hovers*/

 ul.products li.product:hover .product-details {
    filter: alpha(opacity=@opacity * 100);
    opacity: 1;
  }

  ul.products li.product a img:hover {
    opacity: 0.9;
  }

我从https://support.woothemes.com/hc/en-us/articles/203103707-Products-layout-show-price-on-hover-like-Peddlar-theme-?page=1#comment_203088363获得了此代码。

我想将产品简短说明添加到.product-details类中,但我不知道如何操作。

感谢。

2 个答案:

答案 0 :(得分:1)

WooCommerce产品说明使用the_excerpt()功能...尝试这样......

function new_product_defaults_wrap_open() {
  echo '<div class="product-details">';
  the_excerpt();
}

答案 1 :(得分:0)

要完成并澄清有关订单的问题,这对我有用:

Element <span class="abc xyz qwe yui"></span> is not clickable at point (968, 150). Other element would receive the click: <div class="xyz1[enter image description here][1] abc1 sdsd"></div>