You can’t. You have to edit the mobile theme files inside the main theme but your modifications will be overwritten with every theme update. If it is just CSS changes, you can do so from the theme panel>mobile>mobile CSS (or something like that).
Ensure in the root folder of your site (in cpanel) you click on settings on the top right corner and enable this option and save http://prntscr.com/mj7ozh. You should see your .htaccess. Just copy the code provided in the guide for .htaccess and paste it just above where it says #Begin WordPress . For the php.ini just look for multiphp ini editor in your cpanel and make the changes from there by inserting the values provided.
You are welcome.
Install the tagdiv newsletter plugin and look again for the form in the tagdiv composer elements.
There are many guides here to optimise the site.
– https://www.infophilic.com/get-almost-100-pagespeed-newspaper-theme/
– https://forum.tagdiv.com/topic/score-100100-pagespeed-with-newspaper-wordpress-theme/
– https://forum.tagdiv.com/topic/newspaper-theme-speedify-your-website/
– https://forum.tagdiv.com/topic/tutorial-chriss-custom-optimizations-for-functions-php-etc/
– https://forum.tagdiv.com/topic/tip-how-to-easily-minify-your-css-without-breaking-your-site/
– https://forum.tagdiv.com/cloudflare-cdn/
– https://forum.tagdiv.com/how-to-make-the-site-faster/
https://kinsta.com/blog/google-pagespeed-insights/
I have 1gb ram and this theme works perfectly with that on shared hosting. Never had issues. Maybe you need to change your host.
From the header section of the theme panel. Look for text logo option in the logo options and modify it accordingly.
Ensure you are using the latest version of the theme (9.5) and that you have updated the core tagdiv plugins from Newspaper>Plugins in your WordPress dashboard.
See option 5 here on how to set it up https://forum.tagdiv.com/how-to-make-the-site-faster/ (I don’t use it and prefer autoptimize or fast velocity minify).
It is. Just change the version to whatever number you want.
You are welcome.
You need to paste this code in wp-config.php file just before the line that says ‘That’s all, stop editing! Happy blogging.’
define( 'WP_MEMORY_LIMIT', '256M' ); or ask your hosting provider to do it for you.
See this tutorial on how to use and where to find the child theme for newspaper theme https://forum.tagdiv.com/the-child-theme-support-tutorial/
I changed themes to accommodate this feature because it is what my readers wanted (plus it only works in default theme which does not support full width on posts and the full width also a requested feature by my readers). I will come back to the theme in future if it supports better integration with ACF plugin custom fields. I tries to create a shortcode using this code in functions.php but the output shows on top of the post (made with td cloud library templates)and outside the td rows.
<?php
add_shortcode( 'custom_name', 'footag_func' );
function footag_func( $atts ) {
$html= '';
$posts = get_field('related_posts', false, false);
$loop = new WP_Query(array('post_type' => 'post', 'posts_per_page' => 3, 'post__in' => $posts, 'post_status' => 'publish', 'orderby' => 'post__in', 'order' => 'ASC' ));
if($loop->have_posts()) {
$html .= '<div class="rel-posts">';
while ($loop->have_posts()) : $loop->the_post();
$html .= '<div class="related-post">';
$html .=''.the_post_thumbnail('td_218x150').'';
$html .= '<h3>'.the_title().'</h3>';
$html .= '</div>';
endwhile;
$html .= '</div>';
} wp_reset_query();
}
return $html;
?>
Please do. I even tried to create a shortcode for it using the provided php code by ACF in functions.php but the output ends up appearing on top of the page and out of the normal rows of the pagebuilder.
Or how does the td composer or td cloud library (plan to) integrate with ACF plugin?
Hi @bogdan-b. I have also noticed the menu stops responding when jquery is deferred (for page speed purposes). Is that an issue?
Hi @Simion. I tested my own site’s homepage on 2g network with lazy loading enabled and the images did not load. But they are loading on 3g and 4g connection. That is very interesting…
Thanks, @simion. I think that is the same problem I got. The PHP way in theme files works, but the shortcode way does not work. I think the PHP code must appear in some theme file before it is rendered in the front page. I purged many old posts from my blog recently and decided to just show custom related posts. I saw a custom plugin that shows ACF as an element of visual composer https://wordpress.org/plugins/acf-vc-integrator/ and also this one https://codecanyon.net/item/wp-acfvc-bridge-integrates-advanced-custom-fields-and-visual-composer-wordpress-plugins/19622052 and was wondering if a similar thing would work for td composer.
I found it very interesting indeed too. It is good to have it noted. They might decide to pick it up. That would also aid in page speed where necessary. Thanks.
If you are using the mobile plugin, don’t defer jquery.
Also, check that you are not on a slow network. I travelled recently and I got a similar problem due to network issues.
Go to Newspaper>Plugins section on your WordPress dashboard and update all the plugins you have installed for the theme.
Go to Newspaper>Theme Panel>Block Settings>Meta info on Modules/Blocks and set “show comment count” to off.