- TutorialsFrom WPBakery to tagDiv Composer
- TutorialsWhat is Ajax preloading?
Must check this article – https://www.ytechb.com/recharge-mobile-using-facebook/
Ads are not appearing.
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.
*Update, I realised that any page that I make won’t open in the mobile menu. when I open a page I will only see the title of the page : https://www.screencast.com/t/Ob3RHeHFVwEB
please help me with a solution.
Thank you!
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.
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!
Hi Bogdan,
Can you please check that this setting removes the search icon from the mobile view also? For me it is not…I set the search to be hidden which works for desktop and tablet browser sizes but it remains in the mobile view.
Thanks
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.
this is my website
https://www.jiujitsutimes.com
and on mobile the featured article never change?
its featuring the old article and it never changes
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();
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.
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.
Hello novacescu_admin,
If you want to make some changes to that section, you should edit the footer.php core file from the mobile folder from here -> https://www.screencast.com/t/OVWbN56I5
Thanks.
Thanks for the reply, Catalin. Is there a way to customize the mobile footer?
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!
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
Hi,
I am working on this site and I have just installed the mobile plugin.
http://nov.triboot.ro/
The footer on my mobile page is not the same as the desktop version. It seems to pull a different footer style. How can I change that?
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?
Hi,
Just checked my website on Mobile, accessing it through Google Search, and I got this: https://ibb.co/jzk4wx
Never happened before. I usually got the mobile version (https://ibb.co/cKvF3c) or a good looking AMP one.
Any idea why it’s doing that?
Btw, the Mobile Editor section of my Homepage is empty but it has never been an issue before…
Best Regards
how to solve this error?
image does not appear, whereas in normal mobile version.
error versi destop : https://prntscr.com/jargal
set the image on the article : https://prntscr.com/jargxi
In normal browsing all the ads show for me, on all the posts that I checked and pages. In incognito mode the ads seems to appear only on the homepage, in the post page they are not served it seems, at least on Chrome and Firefox incognito which I checked. I don’t know why that happens, maybe Adsense is not served in incognito mode.
You could create a topic in the Adsense forum, I am sure the users there will provide useful inforamtion
– https://productforums.google.com/forum/?nomobile=true#!forum/adsense
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.
Hi,
I added this map in row html block like this.
http://www.screencast.com/t/qJ6ZCBQm6ckP
It’s not reponsive in mobile. How can i fix it ?
Thanks
Hello,
I recently managed to change the URL of the main logo to a different one from the default one, but the logo in the sticky menu changes back to the default URL of the homepage, there is some way to change the logo URL in the sticky menu to other than the default one? I changed all the addresses of “href:” in: logo.php, logo-h1.php, logo-mobile-h1.php, logo-mobile-h1.php. But it keeps changing to the default in the sticky menu when I click on the logo, very grateful for your comments, greetings.
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.
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