Forum Replies Created

Viewing 1 replies (of 1 total)
  • Hello,

    In case someone else would came here looking for a solution, then i figured it out in this way. First off all open the file “/assets/list.js“ and comment out the line 43:

    43 /*alert('error');*/

    Then add the following code between lines 94 and 95:

    setTimeout(function(){ window.location.reload(); }, 3000);

    Ultimately, it will look like this:

    94      $('#'+ count_post).children('.number').text(list_post_num);
    95		setTimeout(function(){ window.location.reload(); }, 3000); //Add this
    96      if( Number( list_post_num ) < 1 ) {

    Regards,
    L

Viewing 1 replies (of 1 total)