erez

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 87 total)
  • Author
    Posts
  • in reply to: woocommerce chained products plugin #127681
    erez
    Participant

    HI
    Before I purchase the woocommerce Product Bundles ,
    I have to make sure the option Which is inside woocommerce Product Bundles is supported .

    I’m talking about the option to add “Frequently Bought Together” option .
    (See attached screenshot) Will it work with WCMp Advance Frontend Manager ?

    in reply to: woocommerce chained products plugin #127485
    erez
    Participant
    in reply to: limit vendor upload size IMAGE #127440
    erez
    Participant

    HI

    But where do I add the code Within the other lines of code?
    Can you add it to the other code That I’ll just have to copy
    When all the codes are already connected together .

    in reply to: limit vendor upload size IMAGE #127402
    erez
    Participant
    This reply has been marked as private.
    in reply to: limit vendor upload size IMAGE #127382
    erez
    Participant
    This reply has been marked as private.
    in reply to: limit vendor upload size IMAGE #127334
    erez
    Participant

    HI Thanks

    It works, but it also affects the cover And the logo image on vendor SHOP .
    What line of code I need to add So that it does not affect it ?

    Will this code work: do_action(‘wcmp_before_shop_front’);

    If so where do I add it in all these lines:

    /** Upload image restriction ****/
    function resize_image_resolution($file) {
    if(is_user_wcmp_vendor(get_current_user_id())){
    $image = getimagesize($file[‘tmp_name’]);
    $minimum = array(
    ‘width’ => ‘400’, //set your minimum
    ‘height’ => ‘400’
    );
    $maximum = array(
    ‘width’ => ‘1000’, //set your maximum
    ‘height’ => ‘1000’
    );
    $image_width = $image[0];
    $image_height = $image[1];

    $too_small = “Image dimensions are too small.”;
    $too_large = “Image dimensions are too large.”;

    if ( $image_width < $minimum[‘width’] || $image_height < $minimum[‘height’] ) {
    $file[‘error’] = $too_small;
    return $file;
    }
    elseif ( $image_width > $maximum[‘width’] || $image_height > $maximum[‘height’] ) {
    $file[‘error’] = $too_large;
    return $file;
    }
    else
    return $file;
    } else {
    return $file;
    }
    }
    add_filter(‘wp_handle_upload_prefilter’, ‘resize_image_resolution’);

    in reply to: vendor shop page #127196
    erez
    Participant

    I was able to solve the problem, you can close this ticket , Thanks

    in reply to: vendor shop page #126011
    erez
    Participant
    This reply has been marked as private.
    in reply to: vendor shop page #126009
    erez
    Participant
    This reply has been marked as private.
    in reply to: vendor shop page #125988
    erez
    Participant
    This reply has been marked as private.
    in reply to: vendor shop page #125982
    erez
    Participant

    Thanks for the response .I have another question .

    Is it possible to edit the “vendor dashboard” With elementor ?
    Mainly to fix Some display issues .

    in reply to: character limit #125463
    erez
    Participant

    Please close this ticket

    in reply to: plugin WCMp PDF Invoices #125462
    erez
    Participant

    Please close this ticket

    in reply to: side menu does not appear on vendor shop page #125461
    erez
    Participant

    Please close this ticket

    in reply to: side menu does not appear on vendor shop page #125361
    erez
    Participant

    What about the image header ? in is not aligned as the site

Viewing 15 posts - 1 through 15 (of 87 total)