Forum Replies Created

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter blatantlyflies

    (@superaktieboy)

    Cool! I should get updates once they’re pushed to github so I’ll keep you up to date. If I find any more bugs, I’ll submit a new issue on Github.

    Thread Starter blatantlyflies

    (@superaktieboy)

    Okay so, here’s some bugs for you 😛

    • Max Title Length requires a setting to be set, even if Title Length isn’t checked.
    • The importing/migration of settings somehow reset the settings.
    • This was also in the older version, but some custom taxonomies and custom post types don’t have the public have a front end (I’m pretty sure there’s a setting that’s set when registering) and these still have an option, probably better to hide these since they’re irrelevant??

    Outside the above, all seems to be working. 🙂

    Thread Starter blatantlyflies

    (@superaktieboy)

    Thanks 🙂 I’ll try it out later and keep you posted.

    Thread Starter blatantlyflies

    (@superaktieboy)

    Thanks! Let me know 🙂

    Thread Starter blatantlyflies

    (@superaktieboy)

    Right so the export is here: http://pastebin.com/gZ6yCpFa

    And the Menu Management Enhancer is a custom taxonomy term, namely the taxonomy “bug-library-products” and is part of the bugs library plugin (http://ww.wp.xz.cn/extend/plugins/bug-library/)

    Thread Starter blatantlyflies

    (@superaktieboy)

    I’m pretty sure it was “View Page Source”, but just to double check, here’s the various different ways:

    View page source (chrome)

    <!-- Breadcrumb NavXT 4.1.0 -->
    <li class="home"><a href="http://hosh.info" title="Go to Home.">Home</a></li>
    <li><a title="Go to Bug Tracker." href="http://hosh.info/bugs/">Bug Tracker</a></li>
    <li><a title="Go to Menu Management Enhancer." href=""><a title="Go to the Menu Management Enhancer Products archives." href="http://hosh.info/bugs/products/mmenhancer/">Menu Management Enhancer</a></a></li>
    <li class="current_item">Test some issue</li>

    Chrome’s dev tools:

    <ul class="container">
            		<!-- Breadcrumb NavXT 4.1.0 -->
    <li class="home"><a href="http://hosh.info" title="Go to Home.">Home</a></li>
    <li><a title="Go to Bug Tracker." href="http://hosh.info/bugs/">Bug Tracker</a></li>
    <li><a title="Go to Menu Management Enhancer." href=""></a><a title="Go to the Menu Management Enhancer Products archives." href="http://hosh.info/bugs/products/mmenhancer/">Menu Management Enhancer</a></li>
    <li class="current_item">Test some issue</li>
            </ul>

    Just double checked the configuration, none of the templates are nested.

    Here’s the definition of the taxonomy (maybe helps since it’s only happening with this one?) (modified version of bug library):

    register_taxonomy(
    		'bug-library-products',
    		'bug-library-bugs',
    		array(
    			'hierarchical' => false,
    			'label' => 'Products',
    			'query_var' => true,
    			'rewrite' => array( 'slug' => 'bugs/products', 'with_front' => false ),
    			'add_new_item' => 'Add New Product',
    			'new_item_name' => "New Product Name",
    			'show_ui' => false,
    			'show_tagcloud' => false
    		)
    	);

    Note: Only the with_front has been changed, and the slug is set to bugs/products.

    Now I go over that again, I have a feeling the slug is the one causing the problem.

    EDIT: nevermind, tried it with the standard slug (just products), and still nothing.

    Thread Starter blatantlyflies

    (@superaktieboy)

    My bad, still doing the same thing, except it would show properly in the user’s eyes, would probably hurt in SEO. See below.

    <li class="home"><a href="http://hosh.info" title="Go to Home.">Home</a></li>
    <li><a title="Go to Bug Tracker." href="http://hosh.info/bugs/">Bug Tracker</a></li>
    <li><a title="Go to Menu Management Enhancer." href=""><a title="Go to the Menu Management Enhancer Products archives." href="http://hosh.info/bugs/products/mmenhancer/">Menu Management Enhancer</a></a></li>
    <li class="current_item">Test some issue</li>

    Again, it’s in the same place for Menu Management Enhancer (custom taxonomy tag like).

    Thread Starter blatantlyflies

    (@superaktieboy)

    Aah I see! Thanks for that, will use it.

Viewing 8 replies - 1 through 8 (of 8 total)