Hey guys!
I use your theme more than year and finally decide to check the forum plugin. It fits awesome! Thanks)
I have the questions:
1) Login
– How I can highlight and activate the word “login” for new subscribers? (http://joxi.ru/nAyzx0Of6PaerZ)
– Same question for creating topics (http://joxi.ru/ZrJVYabIdjn8rj)
I’ve just need to appear the login window: http://joxi.ru/L21LzKNu1bzbmX
2) Mobile Login
How i can add the login form in Mobile version?
The top bar disappears đ
Screenshot: http://joxi.ru/MAj0oygS9PdRme
Thanks a lot for your help!
Sorry for too much russian symbols)
Hi,
1. Unfortunately this comes from bbpress plugin as we don’t alter the plugin’s code, it supports bbpress without any custom templates. So you will have to edit the plugins file if you want to change this – http://screencast.com/t/zzHKRw2ct
You can implement popup log in/register widget using:
echo '<a class="td-login-modal-js" data-effect="mpf-td-login-effect" href="#login-form"><strong> Log in/Register</strong></a>';
2. Unfortunately the top menu was not designed for mobile devices, we will try to find a better implementation for sign in/register widgets in a future update. Until then you can try this custom css in Theme Panel > Custom Css: http://screencast.com/t/cw4mTt1hSINv
@media (max-width: 767px){
.td-header-top-menu-full {
display: block !important;
}
.td-header-sp-top-menu {
display: block!important;
}
.menu-top-container {
display: none !important;
}
.td-header-sp-top-widget {
display: none !important;
}
}
Thanks!
-
This reply was modified 11 years by
Alin [tagDiv].
Hello
we have the same question for bbpress+newspaper, we want to use your pop up to let members register or login
I went to edit public_html/wp-content/plugins/bbpress/templates/default/bbpress/form-topic.php, find line 234 and make it
<div id="no-topic-<?php bbp_topic_id(); ?>" class="bbp-no-topic">
<div class="bbp-template-notice">
echo '<a class="td-login-modal-js" data-effect="mpf-td-login-effect" href="#login-form"><strong> Log in/Register</strong></a>';
</div>
</div>
is this rigt? sorry for asking noob question though
Hi,
Try to add the code like this(please backup you file) – http://screencast.com/t/58itY9o0pr
<?php
if (is_user_logged_in()) {
_e( 'You cannot create new topics.', 'bbpress' );
} else {
_e( 'You must be logged in to create new topics.', 'bbpress' );
echo '<a class="td-login-modal-js" data-effect="mpf-td-login-effect" href="#login-form"><strong> Log in/Register</strong></a>';
}?>
Thanks!
-
This reply was modified 10 years by
Alin [tagDiv].