2016-09-27 3 views

답변

0

이 작업에는 필터 후크가 있습니다. 이것을 functions.php에 추가하십시오 :

add_filter('woocommerce_get_availability_text', 'my_woocommerce_get_availability_text', 10, 2); 
function my_woocommerce_get_availability_text($availability, $product) { 
    if (! $product->is_in_stock()) { 
     if (function_exists('iphorm_popup')) { 
      $availability = iphorm_popup(4, 'Change this to the text or HTML that will trigger the popup'); 
     } else { 
      $availability = 'Your out of stock text here'; 
     } 
    } 
    return $availability; 
} 
+0

감사합니다. 이 텍스트 + 단축 코드 양식을 어떻게 표시합니까? kimizito

+0

답변을 업데이트했습니다. 나는 이것이 효과가 있다고 생각한다. –

+0

은 dreamweaver에서 함수 파일에 붙여 넣을 때 오류가 표시됩니다. 'my_woocommerce_get_availability_text'(첫 번째 줄) 뒤에 쉼표를 추가했으나 온라인으로 업로드 할 때 사이트가 비어있게되었습니다. – kimizito