Search Results for 'mobile theme'

Results from the Forum
Claudiu
Participant
#0

Hello guys,

I’ve found a little bug (if it can be called like that) of theme newspaper that can create bounce rate on mobile version.
What’s actually happening? When someone enter the site from mobile, tap the menu button, the menu is displayed and they have that X in the top-right corner. Definitely they will press back button of the phone (android devices) instead of that X and they will exit the site instead of closing the menu.

Is there any solution to fix this? Or maybe to take in consider for a future update?
I guess is a general problem, but not many theme owners will find it as fast as a normal user of their websites.

Thank you guys, you rock!
Claudiu.

Simion C.
tagDiv Staff

Our AMP plugin works on pages if enabled, but only on pages that are created through default WordPress editor, not with any of the page builders. Then it can also be enabled/disabled per page
https://www.screencast.com/t/JEBKuLqqw
Since the current homepage on your website contains page builder content, our AMP plugin will not apply to it. So the mobile theme should be served when searching and entering the website from Google search.

nigelryans
Participant
#0

Hello,

So due to the fact that my regular website header logo doesn’t resize properly on mobile devices, I set a separate logo for mobile through the Newspaper theme panel. I made sure the upload was at the recommended size, but it doesn’t appear at all on my mobile device (iPhone 7+).

Here is my website link: https://www.jotaku.net/

Any help with this would be much appreciated!

dxx26379
Participant
#0

Hi,
I activated the newspaper mobile theme und build in the mobile section a normal site
(http://www.behoerden-spiegel.de/kontakt/)
Here you can find the address of my company, but the complete address is in one line. I want to display it like this in different lines:
Company Name
Street
Tel
and so on…

Not Company Name Street Tel and so on..

Thanks
Dennis

glennkr
Participant
#0

Hi.
When the site is opened on the mobile, when clicking the search symbol or when clicking the three lines (on the meny), a message comes up beneath the meny in Norwegian language (the site is thecar.no): “This site was reloaded due to a fault” [translated]. This issue does not appear when the site is loaded on the laptop.

Best,
Glenn

ctoweett
tagDiv Member

Check this guide on mobile theme https://forum.tagdiv.com/the-mobile-theme/. Plus, you won’t see the background for mobile if you use the mobile plugin.

Nana
Participant
#0

Hi Guys. I really like the mobile theme, but I have a plugin it conflicts with on a page. I was wondering if there is any coding or option that allows the webdesigner to disable the mobile theme on a specific page?

This will be tremendously helpful.

brenbrinkman
Participant
#0

Hi, I had 2 questions regarding the mobile theme .

1. I wanted to change the background of my mobile menu. When I uploaded a image : https://www.screencast.com/t/tTRfOFCpjPNK

it doesn’t seem to appear on the mobile theme :https://www.screencast.com/t/tkJhfa3Uk

How do I fix this problem?

2. I installed the wordpress ‘WP forms’ and ‘give donation’ plugins. The plugins both say that they are mobile responsive. But they don’t seem to work on the mobile theme. This seems weird because an other user from tagdiv uses the same plugins and they both seem to work on his mobile website (www.sociedelic.com)

Is there someway I can make these plugins work on mobile?

Thank you!

carnews-mag
Participant
#0

Yesterday I had a envato webdesigner to install this script with the car blog theme. I adore it, it is fantastic. though I have some problems which the designer said I should contact the theme creators.

1. On bottom of script: about and contact buttons appear but they are only linked to a url like this: http://www.carnews-mag.com/# and when I try to find them on dashboard is impossible.
2. On right side of the script there is a social media box with facebook, instagram and youtube subscribers. I have been looking the deepest holes to find those buttons to remove their link and add my own links but no luck at all.

3. My google ads have add a code for floating ads at bottom of mobile version, is it possible in this theme to have that as well ?

I would appreciate an answer with the fixes because I am getting frustrated.

NickDeBaerdemaeker
Participant
#0

For our site we have created an abc index for our posts.
We have a taxonomy built called “alphabetical_letter” which houses all the articles, which are on their own again divided into live-review, album-review and so forth.

We are now in the process of making seperate loop files/taxonomy files.
In our example we did this for the letter N for muziekrecensies category, so that this will display only all articles marked with the category muziek-recensies and the taxonomy alphabetical letter N, using the code further below.

The loop has been set for the first 30 posts, only strange thing is that after this the load more function from the theme kicks in, and displays all articles, not just the ones with the keyword N in the alphabetical letter taxonomy, but all the other ones from the category muziekrecensies.

Is there a way to solve this please ?
the page where this is happening can be seen here (posts currently set to -1 for reviewing reasons):

for the loop-albumrecensies.php
<?php
/**
* If you are looking for the loop that's handling the single post page (single.php), check out loop-single.php
**/

// $global_flag_to_hide_no_post_to_display - comes from page-category-big-grid.php and is a flag to hide the 'No posts to display' message if on category page there are between 1 and 5 posts
global $loop_module_id, $loop_sidebar_position, $global_flag_to_hide_no_post_to_display;

///if we are in wordpress loop; used by quotes in blocks to check if the blocks are displayed in blocks or in loop
td_global::$is_wordpress_loop = true;

$td_template_layout = new td_template_layout($loop_sidebar_position);

if (empty($loop_module_id)) { //not sure if we need a default here
$loop_module_id = 1;
}

$td_module_class = td_api_module::_helper_get_module_class_from_loop_id($loop_module_id);

//disable the grid for some of the modules
$td_module = td_api_module::get_by_id($td_module_class);
if ($td_module['uses_columns'] === false) {
$td_template_layout->disable_output();
}

$args = array(
'post_type' => 'post',
'posts_per_page' => '30',
'tax_query' => array(
'relation' => 'AND',
array(
'taxonomy' => 'alphabetical_letter',
'field' => 'term_id',
'terms' => array( '437' ), //this is by id
),
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => array( 'muziek-recensies' ), //this is by slug
),
),

);

