Skip to content
View otakupahp's full-sized avatar
🇪🇨
Latin Coder
🇪🇨
Latin Coder

Block or report otakupahp

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. validar-identificacion-ecuador validar-identificacion-ecuador Public

    Validador de identificaciones nacionales e internaiconales para Ecuador, basado en el código de Diaspar

    PHP

  2. sdk-license-manager-for-woocommerce sdk-license-manager-for-woocommerce Public

    A simple SDK to include in your plugins using the great License Manager for WooCommerce created by Drazen Bebic.

    10 1

  3. Git attributes configuration for any... Git attributes configuration for any new WP Plugin using PHPStorm
    1
    # fix EOL error for multiple environments for text files
    2
    *.* text eol=lf
    3
    
                  
    4
    # set image and fonts as binary
    5
    *.png binary
  4. Simple WordPress Autoloader Simple WordPress Autoloader
    1
    <?php
    2
    spl_autoload_register(function($required_file) {
    3
    
                  
    4
        # Transform file name from class based to file based
    5
        $fixed_name = strtolower( str_ireplace( '_', '-', $required_file ) );
  5. Add a shadow text with the desired c... Add a shadow text with the desired content to a H2
    1
    // To add the text dynamically, use a class (overlay-title) in the h2 to catch the object and modify h2::before for "overlay-title-shadow"
    2
    (function( $ ) {
    3
    	'use strict';
    4
    
                  
    5
    	 // Window loaded
  6. Simple CSS Loader Simple CSS Loader
    1
    .container {
    2
      height: 300px;
    3
      width: 300px;
    4
      margin: 0 auto;  
    5
      display: flex;