Viewing 15 replies - 1 through 15 (of 35 total)
  • .ra = real audio, so no, that’s not the same thing.

    It’s definitely one to consider for the next version.
    Could you please open a feature request issue on GitHub for this ?

    Thanks.

    Thread Starter spiney

    (@steeltape)

    i got page not found error whenever I tried to create a ticket

    https://github.com/eagerterrier/MimeTypes-Link-Icons/issues/new

    @steeltape could you please try again ? This might have been a temporary hickup on GitHub.

    [Edit] Sorry, I just notice that you did actually open the ticket. Thanks!

    Thread Starter spiney

    (@steeltape)

    hi, still no .rar supported?

    @steeltape, sorry not yet, though I have prepped the code for a new release, hoping @eagerterrier will find some time in the near future to create the new icons (yours is not the only open request).

    Plugin Author eagerterrier

    (@eagerterrier)

    @steeltape – just done the designs and added icons. v3.2 should be up tomorrow. I’ll post here and on git when it’s released.

    Thanks for your patience.

    Thread Starter spiney

    (@steeltape)

    got the update. thanks

    Plugin Author eagerterrier

    (@eagerterrier)

    @steeltape – just to confirm, v3.2 went live this morning.

    If you have any problems, let us know, otherwise please mark topic as resolved

    Thread Starter spiney

    (@steeltape)

    ah.. sadly it doesn’t seem to show icon when we choose link to attachment page.

    Plugin Author eagerterrier

    (@eagerterrier)

    @steeltape – can you send me a link? I’ve tested on my version and the .rar is showing fine.

    Did you update via the WP admin area?

    Thread Starter spiney

    (@steeltape)

    here. yes I did set it up in admin area.

    minedl.com/minecraft-speak-and-spell-1-7-2-map/3431/minecraft-speak-and-spell-by-rsmalec/

    Plugin Author eagerterrier

    (@eagerterrier)

    @steeltape – Seems like a plugin is overriding your hyperlinks.

    1. The URL in the source is written like so

    <a href='http://www.minedl.com/wp-content/uploads/2013/12/Minecraft-Speak-and-Spell-by-rsmalec.zip'>Minecraft Speak and Spell by rsmalec</a>

    Once the page has rendered, the URL in your hyperlink reads like this

    <a href="#attachment">Minecraft Speak and Spell by rsmalec</a>

    Not sure how to go about fixing this..

    Thread Starter spiney

    (@steeltape)

    add_action('wp_footer', 'hide_attachment_links');
    function hide_attachment_links () {
      if (is_attachment()) { ?>
    <script>jQuery(function($){
        $('a[href*="/uploads/"][href$=".zip"],a[href*="/uploads/"][href$=".rar"]').each( function() {
            $(this).data('href', $(this).attr('href'));
            $(this).attr('href','#attachment');
        });
        $('a[href="#attachment"]').click( function(e) {
            e.preventDefault();
            location.href = $(this).data('href');
        });
    });</script>
    <?php
      }
    }

    i’m using this .. so it won’t work with this intact?

    Plugin Author eagerterrier

    (@eagerterrier)

    @steeltape – If it’s JS and you are NOT using the async method, then it should work fine, but make sure you have the .zip ticked in the plugin settings.

    If I can ask that you check your plugin settings and get back to me, I can then replicate the problem if you’re still having difficulties

    Thread Starter spiney

    (@steeltape)

    yes I already tick zip n rar in settings..

Viewing 15 replies - 1 through 15 (of 35 total)
  • The topic ‘winrar not supported?’ is closed to new replies.