Search Results for 'child theme'

    No search results were found in Documentation!

Results from the Forum
CapCityNews
Participant
#0

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.

quangninhvn
Participant
#0

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!

Anamaria
tagDiv Staff

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!

Calin
tagDiv Staff

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!

Anamaria
tagDiv Staff

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!

Anamaria
tagDiv Staff

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!

Anamaria
tagDiv Staff

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!

Anamaria
tagDiv Staff

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!

Anamaria
tagDiv Staff

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!

Anamaria
tagDiv Staff

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!

Calin
tagDiv Staff

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.

hadharm
tagDiv Member

Oh, I just want to be sure the theme did not have it before. I will implement it using child theme. Thanks.

Anamaria
tagDiv Staff

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!

gaevega
tagDiv Member

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

Anamaria
tagDiv Staff

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!

Anamaria
tagDiv Staff

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!

Anamaria
tagDiv Staff

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!

Anamaria
tagDiv Staff

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!

Anamaria
tagDiv Staff

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!

Anamaria
tagDiv Staff

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!

Anamaria
tagDiv Staff

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!

Anamaria
tagDiv Staff

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!

Anamaria
tagDiv Staff

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!

Anamaria
tagDiv Staff

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!

Anamaria
tagDiv Staff

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!

Viewing 25 results - 276 through 300 (of 12,866 total)