• Resolved jmindl

    (@jmindl)


    Hello,

    is there any way how to see only selected columns in “Calculated Fields Form – Message List” or do you have any plan to have this functionality in the future?

    Thanks

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author codepeople

    (@codepeople)

    Hello @jmindl,

    What columns do you need in the messages list exactly?

    Best regards.

    Thread Starter jmindl

    (@jmindl)

    I need to remove from the list column “Message” because this is for me quite long and makes the list a bit unreadable

    Plugin Author codepeople

    (@codepeople)

    Hello @jmindl,

    In this case you simply should hide this column with CSS, this table has assigned the class name: “cff-events-list” and the column is the fifth one, so, hide it would be as simple as enter the following style definition into a CSS file used by your WordPress:

    
    .cff-events-list tr th:nth-child(5),
    .cff-events-list tr td:nth-child(5){display:none;}
    

    Best regards.

    Thread Starter jmindl

    (@jmindl)

    Hello @codepeople

    Thanks, for your prompt response, unfortunately this doesn’t work. I still see the column.

    J,

    Plugin Author codepeople

    (@codepeople)

    Hello @jmindl,

    If you see the column, then the style was defined into a file that is not being loaded with messages section.

    Best regards.

    Thread Starter jmindl

    (@jmindl)

    Hello @codepeople

    I am sorry, but I do not understand fully what you mean by this statement. Can I remove this from the view or not?

    Thanks

    Plugin Author codepeople

    (@codepeople)

    Hello @jmindl,

    Yes you can, but you should include the style definition I sent you in a previous ticket into a CSS file loaded in the messages section, for example, into the content of file: “https://localhost/wp452/wp-content/plugins/calculated-fields-form/css/style.css”

    
    .cff-events-list tr th:nth-child(5),
    .cff-events-list tr td:nth-child(5){display:none;}
    

    Remember to clear the browser’s cache after edit the online files.

    Best regards.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Calculated Fields Form – Message List – selection of columns’ is closed to new replies.