wp-config.php changes

As I stated elsewhere… there are some modifications in the wp-config.php file. These are they, so that you can copy-paste them straight in.

REMEMBER that the line that requires wp-settings.php MUST BE THE LAST LINE OF THE FILE. Paste the following above the ‘That’s all, stop editing!’ comment.

/*------------------------------------------------------------------------ */
/* COPY FROM HERE ... COPY FROM HERE ... COPY FROM HERE ... COPY FROM HERE ...*/
/* Debug Type Stuff.
* Do remember to set them correctly before go live...
*/
@ini_set( 'log_errors', 'Off' );
@ini_set( 'display_errors', 'On' );
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', false );
define( 'WP_DEBUG_DISPLAY', false );

/* This is a critical addition!!!
* When you're calling a Pods custom field inside a pods template AND that field in turn contains Pods shortcodes,
* This is the reason they either will or won't correctly resolve (it's defaulted to false because potential recursive loops of mental)
*/
define('PODS_SHORTCODE_ALLOW_SUB_SHORTCODES',true);

/**
*
* Some Optimisations by Jason. Unless you have a really good reason to change these,
* I would suggest you leave them be!
*/

/** because do you really need a new autosave revision every 60 seconds? */
define( 'AUTOSAVE_INTERVAL', 240 );

/** because do you really want deleted stuff to hang around for 30 days? */
define( 'EMPTY_TRASH_DAYS', 3 );

/** because although I've allowed revisions on all Custom Post Types, let's not go nuts, eh? */
define( 'WP_POST_REVISIONS', 3 );

/*
define('WP_HOME','https://ynpayments.com');
define('WP_SITEURL','https://ynpayments.com');
*/
/* COPY TO HERE ... COPY TO HERE ... COPY TO HERE ... COPY TO HERE ...*/
/*------------------------------------------------------------------------