Created
August 4, 2021 12:06
-
-
Save reachkamrul/0f6fab1066ac2e3eab849eb683509cca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Fluent Forms RTL entries fix | |
add_action('admin_head', 'RTL_form_dashboard_fix'); | |
function RTL_form_dashboard_fix() { | |
echo '<style> | |
.ff_form_entries_app .el-table--hidden, .ff_form_application_container .el-table td.is-hidden>*,.ff_form_application_container .el-table th.is-hidden>* { | |
visibility: visible; | |
} | |
.ff_form_application_container .el-table__fixed, .el-table__fixed-right{ | |
display:none; | |
} | |
</style>'; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment