- NewsmagSmart list ads
- NewsmagIntroduction
- NewsmagMain menu
- NewsmagLogo & Favicon
- NewsmagHeader ads
- NewsmagSmart sidebar
- NewsmagSharing buttons
- NewsmagCategory tag on modules/blocks
- NewsmagBackground introduction
- NewsmagTheme colors introduction
Hello,
The scroll to top button has been hidden on mobile devices by default.
If you want to enable it you must use this custom css in the theme panel-> custom css box:
@media (max-width: 767px) {
.td-scroll-up {
display: block;
}}
Thanks.
Hi,
If you have installed the mobile plugin, then this will display a different version of the website, not what you see on desktop
– https://forum.tagdiv.com/the-mobile-theme/
This plugin is optional, you can deactivate it and display the same content from desktop.
The recommended caching plugin to be used is the WP Super Cache
– https://forum.tagdiv.com/cache-plugin-install-and-configure/
This will work properly with the mobile plugin, other caching plugins could cause issues. Or you could make further tests with the rocket plugin configuration settings, we could not say which should be used, this plugin was not tested with the theme and mobile plugin.
Thanks
Hi. My website opens with mobile version on PC browsers (Chrome, Opera etc)
What can I do to fix this problem ?
Hello pawmeal,
Ensure that your logo for mobile has been added from Theme panel, from here -> https://www.screencast.com/t/UBTe8BYmpo8 Clear all the caches and check the results. Also, if the problem is still there, please send us an email at contact@tagdiv.com with your log-in information (wp-admin) so we can further inspect it closer your setup page. Provide there the link to this topic so we can quickly identify you.
Thanks for the message!
Hi, how do I show the top bar links in mobile menu? https://www.tengokbawah.com/beranda/
Thanks
Thanks Simion, that works fine on desktop. On mobile the caption doesn’t show and the category tag gets pulled right. Do you have a fix for that?
Never mind. Found the problem. The Jetpack mobile theme was activated on the site that was no loaded. I disabled that and the site is not loading fine on mobile.
Hi guys!
How can I display „back to top button” on mobile? Right now it’s showing only on desktop. Thanks!
When I try to access my web site on an iPhone 8, the display comes with just codes:
[vc_row][vc_column][/vc_column][/vc_row][vc_row full_width="stretch_row_content td-stretch-content"][vc_column][td_block_big_grid_4][/vc_column][/vc_row][vc_row full_width="stretch_row_content td-stretch-content"][vc_column][/vc_column][/vc_row][vc_row][vc_column el_class="layout" width="2/3"][td_block_22 category_id=”18″ custom_title=”CHB Opinion by Doug Thompson” limit=”1″ offset=” “][td_block_6 limit="2" block_template_id="" category_id="4" custom_title="Topping the News..."][td_block_12 limit=”1″ category_id=”4″ offset=”2″][td_block_17 category_id=”4″ offset=”3″][/vc_column][vc_column width="1/3"][vc_widget_sidebar sidebar_id="td-opinion"][/vc_column][/vc_row]
That is how the site display when you used the url:
http://www.capitolhillblue.com
However, if you access another web site on the same server with the same software: http://www.blueridgemuse.com, the site comes up fine.
Both sites use the same plug-ins.
Any idea why this is hapening?
Hello,
Sorry i posted on the wrong forum previously. It should be Newspaper forum.
My logo is not showing on mobile phone. On desktop, it shows fine across all sizes of my browser.
my url is insider.pawknot.com (i am currently putting maintenance mode on). I will send my log in in a private message.
Thank you.
Hello,
My logo is not showing on mobile phone. On desktop, it shows fine across all sizes of my browser.
my url is insider.pawknot.com (i am currently putting maintenance mode on). I will send my log in in a private message.
Thank you.
Hi,
My content on mobile is not showing the modules on the frontpage.
I installled WP Rocket, but even if I deactivate WP ROcket I still don’t get the modules to show on the frontpage on mobile.
Do you know what the best settings is for Newspaper 8 and WP Rocket?
Or how to get the moduels to show on mobile?
Thanks
Thank you for the quick replay.
That’s odd, because I don’t see the same thing on my desktop:
https://drive.google.com/file/d/1huxSYQMzgZKjNs0n21i8B4pPbvI4GF8J/view?usp=sharing
Although if I use a different connection (data connection on mobile) it seems fine. Could that be a network issue then?
Thanks
Goodmorning,
i have some trouble with my website.
I have enabled your tagdiv theme and it feature on top bar wich allows users to sign up.
I allowed users to sign up on my wordpress.
When user try to sign up on desktop, everything seems just fine.
So there is no problem with WP.
But, when they try to sign up on mobile (clicking on the link in the hamburger menu), they don’t get the automatic email with the link containing their password.
I tried myself with several emails account and I can confirm that I didn’t get the mail, not even in the spam folder.
Any help?
Hello Juusuhako,
Please notice that footer template style/layout cannot be identical on the mobile footer, sorry! The looks are different because the width is different. If you want to have the same elements on desktop and mobile you should not use the Mobile Theme.
Thanks.
Hi,
Unless you use the mobile theme plugin, then the same menu from desktop will be displayed on mobile.
Only when the mobile plugin is active you can set a different menu for mobile devices
– https://forum.tagdiv.com/the-mobile-theme/
Thanks
*Full width images and also full width Tagdiv Gallery in mobile and tablet devices
Thanks a ton @simion . I was finally able to code the redirect after a lot of hit and trials. The following code has functionality to redirect users trying to access only bbPress Pages to Wp-Login page, and once they login using id or social profile, they will be redirected to the page they were trying to access.
Note: Make sure to paste the below code to Theme Functions.php , both main and mobile functions.php to make it work on desktop and mobile devices.
/**
* Redirect bbPress pages to registration page
*/
function redirect_login_page() {
$refer=urlencode($_SERVER["REQUEST_URI"]);
$isItExt = strpos(strtok($_SERVER["REQUEST_URI"],'?'), 'external');
if ( ! is_user_logged_in() && is_bbpress()) {
wp_redirect( 'https://medicforyou.in/wp-login.php' . '?redirect_to=' . $refer );
exit();
}
}
add_action( 'template_redirect', 'redirect_login_page' );
function redirect_after_login() {
global $redirect_to;
if (!isset($_GET['redirect_to'])) {
$redirect_to = get_option('siteurl');
}
}
add_action('login_form', 'redirect_after_login');
function redirect_login(){
wp_redirect( 'https://medicforyou.in/wp-login.php' );
exit();
}
add_action('wp_logout','redirect_login');
-
This reply was modified 8 years by
drvarun5179.
Hi,
The mobile menu is not supposed to display on desktop, only on mobile. This is a similar topic where the menu is adapted to display on tablets
– https://forum.tagdiv.com/topic/show-mobile-menu-when-screen-width-is/
If you want it in general you could modify it like this
– https://www.screencast.com/t/eaERyCv9X0J7
Make tests and see if it works (modify it if needed), since this is not tested and may cause issues
– https://pastebin.com/rDqDjaBC
Thanks
Hi, I cannot for the life of me find where I can link a menu to the mobile menu. I do not want to use the mobiel plugin as this totally changes the layout of my site.
Please advise.
The background color can be set in the theme panel for the mobile menu
– https://www.screencast.com/t/CC8BN4Wy
Also the icons color can be changed there
– https://www.screencast.com/t/QBGNWp23
So there is no need for custom code to change the mobile menu and icons colors.
Thanks
Hi again, I basically wanted the footer on desktop to be identical on mobile, I didn’t know they had separate settings, but I can get that to work, thanks.
In regards to the first issue my colleague responds to me that the problem is that no widgets are showing on mobile. Even the weather one (which comes with the theme) doesn’t show up. Its as if widgets has been disabled for mobile, which is a problem.
Hi,
@Filandor I couldn’t say if there will be a setting to toggle top bar display on mobile. If this request becomes more popular, it may be considered for implementation. So for the moment it could only be displayed with CSS code.
Thanks
Salutare,
Multumim pentru apreciere, incercam sa facem tot posibilul pentru a oferi un produs de calitate.
1. Da se poate, in setarile WordPress
– https://www.screencast.com/t/Tn9BGdFs
– https://www.screencast.com/t/16HPVEfDyrto
– https://codex.wordpress.org/Formatting_Date_and_Time
2. In author box trebuie introdus ID-ul userului
– http://www.wpbeginner.com/beginners-guide/how-to-find-post-category-tag-comments-or-user-id-in-wordpress/
– https://www.screencast.com/t/VZJKCy6TOg
Vor aparea inforamntii preluate din profilul user-ului
– https://www.screencast.com/t/xFmhvLsoA
3. Icoanele de share vor fi ascunse automat, doar cand nu este destul spatiu disponibil
– https://www.screencast.com/t/oEPEJBgMOxOT
– https://www.screencast.com/t/h6YzT7qaE6
Sunt multe stiluri disponibile pentru icoane in theme panel
– https://www.screencast.com/t/25ub7K9b5
4. Acele tag-uri post fi customizate doar cu CSS, la momentul acesta. Nu este o setare pentru a personalize culoarea acestora. Poate va fi disponibila dupa un update viitor, nu as putea spune sigur.
Deci se poate folosi CSS in aceasta privinta
– https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
5. Sectiunea de latest (si sidebar aferent) va fi afisata cand este selectat acest page template
– https://www.screencast.com/t/ytNJMKHQmw4
Se poate customiza, sunt optiuni pentru aceasta sectiune. Sau se poate selecta un page template diferit.
6. Acele elemente din footer sunt predefinite. Unele footer templates contin elemente predefinite, altele sunt goale
– https://forum.tagdiv.com/footer-templates/
Elementele predefinite nu pot fi modificate. Se pot adauga widgets in footer configurate dupa preferinta
– https://www.screencast.com/t/G1gd1co9WdMv
7. Acela este un post template (post template 11). Sunt multe modele din care se poate selecta, indiferent de demo instalat
– https://forum.tagdiv.com/post-templates-2/
Pentru featured video posts se recomanda a fi folosite doar unele post templates
– https://forum.tagdiv.com/featured-image-or-video/
8. Se poate customiza in theme panel cu setarile disponibile
– https://forum.tagdiv.com/more-articles-box/
#Sugestii
1. Se poate selecta sa se incarce mobile logo can meniul e sticky, in theme panel
– https://www.screencast.com/t/HrQYiiKkHVqQ
2. Multumim pentru sugestie, o sa adaug acesta propunere pe lista noastra.
Multumesc!
For a little more detail. I’m in the theme javascript and I’ve set
isMobileDevice:true and isPhoneScreen : true but there must be more that needs to be adjusted because this alone didn’t make a difference. My thought was to “hardcode” that it’s always mobile and let the theme take care of the rest, but clearly I’ve missed something.