Hi tagDiv support team,
I’d like to ask 2 questions:
1. I don’t use the mobile theme for mobile devices for certain reasons, but use the desktop one. I use the mega menu, but on mobile, there is a login section shown, which I’m unable to hide. When using the mobile theme, there was an option to hide this section, but I can’t find a solution for the desktop version, which I use for visitors on mobile.
2. I use the simple pagination for category pages which appears on the left side of the screen. But on the right side, opposite the boxes with numbers, there is an inscription: Page 1 of 133. I find this useless and would like to hide the numbers. How can I do that? Is there an option?
Thank you for your time in advance.
D.
Hello,
1) We did not add any extra controls to remove the login on the responsive version because usually people who require a login require it both on mobile and desktop. Th login can be removed for both from the header section: https://www.screencast.com/t/Hlj9LTNui
If you want to remove the login for mobile devices only you can add this code in the theme panel-> custom css box.
@media(max-width:767px){
.td-menu-login-section{
display:none!important;
}}
2) You can use this code to remove the page numbers:
.page-nav .pages{
display:none!important;;
}
Thank you!
A css code is added in the theme panel-> custom css box like so: https://www.screencast.com/t/PoqqdHXeql
Thank you!