Search Results for 'amp'

Results from the Forum
vorilask
tagDiv Member

Bettina, I changed the Article Inline Ad in Theme Panel. As I visit the relevant Single Post Cloud Template, I can see the Article Inline Ad 1 entity after the 3rd paragraph of each article (seen by tagDiv Composer), as per Theme Panel settings, but the ad code displayed is not the current one. Please, watch an article example: https://www.bet3.gr/stoixima-prognostika/euroleague/thelei-na-chtisei-seri-o-panathinaikos/
My e-mail address is vorilask@gmail.com, if it is to address directly to me, so as to find out what’s happening. Please come back because I change Article Inline Ad settings, but they do not actually change.

Looking forward to hearing from you again. Thank you very much in advance.

Best regards,
Konstantinos Vorilas

nomadwebs
Participant
#0

Hello,

I have two sections of my website https://fetatarragona.cat that don’t show the last post of the category.
See the next example:

If you see the bottom of this page https://fetatarragona.cat you’ll see a secction called “CONTINGUTS AUDIOVISUALS” with 6 video posts.

The thing is I can’t see the latest post published on this category. This section is already filtered as a “latest post” But is not showing the last post.

If you see the category page https://www.fetatarragona.cat/category/audiovisuals/ You’ll see the latest post than is not appearing on the homepage section.

I have the same problem with the “REPORTATGES” section.

Can you help me solving this problem?

I’ll wait for your answer.
Best regards.
Francisco

Bettina
tagDiv Staff

Hello Chris!

Please check the settings from the link above and make sure you have the same settings. It is only a suggestion, so you can use any other plugin which suits you the best.
Please provide more information about what you need to achieve, maybe some screenshots or example, it will help.

Thank you!

Bettina
tagDiv Staff

Hello @altdenis !

I’m sorry to hear this, but I do not understand why this is a disadvantage and with what it will help you. Also, how can break an entire website? Please provide more information about your issue, examples, screenshots/video in order to help you efficiently.

Thank you!

Chris Baird
tagDiv Member

Just removed a image optimizer and added the EWW image optimization – in the settings i was looking for the lower two options via the point 3 you mentioned above –
Web P Conversion & JS WebP Rewriting

However in the new or current EWW – it shows under WebP Conversion it shows:

WebP images are served automatically by Easy IO.

I have Easy IO turned on – but is there anything else I am to do.

Thanks

Also – as for image sizes on mobile / desktop – if i have a category x – and have single post template – is it possible to make it so the image always shows as a x wide by x tall image?

Rafael
tagDiv Member

Hey Anamaria,

Thanks for your guides which I’ve just read. However, all of my image URLs are perfectly fine and work flawlessly.

The only thing that’s showing an incorrect URL is the Newspaper Theme Panel (Header > Logo & Favicon > Logo Upload fields).

As mentioned before, I’ve uploaded a brand new logo image (which has the correct URL) and the Theme Panel just resets and goes back to the old photo when I click save. So basically, I can’t get the Theme Panel to save a new logo image…it just refuses to save.

So all my site images are working perfectly fine with the exception of that one place in the Theme Panel that doesn’t want to save any new upload.

Hope that clarifies my issue.

Regards,

Raf

tariq@mta.tv
tagDiv Member

This is a deal breaker for long time. it has been asked by many individuals. having it on roadmap and some timeline would be helpful.
If not possible, then some example module that can be followed to manage CPT with cloud template, as it was for CPT using standard template.

Bettina
tagDiv Staff

Hello!

For example, I have the version of wp 5.9 and php version 7.2.34 and I can not meet all these problems. Make sure you have only the tagdiv plugins and not using some extra non-tested plugins with our theme or cache plugins.
Also, we can investigate this issue and it will help us if you send an email at contact@tagdiv.com and provide wp-admin.

Thank you!

Bettina
tagDiv Staff

Hello @crodexter!

Please check this guide: https://forum.tagdiv.com/theme-thumbs/ ; Some screenshots where you can change the image sizes: https://i.imgur.com/OYxNzc9.jpg ; https://i.imgur.com/UpGKfGv.jpg
Please note that these settings are not available for the standard templates or Mobile theme plugin.
Regardless of image size used for featured images, the theme will create thumbnails from them. These thumbnails will be loaded, not the full image. Still there are methods to optimize the thumbnails, see point 3 in this guide for example
https://forum.tagdiv.com/how-to-make-the-site-faster/

