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).
Hey canter!
Yes, please create us an admin account and post the login credentials as private reply – we’ll look into it.
Cheers!
Peter
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
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.
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.
..I deactivated all the plugins and pages are showing again, now it’s only the css issue :P
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
Hi, this worked, thanks :)