Mykill73
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Rest Password Fields are MissingI did the usual ‘disable all plugins’ thing and a few other thigns and nothign worked until I added the following into my themes function.php
function show_fields() { ?>
<style type=”text/css”>
.wp-pwd {
display: block !important;
}
</style>
<?php }
add_action( ‘login_enqueue_scripts’, ‘show_fields’ );Forum: Fixing WordPress
In reply to: Running JavaScript/Google MapsThis may help? Add it to your functions.php file or crete a plugin. They also have google maps plugins that may do the same thign you’re looking for.
https://developer.ww.wp.xz.cn/themes/basics/including-css-javascript/
This is working for me…at least for one page. Put into the functions file of your theme…?
add_action( 'wp_print_scripts', 'my_deregister_javascript', 100 ); function my_deregister_javascript() { if ( !is_page('manual') ) { remove_action('wp_footer', array( 'Zopim_Widget', 'zopimme' ) ); remove_action( 'plugins_loaded', array( &$this, 'load_textdomain' ) ); wp_deregister_script( 'zopim' ); } }Forum: Plugins
In reply to: [Invoices for WooCommerce] Invoices maked as paidRookie question…where is that Template setting tab? I’m going through Woo right now and can’t seem to find it?! Is it in Woo? I didn’t see it in the PDF Invoice settings. Thank you!
Forum: Plugins
In reply to: [Invoices for WooCommerce] Invoices maked as paidWe have this plugin, but we can’t figure out how to mark as paid. Is there any configuration needed or is it supposed to happen automatically. Thank you.