I’ve been using child themes for 14 years or so, so I’m not sure what you mean by “Child theme not required…”.
So, what is the update process when updating the theme, that doesn’t overwrite custom changes?
thanks for your help.
I’m using the Newspaper theme by TagDiv, and I’ve created a Post Object using ACF (Advanced Custom Fields).
https://prnt.sc/iQLPeXN9JafS
https://prnt.sc/JPwYgvT1U0D1
https://prnt.sc/QwFd4JantbzO
The main post acts as a Parent Post (Post).
The child posts are of a custom Post Type (download).
How can I display the Child Posts when viewing the Parent Post?
I have already tried selecting “Posts linked to current article: Child Posts,” but it does not seem to work or display anything.
Any guidance or help would be appreciated!
Hi,
I think that you have a plugin conflict there. Have you checked for a plugin conflict? Please deactivate ALL plugins except tagDiv ones; also, if you use a child theme or cache plugin, deactivate them, clear all cache, and try again.
Thank you!
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!
Hello,
Please make sure that you do not have a plugin conflict with untested plugins, please deactivate all non theme/tested plugins, also if you are using child theme, clear all cache and try again.
Also, please resave the permalinks.
Thank you!
Hello,
Please let me know what php, WordPress and theme versions you have.
Please tell me where it only appears on one page or the entire site. Did you add any code or elements from another plugin?
Please follow the steps from this topic https://forum.tagdiv.com/topic/error-at-zones-6models-1dom-the-model-does-not-match-the-content-currene/ if you have a child theme; please use the main theme.
You can try to revert an old revision on a page/template -> https://www.wpbeginner.com/beginners-guide/complete-guide-to-wordpress-post-revisions/
Thank you!
Hello,
I would like to know what PHP, theme and WordPress version you use. Also, do you have a child theme? I recommend to use php version 8.0 OR 8.1, and the latest version of the theme 12.6.8 and WordPress 6.6.2
Thank you!
Hello,
Please let me know what php, WordPress and theme versions you have.
Please tell me where it only appears on one page or the entire site. Did you add any code or elements from another plugin?
Please follow the steps from this topic https://forum.tagdiv.com/topic/error-at-zones-6models-1dom-the-model-does-not-match-the-content-currene/ if you have a child theme; please use the main theme.
You can try to revert an old revision on a page/template -> https://www.wpbeginner.com/beginners-guide/complete-guide-to-wordpress-post-revisions/
Thank you!
Hello,
Please let me know what php, WordPress and theme versions you have.
Please tell me where it only appears on one page or the entire site. Did you add any code or elements from another plugin?
Please follow the steps from this topic https://forum.tagdiv.com/topic/error-at-zones-6models-1dom-the-model-does-not-match-the-content-currene/ if you have a child theme; please use the main theme.
You can try to revert an old revision on a page/template -> https://www.wpbeginner.com/beginners-guide/complete-guide-to-wordpress-post-revisions/
Thank you!
Hello,
Please let me know what php, WordPress and theme versions you have.
Please tell me where it only appears on one page or the entire site. Did you add any code or elements from another plugin?
Please follow the steps from this topic https://forum.tagdiv.com/topic/error-at-zones-6models-1dom-the-model-does-not-match-the-content-currene/ if you have a child theme; please use the main theme.
You can try to revert an old revision on a page/template -> https://www.wpbeginner.com/beginners-guide/complete-guide-to-wordpress-post-revisions/
Thank you!
Hi,
Please add this custom css in the theme panel:
body .td-grid-style-1 .td-module-thumb a:last-child:before,
{
background: linear-gradient(to bottom, #000000 0%, #000000 100%);
}
and let me know if it fixes the problem for the first block, if it does, then we’ll adapt the code for the rest of the grids. I am waiting for your answer.
Oh, I just want to be sure the theme did not have it before. I will implement it using child theme. Thanks.
Hello,
Please let me know what php, WordPress and theme versions you have.
Please tell me where it only appears on one page or the entire site. Did you add any code or elements from another plugin?
Please follow the steps from this topic https://forum.tagdiv.com/topic/error-at-zones-6models-1dom-the-model-does-not-match-the-content-currene/ if you have a child theme; please use the main theme.
You can try to revert an old revision on a page/template -> https://www.wpbeginner.com/beginners-guide/complete-guide-to-wordpress-post-revisions/
Thank you!
Ciao Anamaria,
The php version is 8.3.10
The problem appears when I click on edit page with tagdiv composer
also when I try to edit from Couldtemplate and then on Single Templates.
I don’t have a child theme
Hi,
Please let me know the theme, WordPress and PHP versions.
I think that you have a plugin conflict there. Have you checked for a plugin conflict? Please deactivate ALL plugins except tagDiv ones; also, if you use a child theme or cache plugin, deactivate them, clear all cache, and try again.
Thank you!
Hello,
Please let me know what php, WordPress and theme versions you have.
Please tell me where it only appears on one page or the entire site. Did you add any code or elements from another plugin?
Please follow the steps from this topic https://forum.tagdiv.com/topic/error-at-zones-6models-1dom-the-model-does-not-match-the-content-currene/ if you have a child theme; please use the main theme.
You can try to revert an old revision on a page/template -> https://www.wpbeginner.com/beginners-guide/complete-guide-to-wordpress-post-revisions/
Thank you!
Hi,
From what I can see, this error might be caused by incorrect configuration of the theme and plugins. What I can suggest is to have a clean install of WordPress, do a clean install of the theme, make sure everything is up to date, and not have other extra plugins active. Use the main theme, not a child theme, and ensure the PHP version is 8.0 or 8.1.
Thank you!
Hi,
Have you checked for a plugin conflict? Please deactivate ALL plugins except tagDiv ones; also, if you use a child theme or cache plugin, deactivate them, clear all cache, and try again.
Thank you!
Hi,
I think that you have a plugin conflict there. Have you checked for a plugin conflict? Please deactivate ALL plugins except tagDiv ones; also, if you use a child theme or cache plugin, deactivate them, clear all cache, and try again.
Thank you!
Hello,
Please let me know what php, WordPress and theme versions you have.
Please tell me where it only appears on one page or the entire site. Did you add any code or elements from another plugin?
Please follow the steps from this topic https://forum.tagdiv.com/topic/error-at-zones-6models-1dom-the-model-does-not-match-the-content-currene/ if you have a child theme; please use the main theme.
You can try to revert an old revision on a page/template -> https://www.wpbeginner.com/beginners-guide/complete-guide-to-wordpress-post-revisions/
Thank you!
Hi,
Please let me know the theme version.
I think that you have a plugin conflict there. Have you checked for a plugin conflict? Please deactivate ALL plugins except tagDiv ones; also, if you use a child theme or cache plugin, deactivate them, clear all cache, and try again.
Thank you!
Hello,
Please let me know what php, WordPress and theme versions you have.
Please tell me where it only appears on one page or the entire site. Did you add any code or elements from another plugin?
Please follow the steps from this topic https://forum.tagdiv.com/topic/error-at-zones-6models-1dom-the-model-does-not-match-the-content-currene/ if you have a child theme; please use the main theme.
You can try to revert an old revision on a page/template -> https://www.wpbeginner.com/beginners-guide/complete-guide-to-wordpress-post-revisions/
Thank you!
Hello,
I think that you have a plugin conflict there. Have you checked for a plugin conflict? Please deactivate ALL plugins except tagDiv ones; also, if you use a child theme or cache plugin, deactivate them, clear all cache, and try again.
Thank you!
Hello,
Please let me know what php, WordPress and theme versions you have.
Please tell me where it only appears on one page or the entire site. Did you add any code or elements from another plugin?
Please follow the steps from this topic https://forum.tagdiv.com/topic/error-at-zones-6models-1dom-the-model-does-not-match-the-content-currene/ if you have a child theme; please use the main theme.
You can try to revert an old revision on a page/template -> https://www.wpbeginner.com/beginners-guide/complete-guide-to-wordpress-post-revisions/
Thank you!
Hello,
You need to create a child theme and add the code in the functions.php -> https://forum.tagdiv.com/the-child-theme-support-tutorial/ but I’m unsure if it will work.
Thank you!