// The Query
query_posts( $args );

// The Loop

if (have_posts()) {
while ( have_posts() ) : the_post();
echo $td_template_layout->layout_open_element();

if (class_exists($td_module_class)) {
$td_mod = new $td_module_class($post);
echo $td_mod->render();
} else {
td_util::error(__FILE__, 'Missing module: ' . $td_module_class);
}

echo $td_template_layout->layout_close_element();
$td_template_layout->layout_next();
endwhile; //end loop
echo $td_template_layout->close_all_tags();

} else {
/**
* no posts to display. This function generates the __td('No posts to display').
* the text can be overwritten by the themplate using the global @see td_global::$custom_no_posts_message
*/

echo td_page_generator::no_posts();
}

this for the taxonomy-alphabetical_letter-n.php
<?php
/**
* the custom taxonomy template
* This file is loaded by WordPress on custom taxonomies. You can further customize this template
* for specific taxonomies by copying this file to taxonomy-yourTaxonomyName.php
*/

get_header();

global $loop_module_id, $loop_sidebar_position;

// get the current taxonomy object - note that it's note complete
$current_term_obj = get_queried_object();

//read the loop variables for this specific taxonomy
$loop_module_id = td_util::get_taxonomy_option($current_term_obj->taxonomy, 'tds_taxonomy_page_layout');
$loop_sidebar_position = td_util::get_taxonomy_option($current_term_obj->taxonomy, 'tds_taxonomy_sidebar_pos');

if (empty($loop_module_id)) {
$loop_module_id = 1; // module_1 is the default
}

// sidebar position used to align the breadcrumb on sidebar left + sidebar first on mobile issue
$td_sidebar_position = '';
if($loop_sidebar_position == 'sidebar_left') {
$td_sidebar_position = 'td-sidebar-left';
}

?>

<div class="td-main-content-wrap td-container-wrap">
<div class="td-container <?php echo $td_sidebar_position; ?>">
<div class="td-crumb-container">
<?php echo td_page_generator::get_taxonomy_breadcrumbs($current_term_obj); // get the breadcrumbs - /includes/wp_booster/td_page_generator.php ?>
</div>

