skip to Main Content

Mobile wordpress menu not responsive

On WordPress 2024 theme - my mobile menu nav does not open. https://07i.c46.myftpupload.com/ In console I'm getting the following JS errors: GET https://07ic46.p3cdn1.secureserver.net/wp-includes/js/dist/interactivity.min.js?time=1728611306&ver=6.6.2 net::ERR_FAILED 200 (OK) Access to script at 'https://07ic46.p3cdn1.secureserver.net/wp-includes/blocks/navigation/view.min.js?time=1728611306&ver=6.6.2' from origin 'https://07i.c46.myftpupload.com' has been blocked by CORS policy:…

VIEW QUESTION

WordPress – When using a hook, records are duplicated

I use a hook edit_post_(post_type). After updating a record, I get two new records at once when I only need one. What am I doing wrong? add_action('edit_post_applications', 'add_new_university'); function add_new_university($id) { $post_field = get_fields($id); return wp_insert_post(array( 'post_type' => 'institution', 'post_title'…

VIEW QUESTION
Back To Top
Search