crunch

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Wrong translation – how can I replace it? #1612914
    crunch
    Participant

    Hi,

    No unfortunately that didn’t work.

    I changed all places where it says All %s to Alle %s

    But it still didn’t change.

    I am attaching a screenshot.

    Thank you

    in reply to: Filters not finding any matches #119612
    crunch
    Participant

    Thanks for the advice! I asked the theme developer and they told me it’s apparently a placeholder script but seemed all at a loss for why it was actually there.

    Anyway this is what I removed in the js/scripts.js file:

    $(“[placeholder]”).each(function(){
    if( $(this).val() === “” && $(this).attr(“placeholder”) !== “” ){
    $(this).val($(this).attr(“placeholder”));
    $(this).focus(function(){
    if($(this).val() === $(this).attr(“placeholder”)) { $(this).val(“”); }
    });
    $(this).blur(function(){
    if( $(this).val() === “” ) { $(this).val($(this).attr(“placeholder”)); }
    });
    }
    });

    So far all seems to function without a hitch despite it being removed.

    in reply to: Filters not finding any matches #117941
    crunch
    Participant

    That definitely helps. I switched to Twenty Fourteen and the filtering then works.
    Is there any way I can work around the misbehaving polyfill script and thus use my theme?

Viewing 3 posts - 1 through 3 (of 3 total)