• I like both Aletheia and Follet very much. However, especially in Aletheia (but also in Follet), I don’t personally like the redundant listing of the page title. In Aletheia, the box for listing this goes all the way across the header image and seems excessive.

    I haven’t yet located a way of turning off this feature.

    Advice, please?

    Thanks.

Viewing 1 replies (of 1 total)
  • Theme Author Andrés Villarreal

    (@andrezrv)

    Hi there!

    Sorry for the delayed answer, somehow I’m not receiving emails about new threads here.

    You can fully remove the breadcrumbs by including this in an mu-plugin (http://codex.wordpress.org/Must_Use_Plugins):

    add_action( 'follet_options_register', 'my_custom_register_options' );
    function my_custom_register_options() {
    	if ( ! follet_option_exists( 'breadcrumbs_show' ) ) {
    		follet_register_option( 'breadcrumbs_show', false, get_theme_mod( 'breadcrumbs_show', false ) );
    	}
    }

    In fact, you can look at the code of the aletheia_register_options() and follet_register_options() to see what features are active by default, and override all the items you want by declaring them into the function above.

    Hope this helps 🙂 I don’t really love how the breadcrumbs look in Alétheia, and having them removed in a future update is a possibility I’m considering.

    Thanks for trying Alétheia and Follet 🙂

Viewing 1 replies (of 1 total)
  • The topic ‘Redundant page listing’ is closed to new replies.