Search Results for 'optimize'

Results from the Forum
renatols
tagDiv Member

Thankyou, I already did everything you suggested. But as I see, the most is about the theme:

And My score now is 38, befeore was 98. I uninstall some plugins as smush, optimize, w3 total cache. I want to know if were necessary hire third part services to improve it.

Vlad S
tagDiv Staff

Hello !

You can take a look at our page speed optimize tutorial and try it: https://forum.tagdiv.com/how-to-make-the-site-faster/

Please make sure that you have accomplished all the system requirements as in our documentation here: https://forum.tagdiv.com/requirements-for-newspaper/

Thank you !

renatols
Participant
#0

Due the incompatibile of W3 Total Cache, I’m using WP Super Cache. But now My site is too slow. I deactivate some plugins and the speed has increased a little bit. Anyone has a sugestion for improve the speed. Plugins or something? I have read the that theme were optimized to speed and SEO, but it’s not what I’m facing. Thanks in advance.

Regards.

Bogdan B.
tagDiv Staff

Hi,

This is a general limitation of WordPress, and not the theme so any modification to the actual query has to be made on the WordPress level. It will not matter what theme you use if the WordPress query is not optimized for such large amounts of content.
You will need coding experience to be able to use the solution provided in the example from the previous reply:

The pre_get_posts action hooks into this process, allowing you to change the query before it is passed to WP_Query->get_posts().

This however is not covered by the theme support as it falls beyond the scope of the theme

Thank you for understanding.

pedroreis
Participant
#0

Hello,

When loading an cloud template appears the following error:

Error at zones: 5(models) : 1(dom). The model does not match the content Current state has involved an issue. You could try an UNDO operation (CTRL+Z / CTRL+SHIFT+Z)

After save the template, it shows like an empty template.

What can i do.

Another question, it is possible to increase site spee in mobile template or Newspapper X only optimizes desktop speed?

Thank you.

Calin
tagDiv Staff

Hi,

I’ve made some investigations for these queries and these are not from our theme, are from WordPress
-> https://i.imgur.com/VLk8Ye8.png -> https://i.imgur.com/3ppn11T.png -> https://i.imgur.com/NxlIFTa.png -> https://i.imgur.com/YOJBr2P.png
-> https://www.screencast.com/t/hYrDlUEtsho

If you have many articles you’ll need to make some special queries for what you want to extract from database. For example on the last query you can get the last 20 publish articles, if there is no index on post_date, the query will be slow if there is set an index the query will be fast.

Also our theme dose not have specialize queries, it is using the layers provide by the WordPress -> https://i.imgur.com/rU4w88X.png now if you have a big database as in this case the CMS need to be adapted, find the slow queries and optimize them.

Also you can check some similar topic from WordPress forum -> https://wordpress.stackexchange.com/questions/166448/how-to-optimize-wp-site-for-millions-of-posts maybe this will help you.

Thank you for your understanding!

dailydream360
tagDiv Member

This is not helping. All my plugins are necessary I’ve removed all unncessary plugins to increase speed. Here is a list of the plugins on the site – do you know maybe of a setting within the plugin that might activate the issue. Plugins on my site are all for optimization, caching etc. I’ve tried disabling plugins and clearing cache but this does not help.

Akismet, Amazon Link builder, AMP, Classic Editor, Cloudflare, Contact form 7, Cookie Notice, CoSchedule, Easy Table of Contents, Envato Market, Featured Images for RSS, Glue for Yoast, Login Lockdown, mailer Ligt, SG Optimizer, She Media, Short Pixel AI, Short Pixel, Social Pub TagDiv: Cloud, Composer, Mobile, Newsletter, Social Counter, Standard Pack, Thirsty Affiliates, Unlist Posts, Wordfence, Yoast.

Calin
tagDiv Staff

Hi,

Yes, we recommend using WP Super Cache: https://forum.tagdiv.com/cache-plugin-install-and-configure/
Please make sure that all the settings are like in our requirements, please follow the guide carefully – https://forum.tagdiv.com/requirements-for-newspaper/
and please increase all requirements that are lower, and follow all steps.

The speed of your website depends on how well your site is optimized, if you follow the steps which are presented in this tutorial here -> https://tagdiv.com/how-to-increase-page-loading-speed/ you’ll be able to increase the speed of your website.
Also you can check this similar topic for more solutions: -> https://forum.tagdiv.com/topic/optimize-script-to-improve-site-speed/

Thank you!

Calin
tagDiv Staff

Hi,

Please make sure that all the settings are like in our requirements, please follow the guide carefully – https://forum.tagdiv.com/requirements-for-newspaper/
and please increase all requirements that are lower, and follow all steps.

From what I can see now the mobile version and desktop version have the same elements -> https://www.screencast.com/t/pqcIPIODb -> https://www.screencast.com/t/nmv0Fp446

The speed of your website depends on how well your site is optimized, if you follow the steps which are presented in this tutorial here -> https://tagdiv.com/how-to-increase-page-loading-speed/ you’ll be able to increase the speed of your website.
Also you can check this similar topic for more solutions: -> https://forum.tagdiv.com/topic/optimize-script-to-improve-site-speed/

