Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #254245

    Hi,

    In single posts headline url links to frontpage, why is this? I use post name as permalink. Other pages work fine. I can send link privately (unpublished page).

    #254896

    Hey canter!

    Yes, please create us an admin account and post the login credentials as private reply – we’ll look into it.

    Cheers!
    Peter

    #255008
    This reply has been marked as private.
    #255940

    Hi!

    I fixed it – I added this code to the enfold/functions.php file:

    
    add_filter('avf_title_args', 'fix_blog_page_title', 10, 2);
    function fix_blog_page_title($args,$id) {
    //$args['title'] = get_the_title($id);
    $args['link'] = get_permalink($id);
    return $args;
    }
    
    

    If you want to make sure that the next update doesn’t overwrite this code please create a child theme: http://kriesi.at/documentation/enfold/using-a-child-theme/ an insert this code into the child theme functions.php file.

    Regards,
    Peter

    #255972

    Hi,

    I added child theme as instructed in the link, but now all pages seem to be disappeared. In dashboard everything is there, but when tryin to view page, it gives 404 error.

    #255975

    Hi again, also styles are not working as I expect, in Theme Options colors are correct after bringing settings from parent, but in the page it uses Enfolds default.

    #255978

    ..I deactivated all the plugins and pages are showing again, now it’s only the css issue :P

    #256049

    Hi!

    Glad the pages are back!

    Please try to change a little bit of settings on Enfold > Theme Options then “Save Changes”. This should refresh the enfold_child.css file. Let us know if it works.

    Regards,
    Ismael

    #256949

    Hi, this worked, thanks :)

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Headline title url’ is closed to new replies.