Sub Category Page does not show + Pagination Error

Posted in: Newspaper
Post count: 26

Hello, we have 2 Problems with theme.

1. The Sub Category Page does not show.

Main Category: exampe.de/word1/ = Available = http://bit.ly/2tGwur6
Sub Category: exampe.de/word1/word2 = 404 = https://www.netzfieber.de/smarthome/osram-lightify/ or the standard wordpress function, who redirect to a post with is related to the category like = http://bit.ly/2FBxgHB

2. Pagination does not work. See http://bit.ly/2tGwur6

https://www2.pic-upload.de/img/34986815/ca.jpg

  • This topic was modified 8 years by Netz.
Post count: 26

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?

  • This reply was modified 8 years by Netz.
  • This reply was modified 8 years by Netz.
Post count: 26

Ok, now we installed a Plugin for that and all works perfectly.

Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic.