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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse

Pinned Loading

  1. WebFactoryLtd/WP-Force-SSLWebFactoryLtd/WP-Force-SSLPublic

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

    PHP

  2. 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
    functionwp_set_content_type(){
    5
    return"text/html";
  3. disable_suggested_passworddisable_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 ) ) {
  4. docker-compose-wordpressdocker-compose-wordpressPublic template

    A minimal local WordPress stack using docker-compose. 🐋

    1