Viewing 5 replies - 1 through 5 (of 5 total)
  • Hello spakainas what is your permalink structure? What settings do you have set for the CataBlog options?

    You might want to try this tutorial. It might help you.

    Kind regards

    Thread Starter spakainas

    (@spakainas)

    Hey, thanks for your answer. Sadly this tutorial doesn’t help. And it actually doesn’t suit my problem since my permalinks all work, the problem is with items disappearing when I go into single page item from catalog.
    My permalink structure is Default. (example – ?p=123)

    I believe it has something to do with link structure.
    Maybe it has to do with how many is written in functions.php ? I noticed this is also a problem on standart WordPress layout too. The only difference is that there you see sub-menu on hover (not always when you go into it). So you can notice that when you go into product the sub-menu link becomes not “marked” (active).
    And the sub-menu navigation is registered in functions.php . Maybe this should be modified somehow?

    function sm_subnav()
    {
    	global $post, $wpdb;
    
    	if ( is_page() )
    	{
    		$child_of = null;
    
    		if ( $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->posts WHERE post_type='page' && post_parent = ".$post->ID) > 0 ){
    			$child_of = $post->ID;
    		}
    		else if ( $post->post_parent != 0 ){
    			$child_of = $post->post_parent;
    		}
    
    		if ( !is_null($child_of) )
    		{
    			echo '<div class="navigation" id="sub-nav-1">' . "\n";
    				echo '<ul class="katalogas">' . "\n";
    					wp_list_pages('title_li=&child_of='.$child_of);
    				echo '</ul>' . "\n";
    				echo '<div class="clearer">?</div>' . "\n";
    			echo '</div>' . "\n";
    		}
    	}
    }

    Hello sorry that my link could not help you. In regards to the default permalink, I would never use that as it is bad for SEO and it can cause other issues especially with plugins etc. The permalink I always suggest to my clients is:

    /%category%/%postname%/ or /%postname%/

    What theme are you using? Have you tried a default WordPress theme to see if you still have this issue?

    What settings have you enabled to the CataBlog plugin?

    Kind regards

    Thread Starter spakainas

    (@spakainas)

    I have tried the default theme. The same problem. Yes, I know this structure. I will change it later. Thanks for suggestions. ??

    Hello looking at your theme the second navigation,

    <div id=”sub-nav-1″ class=”navigation”>

    Is not added to the catablog template when you click on your item, which I know you are aware of that. Where is that navigation coming from? Is that from a plugin or from your theme or did you develop the navigation yourself?

    Have you tried to integrate catablog into your theme?

    Kind regards

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Sub-menu disappears when I enter single item page’ is closed to new replies.