Skip to content
View kausaralm's full-sized avatar

Block or report kausaralm

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. custom-product-gallery-image custom-product-gallery-image Public

    This plugin allows WooCommerce users to upload a custom image and add it to all product galleries

    PHP

  2. js-player-player-game js-player-player-game Public

    Basic JavaScript Player Player Game

    JavaScript

  3. theme-for-starter theme-for-starter Public

    PHP

  4. akramulhasan/wpfy-scroller akramulhasan/wpfy-scroller Public

    This is a tiny but useful plugin to add a simple icon in website bottom area. When you will scroll down a while, this clickable icon will be visible and after click it will take you to the top of t…

    PHP

  5. awesome-wordpress-code-snippets awesome-wordpress-code-snippets Public

    Forked from faisalahammad/awesome-wordpress-code-snippets

    JavaScript 1

  6. This section presents a custom JavaS... This section presents a custom JavaScript code snippet designed to remove image titles on hover within the Divi Gallery Module of WordPress. The code effectively addresses a common user concern by enhancing the gallery's usability without extensive changes to the website's codebase.
    1
    jQuery(document).ready(function($){
    2
        $( ".et_pb_gallery_image a" )
    3
            .mouseenter(function() {
    4
                var title = $(this).attr("title");
    5
                $(this).attr("temp_title", title);