Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #203637

    I have set the blog page to not show Header/Footer and be a blank page. I would like to have this page look like the other pages.

    eg: http://www.cindigofilm.de/?page_id=2913

    shows an event page, that includes all Bog entries with the ‘event’ category. Now if I click on the Title of the blog entry I get redirected to a page 3323 that does not exists in my pages overview. That page shows a unwanted menu bar and the header/footer. If I click on the Blog link in the header I get to page 731. That page is listed in my page overview and I have set it to be a blank page and not show header/footer. But it does anyhow. The things I have set in this page (like my custom menu bar slider) don’t show.

    What I would like is to have a blank page and no header/footer to be able to show my page the way the other pages are designed.

    Any idea how to fix this?

    kind regards,
    Philip

    #203640
    This reply has been marked as private.
    #203647

    Hi!

    The single posts do not support the “Blank” page template because they do not support the template/layout builder. You can only use the Header Settings and “Footer Settings” to hide the title bar and footer section. A layout like here: http://www.cindigofilm.de/?page_id=2387 is not possible with single posts. Actually the “Blank page” layout was never intended to be used that way but it’s just a tool to create a “coming soon” page like demonstrated here: http://kriesi.at/themes/enfold/pages/blank/ or here: http://kriesi.at/themes/enfold/pages/blank/maintenance-mode/ or here: http://kriesi.at/themes/enfold/pages/blank/coming-soon/

    Best regards,
    Peter

    #203655

    bummer. So then I have to avoid people getting there. At least for now. How can I hide the category and author link in each post? If the wouldn’t who up the users could go there.
    eg: http://www.cindigofilm.de/?page_id=3136

    Any Idea how to accomplish that?
    lg Philip

    #203671

    Hi!

    Insert following code into the quick css field

    
    .blog-categories.minor-meta, .blog-author.minor-meta, .text-sep.text-sep-cat, .text-sep.text-sep-date{
    display: none !important;
    }
    

    Cheers!
    Peter

    #203680

    great. Then the last thing is the Link of the Header of a Blog Entry itself. Is there a way to have the Header still show, but without an aktive Link?
    Cheers, Philip

    PS: do you by any chance know of a Facebook Plugin that I could use to like/share e.g. one Blog-Post. Haven’t found anything. The ones I tried don’t share the content I would like to have shared (e.g. the page logo instead of the pic of the post).

    #203687

    Hey!

    If you want to remove the link add following code to the bottom of functions.php

    
    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
    if (is_single()) $args['link'] = false;
    return $args;
    }
    

    2) You can try this plugin: http://wordpress.org/plugins/simple-share-buttons-adder/
    If the plugin doesn’t use the right content for the facebook share data I recommend to install http://wordpress.org/plugins/wordpress-seo/ and then you can use the “Social” tab/options: http://www.clipular.com/c/5678826713513984.png?k=2EpKGdnQl0mtbk_vvn_O5O2cfYY to specify some content for the social sharing services (description, image for facebook and google+, etc.)

    Best regards,
    Peter

    #203710

    hmmm. not quite doing the trick.

    eg http://www.cindigofilm.de/?page_id=2913

    have pasted the function at the end of the function.php but it doesn’t seem to filter the link. If you klick on the header (Operndorf Schlingensief Cooperation) of the post there is still a link behind it.

    lg Philip

    #203807

    Hey!

    Try adding this code to the Quick CSS:

    .post-entry .post-title.entry-title a {
        pointer-events: none;
    }

    Cheers! 
    Josue

    #204476

    great. That did the trick. Thank you

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Single Blog View ignores the Page settings’ is closed to new replies.