示例#1
0
 function jigoshop_output_related_products()
 {
     // 4 Related Products in 4 columns
     jigoshop_related_products(2, 2);
 }
 function jigoshop_output_related_products()
 {
     $options = Jigoshop_Base::get_options();
     if ($options->get('jigoshop_enable_related_products') != 'no') {
         jigoshop_related_products(2, 2);
     }
 }
示例#3
0
function jigoshop_related_products_panel()
{
    if (!yiw_if_related()) {
        return;
    }
    echo '<div class="panel" id="related-products">';
    jigoshop_related_products(5, 5);
    echo '</div>';
}
示例#4
0
 function wallpress_jigoshop_ouput_related_products()
 {
     if (get_option('jigoshop_enable_related_products') != 'no') {
         // 3 Related Products in 3 columns
         jigoshop_related_products(3, 3);
     }
 }