Category: blogs

  • Find the particlular file recursively and delete from terminal

    First, check the files by the following command to confirm your searched files:

    find FOLDER/PATH -name '*.log'

    Now run the following command to delete:

    find FOLDER/PATH -name '*.log' -delete

     

    This command will delete the file containing “.log” extension.

  • Fix cURL error 28: Resolving timed out after 10003 milliseconds on local

    Ref: https://www.digitalocean.com/community/questions/how-do-i-switch-my-dns-resolvers-away-from-google

    NOTE: This is for Mac users. Linux I am not sure, but can try.

    This is the temporary fix. You have to do every time when you restart your computer.

    Open the following file:

    /etc/resolv.conf

    Which should look something like this:

    nameserver 8.8.8.8
    nameserver 8.8.4.4

    Change those lines with following:

    nameserver 208.67.222.222 
    nameserver 208.67.220.220

    That’s it !!!!!

  • Initialize slick slider after ajax success

    Add following snippet into your ajax success.

    if ($('.your_slick_selector').hasClass('slick-initialized')) {
        $('.your_slick_selector').slick('destroy');
    }
    
    $( '.your_slick_selector' ).html( response );
    
    $( '.your_slick_selector' ).slick({
        infinite: false,
        slidesToShow: 5,
        slidesToScroll: 5,
    });
    
  • WordPress Copy Content Plugin

    WordPress Copy Content Plugin

    Sometimes people needs some part of content from existing posts or pages. Or some needs to add extra content from existing.

    So now you dont need to find that post/page and copy that content and paste. Just install this plugin, search the post/page by it’s title and fetch the content.

    HOW TO USE?

    • Search post/page by it’s title
    • Select from the search result
    • And fetch the content of selected post/pages

     

    You can get the plugin free from here.

  • Comment Mention WordPress Plugin

    Comment Mention WordPress Plugin

    Now you can enable user mention functionality in post comments without using BuddyPress plugin.

    This plugin is useful for those who wanted to enable mention on their blog site.

    What this plugin does? Just type username followed by ‘@’ in comment box. It will send the email to mentioned user.

    Email setting is provided in backend. You can change email subject and content by your own.

    You can get this simple plugin from here.