Support

Account

Home Forums General Issues JS ERROR cannot read property 'post_id'

Unread

JS ERROR cannot read property 'post_id'

  • JS fix.

    file:
    input.js

    line:999

    acf.screen.post_id = acf.o.post_id;
    

    to

    try {
    
    	acf.screen.post_id = acf.o.post_id;
    }
    catch(err) {
    	console.log('skip this problem and go a head');
    }

    This solution remove js errors but i’m not sure its good
    this is correct ?

Viewing 1 post (of 1 total)

The topic ‘JS ERROR cannot read property 'post_id'’ is closed to new replies.