Thank you!

tromaktiko
tagDiv Member

At first page a slow query is :

SELECT SQL_CALC_FOUND_ROWS wp_posts.ID
FROM wp_posts
WHERE 1=1
AND wp_posts.post_type = ‘post’
AND ((wp_posts.post_status = ‘publish’))
ORDER BY wp_posts.post_date DESC
LIMIT 0, 20

It makes a query to posts table (as i wrote it has 900k articles)
in order to find last 20 (20 is the number we set to appear)
The is searching whole table for published posts and takes last 20, so i assume
will be slow for any big site, maybe had to be optimized to check last days only?

thanks again

tromaktiko
Participant
#0

Hi,

we use high end server (128g ram, ssd, 10 cores etc) and
we host a single site but with very large database (900k articles – 10.2 g).
Database (mariadb) is optimized very good as we have experience from many servers and php is 7.3.
Site nowadays have small traffic but still cpu usage is quite high (>50%)
and is from mariadb.
Investigated the issue and seems to be from a td_composer query, maybe was not designed for so big sites.
Here is the query monitor report

Query is
SELECT DISTINCT YEAR( post_date ) AS year, MONTH( post_date ) AS month
FROM wp_posts
WHERE post_type = ‘attachment’
ORDER BY post_date DESC

caller is
wp_enqueue_media()

and Plugin: td-composer

It seems that as it is a query without indexes and queries whole post table
is slow for a 900k articles site?
Also quering for a result with years, months for every attachment of site not sure what profit has.

Please do not post with the usual links for speeding up the site, everything is optimal at server and site level, i think
question is clear.

Thanks!

Vlad S
tagDiv Staff

Hello !

You can take a look at our page speed optimize tutorial and try it: https://forum.tagdiv.com/how-to-make-the-site-faster/

Please make sure that you have accomplished all the system requirements as in our documentation here: https://forum.tagdiv.com/requirements-for-newspaper/

Thank you !

Calin
tagDiv Staff

Hi,

Please make sure that all the settings are like in our requirements, please follow the guide carefully – https://forum.tagdiv.com/requirements-for-newspaper/ and please increase all requirements that are lower, and follow all steps.

The speed of your website depends on how well your site is optimized, if you follow the steps which are presented in this tutorial here -> https://tagdiv.com/how-to-increase-page-loading-speed/ you’ll be able to increase the speed of your website.
Also you can check this similar topic for more solutions: -> https://forum.tagdiv.com/topic/optimize-script-to-improve-site-speed/

If you want you can check this similar topic from WordPress support -> PHP Warning: Error while sending QUERY packet?

Thank you!

Calin
tagDiv Staff

Hi,

Please notice that the amp version can be seen only by the visitors that are using a mobile device ( AMP -> Accelerated Mobile Pages), using the “/?amp” at the end of url is only to see how it will look the amp version ( it is just for test ), also on amp you’ll not longer have a sidebar, only the main page content.
Blazing-fast Websites: How to Optimize AMP with Newsmag Theme

Thank you for your understanding!

Calin
tagDiv Staff

Hi,

The speed of your website depends on how well your site is optimized, if you follow the steps which are presented in this tutorial here -> https://tagdiv.com/how-to-increase-page-loading-speed/ you’ll be able to increase the speed of your website.
Also you can check this similar topic for more solutions: -> https://forum.tagdiv.com/topic/optimize-script-to-improve-site-speed/

In order to achieve that speed on mobile you’ll need to create a new content for pages because in the most of cases those were made with builders ( tagDiv Composer, WPBakery ) and you need to use only the mobile editor ( you need to set the content for pages in mobile editor and this content will be display on mobile theme)
-> https://i.imgur.com/2Qbm07y.png

Also we do offer page speed services over a fee, if you want us to increase your page speed you can check our custom services from here -> https://tagdiv.com/premium-customization-services/

Thank you!

boka003
Participant
#0

Hello,

Our portal in last time getting more visits and we try to optimize our portal.

Some plugins that we use for number of likes at comments create very large number of request to database.

So, we will like to create button “show comments”, so only visitors who want to read comments will send the request to database.

We don’t have any programmer now 🙁

Is there any plugin or theme function that can help us to create show comments button on post page?

Thank you.

naveen.kunju
Participant
#0

Before posting this, I have referred to many articles on the forum.

A summary of what I did:

  • Updated to latest version of the theme. Before update my mobile score was 22.
    https://imgur.com/a/jfFwk89
    This was checked multiple times over a span of 15-20 days.
  • After update my mobile speed has reduced to 19.
    https://imgur.com/undefined
  • Still optimistic, I installed and activated the mobile theme. My mobile speed has increased to 34.
    If the mobile version is meant to load faster and make the site light, why is the speed below average? I am not expecting a 90 or 100, but somewhere between 60-80, is that possible?

    I can see majority of the lag is caused by render blocking resources many of which are javascripts and css. Is there a way to optimise this?

    P.s – I have tried w3 super cache, autooptimize and several similar tools but no luck.

    Please can you suggest a solution for this asap? This has already hugely affected my site rankings.

