How to Debug WordPress
How to Debug WordPress
How to Debug WordPress
“TypeError: ((n.event.special[g.origType] || {}).handle || g.handler).apply is not a function” error from jquery.js?ver=1.12.4-wp library
Classic editor throws 403 error based on post content
Mute Debug Messages from Plugins
WordPress There is an error log for a transaction we did not do
You can’t have both a page and a Custom Post type with the same slug, in your case videos. See: https://core.trac.wordpress.org/ticket/38599 for a ticket recommending this be changed in core. A few solutions: Change either the page or the post type to video instead of video Follow the Template Hierarchy and create a archive-videos.php with … Read more
How to solve this issue
I added these lines in wp-config above /* That’s all, stop editing! Happy blogging. */ line: define(‘ADMIN_COOKIE_PATH’, “https://wordpress.stackexchange.com/”); define(‘COOKIE_DOMAIN’, ”); define(‘COOKIEPATH’, ”); define(‘SITECOOKIEPATH’, ”); define(‘COOKIE_DOMAIN’, $_SERVER[‘HTTP_HOST’] );
Your time may be better served procuring services via Upwork or Freelancer.com. Run tests using gmetrix.com and google pagespeed insights, post those to your job postings, and determine who can do the most for you. Good luck.
Okay, not sure what was wrong with my original code, but this post put me on the right path. To generate the nonce, use: wp_nonce_field( plugin_basename( __FILE__ ), ‘my_reset_nonce’,true,false); To verify, use: if ( ! isset( $_POST[‘my_reset_nonce’] ) || ! wp_verify_nonce( ( $_POST[‘my_reset_nonce’] ), plugin_basename( __FILE__ ) ) ) { die; } else { // … Read more