Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Jacob N. Breetvelt

    (@opajaap)

    1. This requires editing wppa-functions.php.
    Near the bottom of the file ( line 3454 ) it reads:

    if ( $album ) {
    	wppa_alert( sprintf( __a( 'Album #%s created' ), $album ) );
    	wppa_flush_treecounts( $parent );
    	wppa_create_pl_htaccess();
    }

    Change to:

    if ( $album ) {
    //	wppa_alert( sprintf( __a( 'Album #%s created' ), $album ) );
    	wppa_flush_treecounts( $parent );
    	wppa_create_pl_htaccess();
    }

    This is not update safe.

    2. You should know this:
    The frontend js files come in 2 versions: xxx.min.js and xxx.js
    As long as the xxx.min.js file exists, it will be loaded. When you remove the file either by deleting or renaming, the corresponding xxx.js ( un-minified version ) will be loaded. Easy to troubleshoot.

    At the end of all .js files you will find a line like:

    wppaConsoleLog( 'xxx.js version '+xxxJsVersion+' loaded.', 'force' );

    You can safely remove these function calls, or remove , 'force'

    Thread Starter Joseph G.

    (@illumination2025)

    Thanks you, Jacob! Will do!

    Thread Starter Joseph G.

    (@illumination2025)

    And, sent a few bucks over paypal… appreciate all of your effort, Jacob! ??

    Hope all is well.

    -j

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘New Album Popup & console.log’ is closed to new replies.