Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #471200

    I posted on this topic a while ago but the thread went in several directions and didn’t address one of my specific issues but here we go…

    Why is there no option in Enfold to output pages that have a normal h1 headline not in the header where the breadcrumb is?

    I’m talking about a normal page with a normal bold heading headline. Like all the other themes out there.

    Yes, those in support mentioned that thousands of other people are fine with Enfold behaving this way but it’s because there is no option otherwise.

    Most headlines, as there are, just blend into the design. The headline is meant to communicate importance.

    Yes, I could go into my content and make a headline but that is duplicating an HTML tag that already exists and defeats the purpose of templating content.

    I will note that blog posts do have headlines that are bold and are actual headlines.

    So why not just give us a setting that allows us to choose our template style with a normal heading?

    #471335

    Hi mattmikulla!

    I’m not sure why Kriesi has designed like he has but like you say, it seems to be ok for most people. Personally I like when things are not too generic, if everyone else is doing something doesn’t automatically mean that we have to do it too :)

    If you want to add a request for possible future functionality you can do so here: https://kriesi.at/support/enfold-feature-requests/

    Cheers!
    Rikard

    #471336

    Hi mattmikulla!

    Thank you for using Enfold.

    If I remember correctly, we suggested different ways in order to add your title in the main container instead of the breadcrumb container. Did you try any of them?

    This particular code will remove the title html, if that’s what you’re worried about, from the breadcrumb container: https://kriesi.at/support/topic/enfold-layout-breadcrumb-only-above-and-normal-page-headingheadline/#post-428658

    If you want to add the title when using the advance layout builder, you can add this in the functions.php file:

    add_action('avf_template_builder_content', 'ava_after_main_container_mod', 10, 1);
    function ava_after_main_container_mod($content = '') {
    	$content = get_the_title() . $content;
    	return $content;
    }

    If you’re not using the advance layout builder for pages, you can modify the page.php file. You can do these modifications or you can request for that particular feature here: https://kriesi.at/support/enfold-feature-requests/

    Best regards,
    Ismael

    #481732

    Here’s the deal. You keep saying that this is the way Enfold is designed and apparently because so many people use it they like how Enfold handles pages, categories, tags and terms page headlines.

    I doubt that.

    Personally I like when things are not too generic, if everyone else is doing something doesn’t automatically mean that we have to do it too :)

    So don’t use a standard that has proven to work (bold headlines)? Go with a design choice because it’s different?

    A headline is one of the most important page elements from a visual and communication standpoint.

    Why is it right that blogs have normal headlines but pages and taxonomies do not?

    Unless I missed something I didn’t see a solution from the previous thread that would add a normal headline to pages and taxonomies without having to modify several different templates in the previous thread.

    If I did miss an easy fix that can carry over to multiple page and taxonomy types I would appreciate if you can point me in the right direction.

    #483192

    Hey!

    not sure which changes exactly you want to achieve, but I think Ismael already provided you solutions.
    However, can you provide us a link showing what you mean? and show us which changes you wish? I am sure that with some CSS code you can modify your title the way you want.

    Cheers!
    Andy

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