Skip to content

Commit

Permalink
Add Concatenation impress-org#2263
Browse files Browse the repository at this point in the history
  • Loading branch information
raftaar1191 committed Nov 7, 2017
1 parent fee19b1 commit 5d517bd
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion includes/admin/class-blank-slate.php
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,18 @@ public function render( $which = 'bottom') {
* @since 1.8.13
*/
function hide_ui() {
echo '<style type="text/css">.page-title-action, .give-filters, .search-box, .subsubsub, .wp-list-table, .tablenav.top, .give_forms_page_give-payment-history .tablenav.bottom, .give_forms_page_give-donors .tablenav.bottom, .tablenav-pages { display: none; }</style>';
ob_start();
?>
<style
type="text/css">.page-title-action, .give-filters, .search-box, .subsubsub, .wp-list-table, .tablenav.top, .give_forms_page_give-payment-history .tablenav.bottom, .give_forms_page_give-donors .tablenav.bottom, .tablenav-pages {
display: none;
}
</style>
<?php
$html = ob_get_contents();
ob_end_clean();

return $html;
}

/**
Expand Down

0 comments on commit 5d517bd

Please sign in to comment.