BuddyPress uses its own mechanism to send emails, which it seems doesn’t use wp_mail().
Try to put this filter into your functions.php of your theme:
add_filter( 'bp_email_use_wp_mail', '__return_true' );
After that, all BP emails should be sent just fine.
.formLogin()
предполагается, что есть некое MVC приложение, откуда с url login поступает запрос. Скорее всего вам нужно использовать httpBasic()Я смотрела через фаерфокс но там не нашла этого
li .et_pb_column > div > div
html body li .et_pb_column > div > div
li.first-level a
jQuery(document).ready(function(){
jQuery("<style>")
.prop("type", "text/css")
.html("\
.demo {\
border-bottom: 3px solid black;\
-webkit-transition: all .4s ease-in-out;\
transition:all .4s ease-in-out;\
}")
.appendTo("head");
jQuery('li .et_pb_column > div > div').on('mouseover', function() {
jQuery('li.first-level a').removeClass('demo');
jQuery(this).closest('li')
.find('a').addClass('demo');
});
jQuery('li .et_pb_column > div > div').on('mouseout', function() {
jQuery('li.first-level a').removeClass('demo');
});
});
Добавила этот код между тэгами . Ничего не изменилось, то вот скрин
jQuery(document).ready(function(){
jQuery("<style>")
.prop("type", "text/css")
.html("\
.demo {\
border-bottom: 3px solid black;\
-webkit-transition: all .4s ease-in-out;\
transition:all .4s ease-in-out;\
}")
.appendTo("head");
jQuery('li .et_pb_column > div > div').on('mouseover', function() {
jQuery('li.first-level a').removeClass('demo');
jQuery(this).closest('li')
.find('a').addClass('demo');
});
});