Skip to content
View JoseSoteloCohen's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report JoseSoteloCohen

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

  1. Blackout-WordPress-Dark-mode-Widget Blackout-WordPress-Dark-mode-Widget Public

    Simple plugin that creates a widget that enables dark mode on click.

    PHP 17 5

  2. sendy-elements sendy-elements Public

    Simple plugin that integrates Elementor Pro form widget with Sendy via API.

    PHP 8 7

  3. Moo-Elements Moo-Elements Public

    WordPress plugin to integrate Moosend with Elementor Forms

    PHP 1

  4. pyhasher pyhasher Public

    Python script to hash strings with SHA256

    Python

  5. HTML-Pages HTML-Pages Public

    PHP 1

  6. Elementor post excerpt Elementor post excerpt
    1
    // functions.php //
    2
    function custom_post_excerpt_length($post_excerpt, $post)
    3
    {
    4
    $length = 70;
    5
    $excerpt = strlen($post_excerpt) > $length ? mb_substr($post_excerpt, 0, $length - 3, "utf-8") . "..." : $post_excerpt;