• Resolved johnboh201

    (@johnboh201)


    When people click the bid now button it takes them to a 500 error

    Running the latest version of WordPress – 5.0.3–en_GB

    woo Auction – Version 2.0.1

    Woocoomerce – Version 3.5.4

    Need help fast I have meant to be launching this week

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Nitesh

    (@nitesh_singh)

    Hi @johnboh201 ,

    As you communicated to us that 500 error came due to wrong permalink set by you. So there wasn’t any issue from plugin side.

    You asked additional question of how you can alter a text that is displayed after bidding. For that, we have added a filter in our plugin which you can use:

    Filter name: ultimate_woocommerce_auction_bid_place_message

    You need to add following code inside theme’s function.php file:

    
    function my_text_strings( $message,$product_id) {
        
        $message = "YOUR MESSAGE HERE";
            
        return $message;
    }
    add_filter( 'ultimate_woocommerce_auction_bid_place_message', 'my_text_strings', 20, 3 );
    

    We would also like you to review our plugin and let us know your thoughts: https://ww.wp.xz.cn/plugins/ultimate-woocommerce-auction/#reviews

    Regards,
    Nitesh

Viewing 1 replies (of 1 total)

The topic ‘500 erro’ is closed to new replies.