Skip to content

Instantly share code, notes, and snippets.

@reachkamrul
Created August 4, 2021 12:06
Show Gist options
  • Save reachkamrul/0f6fab1066ac2e3eab849eb683509cca to your computer and use it in GitHub Desktop.
Save reachkamrul/0f6fab1066ac2e3eab849eb683509cca to your computer and use it in GitHub Desktop.
// 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