Skip to content
View EugeneKyale's full-sized avatar
:octocat:
Building cool stuff for the web πŸ‘¨πŸ½β€πŸ’»
:octocat:
Building cool stuff for the web πŸ‘¨πŸ½β€πŸ’»
Block or Report

Block or report EugeneKyale

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
EugeneKyale/README.md
  • πŸ‘‹ Hi, I’m Eugene Kyale, a WordPress & React developer with over 8 years of experience.
  • πŸ‘€ Check out my portfolio on https://eugene.co.ke/

Pinned Loading

  1. the-events-calendar/the-events-calendar the-events-calendar/the-events-calendar Public

    The Events Calendar WordPress plugin

    PHP 304 189

  2. the-events-calendar/tribe-common the-events-calendar/tribe-common Public

    Common classes and functions used in our plugins

    PHP 68 37

  3. the-events-calendar/event-tickets the-events-calendar/event-tickets Public

    Event Tickets allows your visitors to RSVP and buy tickets to events on your site. Also works seamlessly with The Events Calendar.

    PHP 81 43

  4. Ignore Tribe Events shortcode query? Ignore Tribe Events shortcode query?
    1
    <?php
    2
    add_filter( 'facetwp_is_main_query', function( $is_main_query, $query ) {
    3
        if ( 'tribe_events' == $query->get( 'post_type' ) ) {
    4
            $is_main_query = false;
    5
        }
  5. Custom Ordering for Tribe Events Exc... Custom Ordering for Tribe Events Excluding a Specific Category
    1
    <?php
    2
    /**
    3
     * Modifies the query to set a custom flag if the post type is 'tribe_events'
    4
     * and the category is not 'board-conference-room'.
    5
     *
  6. Make Additional Field URL a Linked Word Make Additional Field URL a Linked Word
    1
    <?php
    2
    function tribe_get_additional_field_url( $label ) {
    3
    	$event_id = get_the_ID();
    4
    	$url = tribe_get_event_meta( $event_id, '_ecp_custom_4', true ); // this value i.e. _ecp_custom_4 will vary depending on the additional fields set on a particular website. 
    5