• Resolved T_ed

    (@t_ed)


    Hello again,
    I need to do a tille customisation. When post listing style is set to “full post”, below of the post is something like a footer whith Edit, Delete, Preview links. Also there are word and comment counts, post category and status. So I need to remove from that footer anything exept Edit and Delete links. Trying do that whith CSS, but seems like it`s not possible for all listed elements, bacause some of them doesnt have any classes, just php output. So which file do I need to edit to achieve my goals?
    P.S Almost doesnt know php, so direct instructions or code will be super great.
    Thanks

    • This topic was modified 9 years, 6 months ago by T_ed.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author finnj

    (@finnj)

    Hi,

    you are right, some elements could not be controlled by CSS, this is fixed in version 4.2.2

    you can download 4.2.2 on the developers tab, or here: https://downloads.wp.xz.cn/plugin/frontier-post.4.2.2.zip

    I have tested with Weaver Extreme & Twenty Seventeen themes, and it works

    need to do some additional testing before released as Stable version (couple of weeks)

    Following CSS tags added:

    
    .frontier-post-new-list-actions {
    	display: inline-block;
    }
    
    .frontier-post-new-list-fields {
    	display: inline-block;
    }
    
    .frontier-post-new-list-fields-status {
    	display: inline-block;
    }
    
    .frontier-post-new-list-fields-author {
    	display: inline-block;
    }
    
    .frontier-post-new-list-fields-words {
    	display: inline-block;
    }
    
    .frontier-post-new-list-fields-published {
    	display: inline-block;
    }
    
    .frontier-post-new-list-fields-comments {
    	display: inline-block;
    }
    
    .frontier-post-new-list-fields-tax {
    	display: inline-block;
    }
    
    Thread Starter T_ed

    (@t_ed)

    Amazing, thank you!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Litle customization needed’ is closed to new replies.