Title: Remove Save Button?
Last modified: August 22, 2016

---

# Remove Save Button?

 *  Resolved [webdotcom](https://wordpress.org/support/users/webdotcom/)
 * (@webdotcom)
 * [11 years, 8 months ago](https://wordpress.org/support/topic/remove-save-button/)
 * Hello.
 * Like the plugin, but not liking that I have to promote yumprint.com to use it.
 * For me, the print button is good enough. It works and doesnt seem to be using
   any third party.
 * You should really put in the option to disable using a third party service. Both
   the save button on the post and the reviews.
 * Until then, how should this be done manually?
 * Thank you
 * [https://wordpress.org/plugins/recipe-card/](https://wordpress.org/plugins/recipe-card/)

Viewing 9 replies - 1 through 9 (of 9 total)

 *  [wsme123](https://wordpress.org/support/users/wsme123/)
 * (@wsme123)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/remove-save-button/#post-5200894)
 * Agreed, I don’t want the save button because it is ugly. were you able to remove
   it?
 *  Plugin Author [Yumprint.com](https://wordpress.org/support/users/yumprintcom/)
 * (@yumprintcom)
 * [11 years, 6 months ago](https://wordpress.org/support/topic/remove-save-button/#post-5200900)
 * Removing the save button is not presently supported.
 *  [Andrew Schultz](https://wordpress.org/support/users/tabboy/)
 * (@tabboy)
 * [11 years, 4 months ago](https://wordpress.org/support/topic/remove-save-button/#post-5200914)
 * I’ve tried to remove the save button with some CSS but it ends up hiding the 
   whole recipe card.
 * Even editing the PHP code and removing the save buttom HTML elements seems to
   break it.
 * So bizarre, any ideas?
 *  [Shannon Little](https://wordpress.org/support/users/enchiridion/)
 * (@enchiridion)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/remove-save-button/#post-5200917)
 * To hide the Save button, add this to your site’s CSS:
 *     ```
       .blog-yumprint-recipe .blog-yumprint-save {
           display: none;
       }
   
       .blog-yumprint-recipe .blog-yumprint-print {
           margin-left: 0;
       }
       ```
   
 *  [Hello Jack](https://wordpress.org/support/users/cookinaria/)
 * (@cookinaria)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/remove-save-button/#post-5200918)
 * Enchiridion, your CSS code does not work for me.
 * No matter what I try. Every time I make disappear the button, the complete recipe
   disappears. They have some control in the code?
 *  [entresijo](https://wordpress.org/support/users/entresijo/)
 * (@entresijo)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/remove-save-button/#post-5200919)
 * In fact there is a control: at post.js file.
 * var e=a.find(“.blog-yumprint-save”);if(!e.length||!e.is(“:visible”)||”hidden”
   ==e.css(“visibility”)
    … AND SO ON
 * What does that mean? If it finds you’re trying to hide the “save button” it will
   remove the whole recipe (by “{a.remove();return}”)
 * Maybe the easiest way to achieve what you all are looking for is:
 * 1. edit post.js
    2. search for the control line (var e=a.find(“.blog-yumprint-
   save”) … ) 3. in that control line, replace “hidden” for “whatever” or whatever
   you want (the goal is to avoid the “hidden” check control) 4. edit yumprint-recipe.
   php 5. search for <div class=”blog-yumprint-save blog-yumprint-action”> 6. replace
   it for <div class=”blog-yumprint-save blog-yumprint-action” style=”visibility:
   hidden”>
 * 🙂
 * P.S: Yumprint, please don’t get too angry
 *  [Andrew Schultz](https://wordpress.org/support/users/tabboy/)
 * (@tabboy)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/remove-save-button/#post-5200920)
 * entresijo you are a genius! I was trying to work out why the whole recipe would
   disappear when I hid the button with CSS. Thanks for the solution!!
 *  [Shivanand Sharma](https://wordpress.org/support/users/varun21/)
 * (@varun21)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/remove-save-button/#post-5200921)
 * Hi,
 * Well [@tabboy](https://wordpress.org/support/users/tabboy/) and [@webdotcom](https://wordpress.org/support/users/webdotcom/),
   there’s another way you can hide the “Save Recipe” button from the card. With
   all due respect, [@entresijo](https://wordpress.org/support/users/entresijo/)
   your idea is great, but it requires one to tinker with the core files of the 
   plugin, which is not a safe thing to do specially when you need to take care 
   of the plugin updates that would bring up the issue again.
 * So, here’s another way you can do this, without modifying the core files. Just
   add the following to your functions.php:
 *     ```
       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
       }
       ```
   
 * You can then use CSS to move the print button to the left (or anywhere as needed).
 *  [Muneera_Salah](https://wordpress.org/support/users/muneera_salah/)
 * (@muneera_salah)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/remove-save-button/#post-5200922)
 * [@shivanand](https://wordpress.org/support/users/shivanand/) Binary Turf
    Thank
   u useful

Viewing 9 replies - 1 through 9 (of 9 total)

The topic ‘Remove Save Button?’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/recipe-card_cfc7c6.svg)
 * [Recipe Card](https://wordpress.org/plugins/recipe-card/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/recipe-card/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/recipe-card/)
 * [Active Topics](https://wordpress.org/support/plugin/recipe-card/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/recipe-card/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/recipe-card/reviews/)

## Tags

 * [third-party](https://wordpress.org/support/topic-tag/third-party/)

 * 9 replies
 * 9 participants
 * Last reply from: [Muneera_Salah](https://wordpress.org/support/users/muneera_salah/)
 * Last activity: [11 years, 2 months ago](https://wordpress.org/support/topic/remove-save-button/#post-5200922)
 * Status: resolved