Skip to content
View kosvrouvas's full-sized avatar

Organizations

@wpgreece @helenusorg

Block or report kosvrouvas

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. WebFactoryLtd/WP-Force-SSL WebFactoryLtd/WP-Force-SSL Public

    This plugin helps you redirect HTTP traffic to HTTPS without the need of touching any code.

    PHP

  2. gatsby-tailwindcss-starter gatsby-tailwindcss-starter Public template

    A Gatsby.js starter theme with TailwindCSS and PostCSS

    JavaScript 36 12

  3. WooCommerce: Send a second email to ... WooCommerce: Send a second email to customer if a coupon is applied with HTML
    1
    // In theme's functions.php or plug-in code:
    2
    
                  
    3
    // wp_mail() sents emails only in plain text by default, here we add HTML support
    4
    function wp_set_content_type(){
    5
        return "text/html";
  4. disable_suggested_password disable_suggested_password
    1
    add_filter( 'random_password', 'disable_suggested_password', 10, 2 );
    2
    
                  
    3
    function disable_suggested_password( $password ) {
    4
        $action = isset( $_GET['action'] ) ? $_GET['action'] : '';
    5
        if ( 'wp-login.php' === $GLOBALS['pagenow'] && ( 'rp' == $action  || 'resetpass' == $action ) ) {
  5. docker-compose-wordpress docker-compose-wordpress Public template

    A minimal local WordPress stack using docker-copmpose. 🐋

    1

  6. tutorials tutorials Public

    A monorepo for code included on my website posts

    PHP