Skip to content

Instantly share code, notes, and snippets.

@BiancaNL
BiancaNL / Remove admin notice
Created February 3, 2018 21:25
This little snippet remove the annoying warning message in the theme editor section
//Remove unwanted notices in the admin area
add_action('admin_head', 'remove_admin_warning');
function remove_admin_warning() {
echo '<style>
.theme-editor-php #message {display:none;}
</style>';
}
function acf_pricing_table() {
ob_start();
?>
<?php if( have_rows('pricing_table') ): ?>
<div class="pricing-table-container">
<?php while( have_rows('pricing_table') ): the_row();
$price = get_sub_field('price');
.acf-pricing-table {
display: inline-block;
background: #fff;
padding: 30px;
text-align: center;
margin: 7px; border: 1px solid #000;
}
.acf-pricing-table-price-desc {
font-weight: 900;
.dvk-social-sharing {
line-height: 32px;
}
.dvk-social-sharing > a{
margin-left:12px;
display: inline-block;
text-decoration: none;
}