Hi Wyro,
Try to do this....
In the folder "functions" open and edit the file "bfa_post_parts.php".
It can also be done from the edit item of theme options menu in Wordpress.
Lines 44 and 45 shows the following:
Code:
// Since 3.6.1: Display a link to the full post if there is no post title and the post is too short
// for a read more link.
if ( get_the_title() == '' ) { ?>
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link">Permalink</a><?php
} else if ( (!is_single() AND !is_page()) OR $bfa_ata_display_body_title == '' ) {
Modify the end of line 44 ("?>") joining to the begining of line 45 and "comment" the entire line 45 EXACTLY as below !!! :
Code:
// Since 3.6.1: Display a link to the full post if there is no post title and the post is too short
// for a read more link.
if ( get_the_title() == '' ) {
/* ?><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link">Permalink</a><?php */
} else if ( (!is_single() AND !is_page()) OR $bfa_ata_display_body_title == '' ) {
Is VERY IMPORTANT to open and close the comment with "/*" and "*/" as shown !!!
Save the changes.
That disables completely the function of add the word "Permalink" for posts without title.
For undo the change, simply edit again and delete the "comment" marks "/*" and "*/".
Like as you, I have in my homepage a static page with no title.
Hope this is useful to you as it is for me!
Best Regards,
Gabriel