vv2005
tagDiv Member

I also had the same problem. I was told that I did not have data source, that is why the images do not appear on social sharing. In order to fix that, yoast seo plugin was installed -> https://kb.yoast.com/kb/getting-open-graph-for-your-articles/

After installing yoast seo also, you need to set featured images of less than 300kb, for the image to show in the social sharing of Whatsapp. You could use Photoshop or any plugin to optimize images. Else, you could use this online website to optimize images -> http://www.resizeimage.4u2ges.com/ .

Calin
tagDiv Staff

Hi,

Please make sure that all the settings are like in our requirements, please follow the guide carefully
https://forum.tagdiv.com/requirements-for-newspaper/
and please increase all requirements that are lower, and follow all steps.

The page speed depend on how well is your website optimize, the number of requests, page size -> https://i.imgur.com/ae86rtN.png if you follow the steps which are presented in this tutorial here -> https://tagdiv.com/how-to-increase-page-loading-speed/ you’ll be able to increase the speed of your website.
Also you can check this similar topic for more solutions: -> https://forum.tagdiv.com/topic/optimize-script-to-improve-site-speed/

Thank you!

domien
tagDiv Member

Hi Calin,

Thanks for your reply. But no I still don’t get it. Check your marketing pages, the biggest claim of the new pro templates is performance. So since you are showcasing these demo’s why are they not optimized to show their true potential? I don’t get this at all no.

Kind regards.

Sprint News
Participant
#0

After Updating newspaper them to 10.2 version i get some error on site
The bigger one is that the preview of an unpublished article it shows uncorrect and with a message at the end: A critical error has occurred on your website.
Whe do not use child site.

Similar error on other site with newsmag theme

### wp-plugins-active###

AdRotate Banner Manager: version: 5.6.2, author: Arnan de Gans
Classic Editor: version: 1.5, author: WordPress Contributors
Cookie and Consent Solution for the GDPR & ePrivacy: version: 2.0.2, author: iubenda
Envato Market: version: 2.0.3, author: Envato
Imagify: version: 1.9.8.1, author: WP Media
Limit Login Attempts Reloaded: version: 2.10.0, author: WPChef
MainWP Child: version: 4.0.5.1, author: MainWP
Optimize Database after Deleting Revisions: version: 4.8.8, author: CAGE Web Design | Rolf van Gelder, Eindhoven, The Netherlands
tagDiv Composer: version: 2.5 | built on 11.11.2019 15:07, author: tagDiv
tagDiv Standard Pack: version: 1.0 BETA | built on 11.11.2019 15:07, author: tagDiv
WPBakery Page Builder: version: 6.0.5, author: Michael M – WPBakery.com (latest version: 6.1)
WP Rocket: version: 3.4.2.2, author: WP Media
Yoast SEO: version: 12.7.1, author: Team Yoast
tagDiv Cloud Library: version: 1.4 | built on 11.11.2019 15:07, author: tagDiv
tagDiv Social Counter: version: 4.7 | built on 11.11.2019 15:07, author: tagDiv

### wp-plugins-inactive ###

Duplicate Post Page Menu & Custom Post Type: version: 1.4.1, author: Inqsys Technology

gumball44
tagDiv Member

I use your code via theme panel -> mobile theme -> custom css, and it doesn’t work for me.

I cleared cache of wp super cache, autoptimize and cloudflare.

  • This reply was modified 6 years by gumball44.
John Fernandez
Participant
#0

When I create a post can and add a feature image… can I add a different feature image (size wise) for that post?

Calin
tagDiv Staff

Hi,

I think that this is an misunderstanding, only using a pro demo you’ll not get a fast website you still need to optimize your website, the difference is that the pro demos will not load all the style like the classic demos, also you’ll need to have the standard pack deactivate to see some improvements.
I hope that this time a was more clear about the pro demo results.

Thank you!

Calin
tagDiv Staff

Hi,

1. The page speed depend on how well is your website optimize, the number of requests, page size -> https://i.imgur.com/ae86rtN.png if you follow the steps which are presented in this tutorial here -> https://tagdiv.com/how-to-increase-page-loading-speed/ you’ll be able to increase the speed of your website.
Also in order to have images on modules/blocks you’ll need to set some featured image -> https://forum.tagdiv.com/featured-image-or-video/

2. Please make sure that you’ve set the google ads in theme panel > ads, you can check more about this in our documentation from here -> https://i.imgur.com/i8jiEGt.png

3. If you want you can install a demo, this should change the website design -> https://forum.tagdiv.com/installing-demos/

For this problem -> https://i.imgur.com/anlOJhU.png , please make sure that you have WordPress 5.3 and Newspaper 10.2

Hope this will help you!
Thanks.

Viewing 25 results - 2,301 through 2,325 (of 4,409 total)