Banner Logo

Be a part of the family: Connect, Receive Support,
Contribute, and Reap Abundant Rewards

michail_shapkin

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • michail_shapkin
    Participant

    Hi, to hot fix do this –
    in \classes\class-wcmp-ajax.php, line: 341
    replace

    
    $action_html .= '<a href="' . $action['url'] . '" target="'. isset($action['target']) ? $action['target'] : '' .'" title="' . $action['title'] . '"><i class="wcmp-font ' . $action['icon'] . '"></i></a> ';
    
    Copy

    with

    
    $action_html .= '<a href="' . $action['url'] . '" target="'. $action['target'] .'" title="' . $action['title'] . '"><i class="wcmp-font ' . $action['icon'] . '"></i></a> ';
    
    Copy
    in reply to: Vendor Commission Difference #133510
    michail_shapkin
    Participant

    to make vendor_commission=0 work, I did this:

    in reply to: Vendor Commission Difference #133509
    michail_shapkin
    Participant

    Fix it:
    in classes\class-wcmp-calculate-commission.php line:744
    instead of:
    if ($vendor_commission || $vendor_commission == 0) {
    must be:
    if ($vendor_commission || $vendor_commission === 0) {

Viewing 3 posts - 1 through 3 (of 3 total)