• Resolved theavengers

    (@theavengers)


    Hello,

    in model, i haven’t textarea footer.
    I have the text, but in right, i don’t have textarea. I try to re-upload plugin and nothing.

    On other site web, all is allright, but on last create, i have the problem.

Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Contributor Ewout

    (@pomegranate)

    Hi! I’m not sure I completely understand the question. Do you mean you don’t have the footer settings field? Can you try to enable WP_DEBUG on your site? If you don’t know what that is, there’s also a checkbox in the Status tab of the PDF invoice settings.

    After enabling WP Debug, do you see any errors on the settings page?
    Let me know
    Ewout

    Thread Starter theavengers

    (@theavengers)

    Hi, happy new years !

    Yes, i confirm, i don’t have the footer settings field on 2 site. I used Avada theme on this site.
    I activate debug, but i see nothing.

    I did a screenshot
    https://drive.google.com/open?id=0B2QIfzVgvHazUWRDejY3X3RLeVk

    Thread Starter theavengers

    (@theavengers)

    Anybody for help me about this ?

    Plugin Contributor Ewout

    (@pomegranate)

    Hi! I cannot reproduce this. Can you send me an email at [email protected] reffering to this thread and with admin credentials to your site?

    Thanks!
    Ewout

    Plugin Contributor Ewout

    (@pomegranate)

    I turned out ther was a script or plugin that removes any element with the id “footer”. The footer text field had that same id, and it’s probably a bit too generic. When I changed it to be more specific, it was no longer removed.
    Will fix this in the next update!

    Ewout

    Thread Starter theavengers

    (@theavengers)

    Very good exchange.
    Thanks a lot.

    Thread Starter theavengers

    (@theavengers)

    Hello,
    i have already the same problem. Can i fix it my self ?
    Thanks a lot.

    Plugin Contributor Ewout

    (@pomegranate)

    For anyone else with this issue:

    It’s the ‘Adminize’ plugin that removes the footer field. If you go to Settings > Adminize, there’s an option that removes the footer. If you turn this off, the footer template field is visible again. Alternatively, you can add this PHP snippet to your theme functions, this will only disable that setting for the PDF invoice page:

    
    dd_action( 'admin_enqueue_scripts', 'wpo_wcpdf_unqueue_adminize_footer_remover', 999 );
    function wpo_wcpdf_unqueue_adminize_footer_remover( $hook ) {
    	global $wpo_wcpdf;
    	if ( !isset($wpo_wcpdf->settings) || $wpo_wcpdf->settings->options_page_hook != $hook ) {
    		return;
    	}
    
    	wp_dequeue_script( '_mw_adminimize_remove_footer' );
    }
    
    Thread Starter theavengers

    (@theavengers)

    Thanks, all is fixed.
    Is plugin adminimize the faulty ^^.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘No textarea footer in model’ is closed to new replies.