Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter tommyr

    (@tommyr)

    Any suggestion?

    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 8 years, 4 months ago by amedic.
    BestRanger

    (@bestranger)

    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://www.ads-software.com/support/topic/remove-save-button/

    • This reply was modified 8 years ago by BestRanger.
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Save recipe button’ is closed to new replies.