• Resolved gstar

    (@gstar)


    I get this error: “Free Renewals cannot be used more than once every 7 days.”

    How can I increase this?

    I want to let users renew as often as they are keen on…

Viewing 1 replies (of 1 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    You can change it by adding the code below to your theme functions.php file

    
    add_filter( "adverts_renewal_time_min", "my_adverts_renewal_time_min" );
    function my_adverts_renewal_time_min( $min ) {
        return 14;
    }
    

    then the users will be able to use free renewals once every 14 days.

Viewing 1 replies (of 1 total)
  • The topic ‘Free Renewals cannot be used more than once every 7 days.’ is closed to new replies.