Forum Replies Created

Viewing 1 replies (of 1 total)
  • 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

Viewing 1 replies (of 1 total)