• 09-03-2024, 23:56:02
    #1
    Merhabalar arkadaşlar kolay gelsin woocmmerce sitemde 3 farklı nitelikle 50 den fazla varyasyon var ancak woocommerce sadece 50 adetini satışa çıkartabiliyor bunu nasıl arttırabilirim ?
  • 10-03-2024, 00:04:31
    #2
    function wpse_304237_rest_batch_items_limit( $limit ) {
    
    $limit = 200;
    
    return $limit;
    }
    add_filter( 'woocommerce_rest_batch_items_limit', 'wpse_304237_rest_batch_items_limit' );
    functions.php'ye
  • 10-03-2024, 00:13:28
    #3
    d3nnis adlı üyeden alıntı: mesajı görüntüle
    function wpse_304237_rest_batch_items_limit( $limit ) {
    
    $limit = 200;
    
    return $limit;
    }
    add_filter( 'woocommerce_rest_batch_items_limit', 'wpse_304237_rest_batch_items_limit' );
    functions.php'ye
    Sen harikasın teşekkür ederim