Thank you!

Lalit
tagDiv Member

Disabled it but, fonts (https://fonts.googleapis.com/css?family=Muli%3A400%2C600%2C800&ver=11.4) still loading on the pagespeed insight.

Bettina
tagDiv Staff

Hello!

Please make sure you select the row. Take a look here in this video for example where I build 6 columns: https://www.screencast.com/t/mZ2c5XamTFN
If you put the AD box code in the theme panel, then you need to select an ad spot: https://www.screencast.com/t/brigM1cj5, otherwise you should place the add code in the ad box, custom ad tab.

Thank you!

dimitrisv
tagDiv Member

Here is the video: https://1drv.ms/v/s!Akul2ygARwfdh5V5kkO9ycjQcun5mw?e=23j3NK

And here are the settings in function.php to optimise the performance of woo commerce.

/** Disable Ajax Call from WooCommerce on front page and posts*/
add_action( 'wp_enqueue_scripts', 'dequeue_woocommerce_cart_fragments', 11);
function dequeue_woocommerce_cart_fragments() {
if (is_front_page() || is_single() ) wp_dequeue_script('wc-cart-fragments');
}

/** Disable All WooCommerce Styles and Scripts Except Shop Pages*/
add_action( 'wp_enqueue_scripts', 'dequeue_woocommerce_styles_scripts', 99 );
function dequeue_woocommerce_styles_scripts() {
if ( function_exists( 'is_woocommerce' ) ) {
if ( ! is_woocommerce() && ! is_cart() && ! is_checkout() ) {
# Styles
wp_dequeue_style( 'woocommerce-general' );
wp_dequeue_style( 'woocommerce-layout' );
wp_dequeue_style( 'woocommerce-smallscreen' );
wp_dequeue_style( 'woocommerce_frontend_styles' );
wp_dequeue_style( 'woocommerce_fancybox_styles' );
wp_dequeue_style( 'woocommerce_chosen_styles' );
wp_dequeue_style( 'woocommerce_prettyPhoto_css' );
# Scripts
wp_dequeue_script( 'wc_price_slider' );
wp_dequeue_script( 'wc-single-product' );
wp_dequeue_script( 'wc-add-to-cart' );
wp_dequeue_script( 'wc-cart-fragments' );
wp_dequeue_script( 'wc-checkout' );
wp_dequeue_script( 'wc-add-to-cart-variation' );
wp_dequeue_script( 'wc-single-product' );
wp_dequeue_script( 'wc-cart' );
wp_dequeue_script( 'wc-chosen' );
wp_dequeue_script( 'woocommerce' );
wp_dequeue_script( 'prettyPhoto' );
wp_dequeue_script( 'prettyPhoto-init' );
wp_dequeue_script( 'jquery-blockui' );
wp_dequeue_script( 'jquery-placeholder' );
wp_dequeue_script( 'fancybox' );
wp_dequeue_script( 'jqueryui' );
}
}
}

But the behaviour is the same, regardless of them being present or not.

Bettina
tagDiv Staff

Hello @iamratnesh!

1. From my point of view, if you don’t use the Mobile Theme plugin, then there is no reason or benefit from AMP. But, it shouldn’t cause any problem like that.
2. You can choose on which page you need AMP: https://www.screencast.com/t/9grHVdJK8sIs
Please provide a video which is clear, so I can understand what you mean exactly.

Thank you!

crodexter
tagDiv Member

Here is example of code with multiple sizes for featured image

https://imgur.com/a/IstTYnc

  • This reply was modified 4 years by crodexter.
  • This reply was modified 4 years by crodexter.
  • This reply was modified 4 years by crodexter.
  • This reply was modified 4 years by crodexter.
crodexter
Participant
#0

Hello,

Is it possible to set fixed featured image size on mobile?

<div class="td-post-featured-image"><img width="696" height="364" src="https://example-domain.com/wp-content/uploads/2021/11/example-image-title-696x364.jpg" alt="" /></div>

I can’t get Largest Contentful Paint less then 2.5 and LCP element is featured image

Thank you

Anamaria
tagDiv Staff

Hello,

If you don’t want to use the mobile theme plugin, then disable also, the AMP plugin.
Also, please check this topic where I explained each mobile version -> https://forum.tagdiv.com/topic/mobile-version-not-working-properly-2/ and choose what mobile version you want.

Thank you!

Calin
tagDiv Staff

Hi,
What I mean, was that I saw on you desktop version in pages and posts elements that do not have the same font family. Like in above example.
What you need to do is to make sure that you are using only one font for entire page and for this you can use our guide https://forum.tagdiv.com/font-customization/ this will explain all the possibilities to change the fonts.
I hope this will help you!

Anamaria
tagDiv Staff

Hello,

In order to avoid misunderstandings, then please provide more information about your issues, screenshots or a video with an example.
Also, please let me know what version of the theme you have, also, please check our channel https://www.youtube.com/channel/UCOT1RiNysIPCTPSnVZskwtQ, you can find more videos that can help you and documentation https://forum.tagdiv.com/newspaper-theme-documentation/

A solution for sending a screenshot/video is this:
Download, capture, send: https://www.techsmith.com/jing-tool.html
After making the screenshot, you will have a link, paste it here.

Thank you!

Rafael
tagDiv Member

Hi everyone,

So I have a somewhat similar issue. However, doing what otggamer mentioned didn’t resolve mine. I’m on the latest version of Newspaper 11.4.

Basically, I migrated from one host to another. Now, after the migration, if I go to:

Theme Panel > Header > Logos &amp; Favicon, all the logos (desktop and mobile) are showing a URL of https://wordpress-722984-2411204.cloudwaysapps.com/wp-content/uploads/2018/&#8230;..”.

There are 3 issues with that:

1) The URL points to a temporary Cloudways link. However, I’ve already changed my DNS away from the Cloudways temporary WP name to stluciatimes.com. I’ve already updated my permalink structure. I’ve also confirmed that all URLs are working correctly on my site. Therefore, the URLs should point to https://stluciatimes.com/wp-content/uploads/…&#8221;.

