Hi,
I’m glad that there are improvements!
1) I don’t know how to solve this. How do I do it? – That one is related to some settings in wp rocket, here is a similar topic – https://forum.bricksbuilder.io/t/how-to-fix-pagespeed-issue-referenceerror/10792/2
4) I’ve changed the title from H3 to H2. I think this is what you were saying. – yes this was what I mean.
– Background and foreground colors do not have a sufficient contrast ratio. -> I see that now is only on footer there is should be better to change the email color to #ffffff if you want you can use this css that will set the hover on it:
.footer-email-wrap a{
color: #ffffff;
}
.footer-email-wrap a:hover{
color: #c8152b;
}
– Touch targets do not have sufficient size or spacing. -> please try this custom css, it should resolve a part of targets:
.meta-info,
.td-post-category {
font-size: 12px;
}
I hoe this will help!
I’m glad that the color problem has been resolved! 😀
Ok, now related to mentioned problems, this one with the image – img1 it appears that the image was not yet converted in .webp format, now seems to be so that error should no longer appear for that image.
Related to img2 it appears that you have a robots.txt file where you have some code that is blocking the Googlebot that wants to check your website – https://support.google.com/webmasters/answer/13144973?hl=en
=> https://we.tl/t-pfLXY6Cszg
Hi theheritagelab, let me know if I correctly understand, if are referring that and articles that has 2 authors should be display for both authors when you access the https://www.domain.com/author/author1/ and https://www.domain.com/author/author2/, right?
For this you’ll need to modify the query for the author archive pages so that it checks both the main author and the co-authors field set by ACF.
add_action('pre_get_posts', 'custom_author_query');
function custom_author_query($query) {
if ($query->is_author() && $query->is_main_query()) {
$author_id = get_queried_object_id();
// Modify this with your actual ACF field key for co-authors
$meta_query = array(
array(
'key' => 'acf_co_authors_field', // Replace this with your ACF co-authors field name
'value' => '"' . $author_id . '"',
'compare' => 'LIKE'
)
);
$query->set('meta_query', $meta_query);
}
}
The above code needs to be set in a child theme in functions.php also the above cone it is possible to be need to be adjusted.
Thank you!
Hi TheZugzwangBlog, simchris is right, that error is related to the footer logo that is no longer there, the image is not longer find on your media, so please use the theme panel settings and set a new logo (or the same one) for footer.
Hi TheZugzwangBlog,
Ok, let’s try to resolve the problems one by one, first on homepage:
– you have some errors in console that should b resolved – https://i.imgur.com/afwoy3V.png
– the footer logo image is missing – https://i.imgur.com/i3eAHkX.png
– for “Background and foreground colors do not have a sufficient contrast ratio.” use this custom css:
.td_block_big_grid .td-big-grid-meta,
.td_module_mx1 .meta-info {
background: #111;
}
.td_module_mx1 .meta-info {
padding-top: 16px;
padding-bottom: 16px;
margin-bottom: 0;
}
– set for “Últimas entradas” a different SEO title, set it on H2 – https://i.imgur.com/gyBDQWt.jpeg
Those should improve the situation. After you implement it let me know and I will check and see what remains and provide some solution to make it better.
Thank you!
Hello theheritagelab,
Yes, you can use ACF to create a Co-Author field, we’ll be something like this:
Add a new field:
Under Field Settings, choose:
Then you need to use a single post template, edit it using tagDiv Composer and add the custom filed element and select the acf for authors- https://i.imgur.com/3pgDu6E.png – https://i.imgur.com/LCkuu1D.jpeg – https://i.imgur.com/vhOMOJI.png
To display the co-authors on blocks you need to create modules were you can create the layout of blocks and add elements you want there you can add the custom fields too – https://forum.tagdiv.com/modules-builder-newspaper-theme/ – https://forum.tagdiv.com/flex-block-builder-flex-loop-builder/
Thank you!
I’m glad that the color problem has been resolved! 😀
Ok, now related to mentioned problems, this one with the image – https://i.imgur.com/nCS9vuv.png it appears that the image was not yet converted in .webp format, now seems to be so that error should no longer appear for that image.
Related to https://i.imgur.com/mXEqyI2.png it appears that you have a robots.txt file where you have some code that is blocking the Googlebot that wants to check your website – https://support.google.com/webmasters/answer/13144973?hl=en
Hi nicholasyou,
We’re sorry to inform you that your account has been blocked.
Despite continuing to provide support for you after your support period expired on December 9, 2020, it appears that you remain dissatisfied. While we have extended our help beyond the support period free of charge, inappropriate language and offensive behavior are not tolerated on the forum.
Thank you for your understanding.
Hi petar777,
I’ve tried to explain the best solution for using fonts, but if that doesn’t fully address your needs, I’m happy to answer each of your questions regarding the default fonts in more detail.
“I want to make an exact copy of the fonts that come with the theme by default, so what weights should I choose?”
The default fonts used in the theme are Roboto and Open Sans, as you correctly mentioned. However, when you install a demo (pre-built website), the theme often uses other Google fonts, and the font weights vary based on the demo. Typically, font weights range from 400 to 900 for normal styles and from 400 to 600 for italics.
If a specific font weight (e.g., 700) isn’t loaded, it’s not a major issue— the theme will automatically load the closest available weight that has been update in the theme panel (e.g. 500 regular, this should not be missing from the site, being the most used ).
As for the types of fonts supported by our theme: only static .woff fonts are allowed (not .woff2 or .ttf). This means you’ll need to upload one .woff file for each font style you want to use.
I hope these answers clarify things for you!
Ok, I checked the pagespeed results and now the score looks fantastic.
Now it seems that the above code is not fixing the problem on mobile only from desktop, were seems to be now a problem only with the first module.
Please add this extra code in the theme panel for phone -> https://i.imgur.com/o0yNNA8.png:
.td-big-grid-meta,
.td_module_mx1 .meta-info {
padding-top: 16px;
background: #111;
}
and for desktop please use this code – https://i.imgur.com/TOTynbt.png :
.td-big-thumb .td-big-grid-meta {
background: #111;
}
Let me know the results!
Glad it worked! 😀
Hello,
1. Unfortunately this can not be overwrite, it can be edited only in the plugin file and it must be done after each theme update.
2. When the tagDiv Mobile theme plugin is used then you need to use only the Mobile editor elements – https://i.imgur.com/1Y5BWO2.png – https://forum.tagdiv.com/mobile-theme-introduction/ – https://forum.tagdiv.com/the-mobile-theme/
Thank you!
If you comment that code from td_js_generator.php does it work? or you still get the errors?
I’ve reviewed the token, and it seems that after Meta’s recent updates, the token we were using to set featured videos via Facebook is no longer valid. I’ve informed our development team, and they will assess the next steps to resolve this issue.
The OMGF plugin will downloading google fonts you are using to your server and serving them locally instead of loading them from Google’s servers. This approach improves performance and privacy by reducing external requests and ensuring the fonts are served from your own server.
“My question is – when I download one of them there are two files in the main directory – OpenSans-VariableFont_wdth,wght and OpenSans-Italic-VariableFont_wdth,wght (I can convert them to Woff with the specified tool in the documentation) but also there is a folder named static with 20 other files. Which of these files should I upload to the TagDiv fonts menu? In the menu there are fields named CUSTOM FONT FILE 1 and CUSTOM FONT FAMILY 1. What is a font file, what is a font family?”
This depends on the font you want to use. Fonts typically range in weight from 100 to 900, and in addition to that, there are italic versions and various combinations of these styles. That’s why there are so many font files. To optimize your site, you only need to upload the specific font weights and styles you plan to use in the theme
Hi, for single post use this custom css:
.tdb_single_content {
columns: 3;
}
You can set it on 2 columns if you want (the number can be changed), the css can be set directly in single post template using tagDiv Composer in a CSS RAW, or it can be set in the theme panel in custom css.
Using the mentioned plugin will be the best option with the best results and with the less work needed.
“Can you please guide me (step by step) how I can change from using the google fonts and downloading them to uploading them and setting them on my pages?” – for this you need to get the .woof fonts you want to use and upload it to the theme panel – https://imgur.com/FpUk5Wu after that will be display in ad fonts – https://i.imgur.com/DXALg55.png – https://forum.tagdiv.com/newsmag-using-custom-fonts/
Hi, it’s exact the changes I mentioned that has been made in the theme – https://i.imgur.com/cDqqlkm.png
Normally if you are at the last theme version and the code is clean you should not receive that error.
Hi,
Normally the post video format should be working with those type of links
https://www.facebook.com/{page-name}/videos/{video-id}/
https://www.facebook.com/{username}/videos/{video-id}/ – user’s video must be public
https://www.facebook.com/video.php?v={video-id}
and those should be on your account that is connected to the theme panel – https://i.imgur.com/e92CMnv.png
Thank you!
Hi,
Do not worry about the “!” (as long is not a red message is not a problem), that is just to note you about some global classes as it is “body”, or when it is used !important and others.
Thanks
Hi petar777,
Now there is a different solution that can be used. You can use google fonts and use the OMGF plugin and this will resolve the google fonts problem.
The old solution was to disable the google fonts – https://i.imgur.com/Im8CpNn.png and get a few woof fonts and load them in the theme panel – https://i.imgur.com/FpUk5Wu.png(even the default fonts are loaded from google fonts).
My suggestion is to try the font plugin this should resolve your problem with fonts and you can use the fonts you want.
Thank you!
Hi Mark, do you want this kind of flow on blocks or articles?
If is on articles it can be done using the columns css and the results will be – https://i.imgur.com/4dQAQxD.png
If is on block – you can use flex block 1 option for excerpt columns – https://i.imgur.com/MNTvk8N.png
I hope this will help you!
Hi,
No, I can say that I’m sure, but most likely the problem you’re facing appeared after the javascript was shared in the theme and made to load in the footer.
Do you have the possibility to create a staging where you can give me access (wp-admin and FTP) and a link to the pages with problems to do an investigation and see if I can change something so that the problem is solved.
If you can provide staging access please contact us via email at contact@tagdiv.com and provide there the access and also include a link to this topic.
Thank you!
Hi,
For this the best solution will be to have a stie for each language. My recommendation is to change only the extension. Create a domain for each language (domain.com, domain.net, domain.ro) and use buttons/menus to navigate between domains.
Using a translate plugin it is possible to mixt the content and have problems, but having separate domains (or subdomains) will cover all you need.
Thank you!
The problem is a little bit more complex because it’s caused when you are using a custom page which load from a separate directory under WordPress.
Please provide the full backtrace and I will see what I can do.