css not loaded – no button on wp-login.php
-
I found similar post, but it’s is locked for comments: https://wordpress.org/support/topic/possible-css-enqueue-conflict/
I have only text and no button on wp-login.php page. Seems that facebook-btn.css not loaded. Loggin via fb works
I have similar g+ plugin nextend_google_connect and it works properly, it shows button and I can customize it by paste code on admin appropriate plugin settings field.
Code inspector shows google-btn.css, but not facebook-btn.css. Html code seems good, only related css missing.
Where I need to look? How to debug this function?
function nextend_fb_connect_stylesheet() { wp_register_style('nextend_fb_connect_stylesheet', plugins_url('buttons/facebook-btn.css', __FILE__)); wp_enqueue_style('nextend_fb_connect_stylesheet'); } if (!isset($new_fb_settings['fb_load_style'])) $new_fb_settings['fb_load_style'] = 1; if ($new_fb_settings['fb_load_style']) { add_action('wp_enqueue_scripts', 'nextend_fb_connect_stylesheet'); add_action('login_enqueue_scripts', 'nextend_fb_connect_stylesheet'); add_action('admin_enqueue_scripts', 'nextend_fb_connect_stylesheet'); }The page I need help with: [log in to see the link]
The topic ‘css not loaded – no button on wp-login.php’ is closed to new replies.