I’m troubleshooting similar issues for a client of mine and this change to the CSS worked to get the save button removed. You’ll have to adjust the margins on the print button as well so it doesn’t look cutoff.
.blog-yumprint-recipe .blog-yumprint-header div.blog-yumprint-save{
display: none !important;
}
.blog-yumprint-recipe .blog-yumprint-print {
margin-left: 0px;
margin-right: 0px;
}
Hi, have you manage to solve this problem?
If I edit the css file, with save button all recipes are also hidden.
Do you perhaps have any solution?
Thanks!
-
This reply was modified 9 years, 6 months ago by
amedic.
add_action(‘wp_head’, ‘hide_yumprint_save’);
function hide_yumprint_save(){
?>
<script type=”text/javascript”>
$j=jQuery.noConflict();
$j( document ).ready(function() {
$j(‘.blog-yumprint-save.blog-yumprint-action, .blog-yumprint-save.blog-yumprint-action a’).css({
“text-indent”:”-9999px”,
“background”:”transparent”,
“padding-left”:”1px”,
“height”:”1px”,
“width”:”1px”,
});
});
</script>
<?php
}
`
Source : https://wordpress.org/support/topic/remove-save-button/
-
This reply was modified 9 years, 1 month ago by
BestRanger.