Two Weeks!
Calin please FIX IT! 2 Weeks really?
/wp-content/plugins/td-composer/
it a bug in the theme. many other have the same bug.
It’s a familiar bug and many others have it too. According to the developer, he will soon be fixed
This is a known bug and will hopefully be fixed with the next update. Many others have this bug.
do you use a child theme? then there is a bug there, which is already known.
pls fix it!
I dont know if helps, but the new templates are in the td-composer plugin folder. legacy/
-
This reply was modified 7 years by
Netz.
PLEASE FIX IT!!!!!!!!
It does not help. if the child theme is active, then the layout ist set to default. Single_templates are defaults.. and other too. Pls fix it!
-
This reply was modified 7 years by
Netz.
by us the same. What happenend? We want to change the single_template (Design) with active child, the single_template cannot be change. If we change to parent theme, then all works correctly.
-
This reply was modified 7 years by
Netz.
Look at the Functions.php, if you use it on Child-Ordner. The last Number has changes in the Header. Replace the Child Functions.php
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’, 1001);
I hope thats helpful
-
This reply was modified 7 years by
Netz.
If u use a Child theme, then look at the the functions.php
<?php
/* ----------------------------------------------------------------------------
Newspaper V9.0+ Child theme - Please do not use this child theme with older versions of Newspaper Theme
What can be overwritten via the child theme:
- everything from /parts folder
- all the loops (loop.php loop-single-1.php) etc
- please read the child theme documentation: http://forum.tagdiv.com/the-child-theme-support-tutorial/
- the rest of the theme has to be modified via the theme api:
http://forum.tagdiv.com/the-theme-api/
*/
/* ----------------------------------------------------------------------------
add the parent style + style.css from this folder
*/
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles', 11);
function theme_enqueue_styles() {
wp_enqueue_style('td-theme', get_template_directory_uri() . '/style.css', '', TD_THEME_VERSION, 'all' );
wp_enqueue_style('td-theme-child', get_stylesheet_directory_uri() . '/style.css', array('td-theme'), TD_THEME_VERSION . 'c', 'all' );
}
Look at the number at line 22: and change 1001 to to 11
only if u use the new version of Theme
-
This reply was modified 7 years by
Netz.
i will try 🙂
For example, will the Accordion be implemented in the future?
What does not it appear in my comment form? What does “cleared wordpress” mean?
Do I have to stop something? I have now only set the privacy page.
-
This reply was modified 8 years by
Netz.
I can`t see any option at my comments page. Do you? 
Ok, now we installed a Plugin for that and all works perfectly.
Ok, problem was.
function remove_category_base( $string, $type )
{
if ( $type != ‘single’ && $type == ‘category’ && ( strpos( $string, ‘category’ ) !== false ) )
{
$url_without_category = str_replace( “/category/”, “/”, $string );
return trailingslashit( $url_without_category );
}
return $string;
}
add_filter( ‘user_trailingslashit’, ‘remove_category_base’, 100, 2);
now it works.
it is possible to remove the /category/ from permlink?