<!-- content -->
<div class="td-pb-row">
<?php
switch ($loop_sidebar_position) {

default: //default: sidebar right
?>
<div class="td-pb-span8 td-main-content">
<div class="td-ss-main-content">
<div class="td-page-header">
<h1 class="entry-title td-page-title">
<span><?php echo $current_term_obj->name ?></span>
</h1>
</div>
<?php locate_template('loop-albumrecensies.php', true);?>
<?php echo td_page_generator::get_pagination(); ?>
</div>
</div>

<div class="td-pb-span4 td-main-sidebar">
<div class="td-ss-main-sidebar">
<?php get_sidebar(); ?>
</div>
</div>
<?php
break;

case 'sidebar_left':
?>
<div class="td-pb-span8 td-main-content <?php echo $td_sidebar_position ?>-content">
<div class="td-ss-main-content">
<div class="td-page-header">
<h1 class="entry-title td-page-title">
<span><?php echo $current_term_obj->name ?></span>
</h1>
</div>
<?php locate_template('loop-albumrecensies.php', true);?>
<?php echo td_page_generator::get_pagination(); ?>
</div>
</div>
<div class="td-pb-span4 td-main-sidebar">
<div class="td-ss-main-sidebar">
<?php get_sidebar(); ?>
</div>
</div>
<?php

break;

case 'no_sidebar':
?>
<div class="td-pb-span12 td-main-content">
<div class="td-ss-main-content">
<div class="td-page-header">
<h1 class="entry-title td-page-title">
<span><?php echo $current_term_obj->name ?></span>
</h1>
</div>
<?php locate_template('loop-albumrecensies.php', true);?>
<?php echo td_page_generator::get_pagination(); ?>
</div>
</div>
<?php
break;
}
?>
</div> <!-- /.td-pb-row -->
</div> <!-- /.td-container -->
</div> <!-- /.td-main-content-wrap -->

<?php

get_footer();

carnews-mag
Participant
#0

First of all i adore this theme, its amazing. I fell in love the first time I saw it, though I am facing some issues as when I installed it, it didn’t appear quite as the demo mode. Here are some of the errors that are not functioning right now as in the demo:
1. The menu on mobile version, gets stuck it doesn’t oppen when you are on homepage.
2. The menu is not sticky and is not staying on top of screen.
3. When I make some changes on desktop version they do not update on mobile version as: Google ads and some other changes.
4. Contact page is not completed, it only appears some sort of text.
5.The weather api is missing, and is asking to download and install.
6. Social media buttons on sidebar when you enter news feed, are only attached to tadgiv.

Simion C.
tagDiv Staff

Try a code like this and check if it fixes the issue

#td-outer-wrap {
overflow: -webkit-paged-x;
}

Enter it in Theme panel->Mobile theme->Custom CSS.

You could use it only for pages that contain the events section by adding the page ID
https://www.screencast.com/t/iimPNyuODE

*Better to use English, this is the official language on the forum. This way the topics may be helpful to others as well.

Catalin
tagDiv Staff

Hello novacescu_adminm,

Notice that if you are using the mobile theme, the layout of the theme on mobile will be different than desktop. So, if you want to have the same footer style, you should simply disable the mobile theme, clear all the caches and check the results.

Thanks for your understanding!

Simion C.
tagDiv Staff

Hi,

I believe that there is a page called homepage that might have been indexed by Google and somehow it tries to display it as an AMP page
https://www.screencast.com/t/zT0E91tdo
https://www.screencast.com/t/Q5U7sWKNRUW
Trying to access this page by this link https://www.coupdepoker.com/homepage
redirects to the current homepage – https://www.screencast.com/t/CuxMEntFfh
You can see that if you click on home the mobile theme is displayed
https://www.screencast.com/t/cgtHTwm5
Maybe you did have a page called homepage and removed it, and then you or a plugin created a redirect for it. You could check if that is the case and try to ask Google to re-crawl the website (this may take a while)
https://support.google.com/webmasters/answer/6065812?hl=en

Thanks

Simion C.
tagDiv Staff