2) The folders that the URLs are pointing to (year of 2018) have all been deleted. However, I have already re-uploaded a new set of logos.

3) Whenever I try to change the logos to the new ones I’ve uploaded and click save, all the URLs automatically go back/reset to the old https://wordpress-722984-2411204.cloudwaysapps.com/wp-content/uploads/2018/&#8230;..” once I refresh the page.

Any assistance or ideas that could help would be awesome.

Thanks so much!!

Regards,

Rafael

Julia Colmsee
Participant
#0

Hello, how to turn on the preview of the post templates? Although I have several to choose from, I can’t see their layout as with the default template. Thank you for help

Screenshot

Lalit
Blocked
#0

Hi,

I have completely disabled the Google fonts from the Theme panel (https://prnt.sc/26lt2x6) and used custom fonts (self-hosted) (https://prnt.sc/26lt2u3) but, still appearing when I am checking on the page speed insight.

Check here: https://prnt.sc/26lt446

I am using AMP with Mobile theme plugin.

Help me to remove google fonts completely from my site. i want to host them locally.

vikasnangia
Participant
#0

For some strange reason, on the blog category page after the pagination, the same content shows again in a loop.

So for example, if we show 10 blogs, after pagination the same 10 blogs show, instead of the next 10.

It breaks when we change it to “Load more” or “infinite load”.

https://www.appmysite.com/blog/category/mobile-app-builder/

NFT Insider
tagDiv Member

Excuse me, I wasn’t clear enough. I meant on the blogposts and categories. Zo for example the red ‘whitespace’ in this example: https://prnt.sc/26le22n

iamratnesh
Participant
#0

Please help out I have some queries:

1) If I use a separate Mobile theme (not AMP one, am talking about the Newspaper mobile theme) then will it have a bad SEO impact for mobile search results indexing?

2) Please fix this stuff (check video). AMP is not working properly. I want everything to be AMP now except Homepage, because for homepage I”ll set a new mobile theme

I’ve disabled the mobile theme, as a support member said through email said, from the Main Homepage and enabled AMP for all pages except Homepage.

Also, I’ve created a Mobile theme page and assigned it. But still, my Desktop homepage is getting opened on mobile. which is quite weird. And my AMP for posts and other pages is ruined.

Please help me fix these issues

Hawkmedia
tagDiv Member

O my god, don’t laugh and my apologies, what can I say but if your a mod or admin you can delete this topic.

Here’s a prime example of not having to many tabs open in chrome and why us blokes shouldn’t try and do two things at once!!

This question is about a completely different script, Ignore it or delete it, maybe i am just tired lol

Many thanks
Carl

Viewing 25 results - 7,501 through 7,525 (of 38,683 total)