Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Same issue here with version 2.0.2

    JQMIGRATE: Migrate is installed, version 1.4.1
    Uncaught TypeError: this.$backdrop.one(...).emulateTransitionEnd is not a function
        at i.backdrop (bootstrap.min.js?ver=4.7:11)
        at i.show (bootstrap.min.js?ver=4.7:11)
        at HTMLDivElement.<anonymous> (bootstrap.min.js?ver=4.7:11)
        at Function.each (load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,utils,plupload&ver=4.7:2)
        at a.fn.init.each (load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,utils,plupload&ver=4.7:2)
        at a.fn.init.e [as modal] (bootstrap.min.js?ver=4.7:11)
        at Object.authorize (googleanalytics_page.js?ver=4.7:13)
        at HTMLButtonElement.onclick (admin.php?page=googleanalytics%2Fsettings:279)
    • This reply was modified 8 years, 2 months ago by lightofwolf. Reason: code
    • This reply was modified 8 years, 2 months ago by lightofwolf. Reason: code

    I’ve done that by doing this:
    Enter to your WP folder through ftp. Go to wp-content/themes/attitude/library/structure.

    There is a file named footer-extensions.php where you can modify the footer content. Edit it with a php editor or the notepad. You will see the next code. Modify the part you want to change and it have to works.

    add_action( 'attitude_footer', 'attitude_footer_info', 30 );
    /**
     * function to show the footer info, copyright information
     */
    function attitude_footer_info() {
       $output = '<div class="copyright">'.__( 'Copyright &copy;', 'attitude' ).' '.'[the-year] [site-link]'.' '.__( 'Theme by:', 'attitude' ).' '.'[th-link]'.' '.__( 'Powered by:', 'attitude' ).' '.'[wp-link] '.'</div><!-- .copyright -->';
       echo do_shortcode( $output );
    }

    Remember that you are modifying the theme so better you do a child theme or save the original theme in case something gets wrong.

Viewing 2 replies - 1 through 2 (of 2 total)