No search results were found in Documentation!
Hello !
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.
Thank you !
Hi,
Please make sure that you are using the last version of Newspaper theme, v10.2
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.
Let me know the results!
Thanks.
Hi,
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.
If there is still a problem, you can send us an email at contact@tagdiv.com and provide admin login, as well as cPanel or FTP if possible. We will take a look. Include a link to this topic in the email.
Thank you!
Hi,
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.
Let me know the results!
Thanks.
Hello !
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.
Thank you !
Hi,
The posts that you have now look normal, just 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.
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.
Let me know the results!
Thanks.
Hi,
I have a parent category ‘Movies’ and different ‘movie’ as a child categories in it.
E.g:
Movies (Parent Category)
– Movie A (Child Category)
– Movie B (Child Category)
– Movie C (Child Category)
I want to create a page where in I want to show/list all child categories (A,B,C) with thumbnail. How can I do it in Newspaper theme?
If I use a ‘Custom Taxonomy’ for example ‘Singers’, how can i list/show all the singers on a page?
Please provide some solution/help.
Thanks,
Ashish
Hello !
Yes, you can use this in Child Theme. Please make sure you follow our tutorial closely so you can set up your child theme properly: https://forum.tagdiv.com/the-child-theme-support-tutorial/
Thank you !
Hello !
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.
Thank you !
Hello !
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.
Thank you !
UPDATE: I’ve managed to solve the problem, by registering my CPT in the functions.php. Now the custom posts appear in the live results.
However, these custom post types are using attached thumbnails from external directories. They don’t show up in the result (which is not a surprise).
I see that the live results are using the ‘td_module_mx2’ template. Is it possible to overwrite it with a custom template, which I can store in the child theme directory? In this case I could use my own get image functions…
Hi,
I was able to add custom post types to the search results by adding a code to the themes function.php
function search_filter($query) {
if ( !is_admin() && $query->is_main_query() ) {
if ($query->is_search) {
$query->set('post_type', array( 'post', 'page', 'at_biz_dir', 'mdb_item', 'mdb_person', 'mdb_series', 'mdb_company' ) );
}
}
}
add_action('pre_get_posts','search_filter');
This works fine and the desired results are displayed on the search results page.
Unfortunately they don’t appear in the live search results, when typing the term into the search field.
How can I add the custom post types to the live search results?
UPDATE: I see that the live results are using the ‘td_module_mx2’ template. Is it possible to overwrite it with a custom template, which I can store in the child theme directory?
Hi Calin, I already have WP Super Cache installed (and the problem has persisted with it installed, updated and activated). There are no child themes or other cache plugins.
Could the issue be with WP Super Cache?
Hi,
Please make sure that you do not have a plugin conflict, please deactivate all non theme plugins, also if you are using child theme please deactivate it, clear all cache and try again.
When tagDiv Composer is not working -> https://forum.tagdiv.com/tagdiv-composer-not-working/
Let me know the results!
Thanks.
Hi,
Please make sure that you do not have a plugin conflict, please deactivate all non theme plugins, also if you are using child theme please deactivate it, clear all cache and try again.
Let me know the results!
Thanks.
Hello !
That should not happen at all.
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.
Thank you !
Hello !
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.
Thank you !
Hi,
Please add this code in the .htaccess , file at the end of the file:
<IfModule mod_substitute.c> SubstituteMaxLineLength 10M </IfModule>
When tagDiv Composer is not working -> https://forum.tagdiv.com/tagdiv-composer-not-working/
Please make sure that you do not have a plugin conflict, please deactivate all non theme plugins, also if you are using child theme please deactivate it, clear all cache and try again.
If the problem persist, please make a full backup and send us an email at contact@tagdiv.com and provide admin login, as well as cPanel or FTP if possible. We will take a look. Include a link to this topic in the email.
Thank you for your understanding!
Hello !
We have tested your website but the load more button won’t even open. Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.
Thank you !
Hello !
This option works on our side. Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.
Thank you !
changing over my medium-sized health blog (2000 pages) to newspaper was almost painless
… unless …. the missing toggle and accordion function.
so here my solution
A) use plugin shortcodes-ultimate from Vlad A…
to make it much easier to call the toggles (and to be able to reuse my old websites source without any changes) I get the shortcode-call rewritten using a simple 3-liner php-function
I have all kind of tiny little php-functions that I collected over the years, to use all of them in my several pages I created my “own plugin” that carries those functions. You might just add following code to the newspapers child-theme functions.php
// for newspaper adding some toggle functions
function toggle_function( $atts , $content=null) {
extract( shortcode_atts( array(
'title' => '',
'class'=>'',
'style'=>'',
), $atts ) );
/* für shortcodes ultimate */
$ss = '[su_accordion][su_spoiler style="fancy" open="no" title="' . $title . '"]' . do_shortcode($content) . '[/su_spoiler][/su_accordion]';
return do_shortcode($ss);
}
add_shortcode( 'toggle', 'toggle_function' );
add_shortcode( 'toggle1', 'toggle_function' );
add_shortcode( 'toggle2', 'toggle_function' );
add_shortcode( 'toggle3', 'toggle_function' );
add_shortcode( 'toggle_framed', 'toggle_function' );
add_shortcode( 'toggleZ', 'toggle_function' );
by creating my own shortcode [toggle] [toggle1] [toggle2] [toggle3] …. I am able to have nested toggles
you just call them via
[toggle title="this is the toggles title"]
.... here is the text inside the toggle ....
[/toggle]
B) use plugin accordion shortcodes from Phil Buchanan
I actually use B in newspaper and had to use A for some different theme which messed up Phil’s plugin but was OK with Vlads plugin. I think that Vlads Shortcodes ultimate is easier and better integrated
use following functions.php addition
function toggle_function( $atts , $content=null) {
extract( shortcode_atts( array(
'title' => '',
'class'=>'',
'style'=>'',
), $atts ) );
/* für accordion shortcode */
$ss = '[accordion title="" open1st="0" openAll="0" style="toggle"][accordion_item title="' . $title . '"]' . do_shortcode($content) . '[/accordion_item][/accordion]';
return do_shortcode($ss);
}
add_shortcode( 'toggle', 'toggle_function' );
add_shortcode( 'toggle1', 'toggle_function' );
add_shortcode( 'toggle2', 'toggle_function' );
add_shortcode( 'toggle3', 'toggle_function' );
add_shortcode( 'toggle_framed', 'toggle_function' );
add_shortcode( 'toggleZ', 'toggle_function' );
here are some hints for some CSS that you add to your childs styles.css
/* Accordion Styles */
.accordion { margin: 18px 0px;border: solid lavender 6px;}
.accordion-title {margin:0;padding: 14px 14px 14px 20px;color:royalblue;cursor:pointer;font-weight:900;border-radius: 5px;overflow: hidden; border:1px solid gray;background:#f9f9f9;}
.accordion-title:hover {color:red;cursor: -webkit-grab; cursor: grab;font-weight:900;}
.accordion-title:before{content:”+ | “;width:49px;height:100%;border-width:0 0px 0 0;border-style:solid;text-align:left;}
.accordion-title:first-child {border: none;}
.accordion-title.open {cursor: default;}
.accordion-title.open:before {content:”- | “;width:49px;height:100%;border-width:0 0px 0 0;border-style:solid;text-align:left;}
.accordion-content {padding:20px 6px 15px 6px;background-color:whitesnow;}
/* Accordion Styles ende */
Hi,
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.
Let me know the results!
Thank you!
Hi,
The posts that you have now look normal, just 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.
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.
If there is still a problem, please provide some more details and screenshots or a link where I can inspect the problem.
Thank you!
Hello !
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.
Thank you !
Hello !
Please make sure that you do not have a plugin conflict, please deactivate ALL plugins except tagDiv ones, also if you are using child theme or cache plugin, deactivate them, clear all cache and try again.
Thank you !