I checked again and now it seems to be displayed on mobile and with the mobile theme active
https://www.screencast.com/t/OPwzyhscoUsb
I could not say why it works now, maybe you made some changes within the plugin?

Simion C.
tagDiv Staff

Indeed, it seems the events are not loading on mobile, only on desktop. Is the plugin used to create the event responsive? maybe there are settings in it’s configuration to make it responsive for mobile devices or some dedicated mobile settings.
You could contact the plugin author as well, maybe this is a know issue or they can provide some help with this issue.
We did not make any actual tests with such plugins, so there is also a possibility that the plugin is not fully compatible with the theme.

Simion C.
tagDiv Staff

You did not deactivate the mobile theme plugin, it is still active
https://www.screencast.com/t/0pBzSVX01ttp
Deactivate the mobile theme plugin and the events section should be displayed at all times.

Simion C.
tagDiv Staff

Then I am afraid that you will have to deactivate the mobile theme plugin in order to display the event section on mobile.
The mobile plugin is intended to be used if you want to show a lighter and different website version. Page builders cannot be used on mobile pages, and shortcodes may not work as it is the case here. If you deactivate it then the event will display on mobile
https://www.screencast.com/t/CGY955oQSh

Simion C.
tagDiv Staff

Hi,

Actually the thumbnail is bigger, this is simply the design that was decided. If this is required for you you could increase the thumbnail size of the front page grid with a code like this
https://www.screencast.com/t/6oe0SSbxm
This is the code used in the example, if you decide to use it enter it in Theme panel->Mobile theme->Custom CSS

.home .td_module_mob_2 .td-module-thumb,
.home .td_module_mob_2 .td-module-thumb a:last-child {
height: 250px;
}

You can make modifications to it if needed.

Simion C.
tagDiv Staff

Hi,

The black background of the demo will not be inherited by the mobile theme, the mobile version will be different than the desktop version. The mobile theme does not have demos at the moment, coloring it is a similar way will require CSS code. This is a similar topic you can read
https://forum.tagdiv.com/topic/mobile-theme-once-youve-gone-black-youll-never-go-back/

Thanks

Simion C.
tagDiv Staff

Hi,

That has been on our list for a while, hopefully the cache guide will be updated in the near future. From what I know some settings of the plugin have been renamed or moved, that could cause confusion. Sorry for the inconvenience. A similar topic here
https://forum.tagdiv.com/topic/the-caching-setup-section-in-the-manual-is-outdated/

If you use the mobile plugin the cache should work if enabled
https://www.screencast.com/t/OzKXYmQIUkk

That file is not supported through the child theme, all the files are mentioned in the child theme guide
https://forum.tagdiv.com/the-child-theme-support-tutorial/

Thanks

Simion C.
tagDiv Staff

Hi,


@MCord
The first menu item would be this one
https://www.screencast.com/t/uhD3A1FQ
That does not do anything except direct to an empty page from what I can see
https://www.screencast.com/t/hGM7zvtek

A page menu will not be displayed on mobile, ideally one would use the mobile theme for mobile, this provides an option to display a different menu
https://forum.tagdiv.com/the-mobile-theme/

bellendir
tagDiv Member

Hello! The image size for the mobile theme, cropped narrow. In which file can I adjust the image size?

https://cloud.mail.ru/public/FVg4/vJu7pHv3N

Catalin
tagDiv Staff

Hello ljcarrico,

Please notice that the theme should work as expected for any mobile devices because it has been designed to be responsive.

Thanks for your understanding!

Simion C.
tagDiv Staff

Hi,

If you use the mobile theme plugin, then you must create 2 versions of a page. One for desktop and one for mobile. If you are implementing that calendar by a shortcode try entering it in the mobile version of the page. This section is displayed on the bottom of each page edit screen
https://www.screencast.com/t/ltceAchPd
There is a chance that the mobile theme will not display the calendar even if you do this. Then you could consider deactivating the mobile theme in order to display the same content form desktop.
The mobile plugin is optional, there will be no problem once you deactivate it
https://forum.tagdiv.com/the-mobile-theme/

Thanks

Viewing 25 results - 15,376 through 15,400 (of 22,177 total)