Plugin Directory

Changeset 2514156


Ignore:
Timestamp:
04/13/2021 01:41:14 PM (5 years ago)
Author:
fooevents
Message:

Release 1.6.15

Location:
fooevents-calendar
Files:
65 added
1 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • fooevents-calendar/trunk/class-fooevents-calendar.php

    r2505115 r2514156  
    119119        if ( 'light' === $calendar_theme ) {
    120120
    121             wp_enqueue_style( 'fooevents-calendar-full-callendar-light', $this->config->stylesPath . 'fooevents-fullcalendar-light.css', array(), $this->Config->plugin_data['Version'] );
     121            wp_enqueue_style( 'fooevents-calendar-full-callendar-light', $this->config->stylesPath . 'fooevents-fullcalendar-light.css', array(), $this->config->plugin_data['Version'] );
    122122
    123123        } elseif ( 'dark' === $calendar_theme ) {
    124124
    125             wp_enqueue_style( 'fooevents-calendar-full-callendar-dark', $this->config->stylesPath . 'fooevents-fullcalendar-dark.css', array(), $this->Config->plugin_data['Version'] );
     125            wp_enqueue_style( 'fooevents-calendar-full-callendar-dark', $this->config->stylesPath . 'fooevents-fullcalendar-dark.css', array(), $this->config->plugin_data['Version'] );
    126126
    127127        } elseif ( 'flat' === $calendar_theme ) {
    128128
    129             wp_enqueue_style( 'fooevents-calendar-full-callendar-flat', $this->config->stylesPath . 'fooevents-fullcalendar-flat.css', array(), $this->Config->plugin_data['Version'] );
     129            wp_enqueue_style( 'fooevents-calendar-full-callendar-flat', $this->config->stylesPath . 'fooevents-fullcalendar-flat.css', array(), $this->config->plugin_data['Version'] );
    130130
    131131        } elseif ( 'minimalist' === $calendar_theme ) {
    132132
    133             wp_enqueue_style( 'fooevents-calendar-full-callendar-minimalist', $this->config->stylesPath . 'fooevents-fullcalendar-minimalist.css', array(), $this->Config->plugin_data['Version'] );
     133            wp_enqueue_style( 'fooevents-calendar-full-callendar-minimalist', $this->config->stylesPath . 'fooevents-fullcalendar-minimalist.css', array(), $this->config->plugin_data['Version'] );
    134134
    135135        }
     
    139139        if ( 'light-card' === $list_theme ) {
    140140
    141             wp_enqueue_style( 'fooevents-calendar-list-light-card', $this->config->stylesPath . 'fooevents-list-light-card.css', array(), $this->Config->plugin_data['Version'] );
     141            wp_enqueue_style( 'fooevents-calendar-list-light-card', $this->config->stylesPath . 'fooevents-list-light-card.css', array(), $this->config->plugin_data['Version'] );
    142142
    143143        } elseif ( 'dark-card' === $list_theme ) {
    144144
    145             wp_enqueue_style( 'fooevents-calendar-list-dark-card', $this->config->stylesPath . 'fooevents-list-dark-card.css', array(), $this->Config->plugin_data['Version'] );
     145            wp_enqueue_style( 'fooevents-calendar-list-dark-card', $this->config->stylesPath . 'fooevents-list-dark-card.css', array(), $this->config->plugin_data['Version'] );
    146146
    147147        }
     
    554554            }
    555555        }
    556 
    557         if ( isset( $_POST['WooCommerceEventsEvent'] ) ) {
    558 
    559             $events_event = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsEvent'] ) );
    560             update_post_meta( $post_id, 'WooCommerceEventsEvent', $events_event );
    561 
    562         }
    563 
    564         $format = get_option( 'date_format' );
    565 
    566         $min    = 60 * get_option( 'gmt_offset' );
    567         $sign   = $min < 0 ? '-' : '+';
    568         $absmin = abs( $min );
    569 
    570         try {
    571 
    572             $tz = new DateTimeZone( sprintf( '%s%02d%02d', $sign, $absmin / 60, $absmin % 60 ) );
    573 
    574         } catch ( Exception $e ) {
    575 
    576             $server_timezone = date_default_timezone_get();
    577             $tz              = new DateTimeZone( $server_timezone );
    578 
    579         }
    580 
    581         $event_date_original = '';
    582         $event_date          = '';
    583         if ( isset( $_POST['WooCommerceEventsDate'] ) ) {
    584 
    585             $event_date_original = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsDate'] ) );
    586             $event_date          = $event_date_original;
    587 
    588         }
    589 
    590         if ( isset( $event_date ) ) {
    591 
    592             if ( isset( $_POST['WooCommerceEventsSelectDate'][0] ) && isset( $_POST['WooCommerceEventsMultiDayType'] ) && 'select' === $_POST['WooCommerceEventsMultiDayType'] ) {
    593 
    594                 $event_date = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsSelectDate'][0] ) );
    595 
    596             }
    597 
    598             $event_date = str_replace( '/', '-', $event_date );
    599             $event_date = str_replace( ',', '', $event_date );
    600 
    601             update_post_meta( $post_id, 'WooCommerceEventsDate', $event_date_original );
    602 
    603             $dtime = DateTime::createFromFormat( $format, $event_date, $tz );
    604 
    605             $timestamp = '';
    606             if ( $dtime instanceof DateTime ) {
    607 
    608                 if ( isset( $_POST['WooCommerceEventsHour'] ) && isset( $_POST['WooCommerceEventsMinutes'] ) ) {
    609 
    610                     $event_hour    = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsHour'] ) );
    611                     $event_minutes = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsMinutes'] ) );
    612                     $dtime->setTime( (int) $event_hour, (int) $event_minutes );
    613 
    614                 }
    615 
    616                 $timestamp = $dtime->getTimestamp();
    617 
    618             } else {
    619 
    620                 $timestamp = 0;
    621 
    622             }
    623 
    624             update_post_meta( $post_id, 'WooCommerceEventsDateTimestamp', $timestamp );
    625 
    626         }
    627 
    628         if ( isset( $_POST['WooCommerceEventsEndDate'] ) ) {
    629 
    630             $event_end_date = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsEndDate'] ) );
    631             update_post_meta( $post_id, 'WooCommerceEventsEndDate', $event_end_date );
    632 
    633             $dtime = DateTime::createFromFormat( $format, $event_end_date, $tz );
    634 
    635             $timestamp = '';
    636             if ( $dtime instanceof DateTime ) {
    637 
    638                 if ( isset( $_POST['WooCommerceEventsHourEnd'] ) && isset( $_POST['WooCommerceEventsMinutesEnd'] ) ) {
    639 
    640                     $event_hour_end    = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsHourEnd'] ) );
    641                     $event_minutes_end = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsMinutesEnd'] ) );
    642                     $dtime->setTime( (int) $event_hour_end, (int) $event_minutes_end );
    643 
    644                 }
    645 
    646                 $timestamp = $dtime->getTimestamp();
    647 
    648             } else {
    649 
    650                 $timestamp = 0;
    651 
    652             }
    653 
    654             update_post_meta( $post_id, 'WooCommerceEventsEndDateTimestamp', $timestamp );
    655 
    656         }
    657 
    658         if ( isset( $_POST['WooCommerceEventsHour'] ) ) {
    659 
    660             $event_hour = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsHour'] ) );
    661             update_post_meta( $post_id, 'WooCommerceEventsHour', $event_hour );
    662 
    663         }
    664 
    665         if ( isset( $_POST['WooCommerceEventsMinutes'] ) ) {
    666 
    667             $event_minutes = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsMinutes'] ) );
    668             update_post_meta( $post_id, 'WooCommerceEventsMinutes', $event_minutes );
    669 
    670         }
    671 
    672         if ( isset( $_POST['WooCommerceEventsPeriod'] ) ) {
    673 
    674             $event_period = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsPeriod'] ) );
    675             update_post_meta( $post_id, 'WooCommerceEventsPeriod', $event_period );
    676 
    677         }
    678 
    679         if ( isset( $_POST['WooCommerceEventsHourEnd'] ) ) {
    680 
    681             $event_hour_end = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsHourEnd'] ) );
    682             update_post_meta( $post_id, 'WooCommerceEventsHourEnd', $event_hour_end );
    683 
    684         }
    685 
    686         if ( isset( $_POST['WooCommerceEventsMinutesEnd'] ) ) {
    687 
    688             $event_minutes_end = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsMinutesEnd'] ) );
    689             update_post_meta( $post_id, 'WooCommerceEventsMinutesEnd', $event_minutes_end );
    690 
    691         }
    692 
    693         if ( isset( $_POST['WooCommerceEventsEndPeriod'] ) ) {
    694 
    695             $event_end_period = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsEndPeriod'] ) );
    696             update_post_meta( $post_id, 'WooCommerceEventsEndPeriod', $event_end_period );
    697 
    698         }
    699 
    700         if ( isset( $_POST['WooCommerceEventsTimeZone'] ) ) {
    701 
    702             $event_timezone = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsTimeZone'] ) );
    703             update_post_meta( $post_id, 'WooCommerceEventsTimeZone', $event_timezone );
    704 
    705         }
    706 
    707         if ( isset( $_POST['WooCommerceEventsSelectDate'] ) && isset( $_POST['WooCommerceEventsNonProductEvent'] ) ) {
    708                    
    709             $event_select_date = $_POST['WooCommerceEventsSelectDate'];
    710             update_post_meta( $post_id, 'WooCommerceEventsSelectDate', $event_select_date );
    711 
    712         }
    713 
    714         if ( isset( $_POST['WooCommerceEventsType'] ) ) {
    715 
    716             $event_type = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsType'] ) );
    717             update_post_meta( $post_id, 'WooCommerceEventsType', $event_type );
    718 
    719         }
    720 
    721         if ( isset( $_POST['WooCommerceEventsNumDays'] ) ) {
    722 
    723             $event_num_days = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsNumDays'] ) );
    724             update_post_meta( $post_id, 'WooCommerceEventsNumDays', $event_num_days );
    725 
    726         }
    727 
    728         if ( isset( $_POST['WooCommerceEventsAddEventbrite'] ) ) {
    729 
    730             $events_add_eventbrite = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsAddEventbrite'] ) );
    731             update_post_meta( $post_id, 'WooCommerceEventsAddEventbrite', $events_add_eventbrite );
    732 
    733         } else {
    734 
    735             update_post_meta( $post_id, 'WooCommerceEventsAddEventbrite', '' );
    736 
    737         }
    738 
    739         if ( isset( $_POST['WooCommerceEventsAddEventbrite'] ) ) {
    740 
    741             $this->process_eventbrite( $post_id );
    742 
    743         }
     556               
     557                if(isset( $_POST['WooCommerceEventsNonProductEvent'] )) {
     558               
     559                    if ( isset( $_POST['WooCommerceEventsEvent'] ) ) {
     560
     561                            $events_event = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsEvent'] ) );
     562                            update_post_meta( $post_id, 'WooCommerceEventsEvent', $events_event );
     563
     564                    }
     565
     566                    $format = get_option( 'date_format' );
     567
     568                    $min    = 60 * get_option( 'gmt_offset' );
     569                    $sign   = $min < 0 ? '-' : '+';
     570                    $absmin = abs( $min );
     571
     572                    try {
     573
     574                            $tz = new DateTimeZone( sprintf( '%s%02d%02d', $sign, $absmin / 60, $absmin % 60 ) );
     575
     576                    } catch ( Exception $e ) {
     577
     578                            $server_timezone = date_default_timezone_get();
     579                            $tz              = new DateTimeZone( $server_timezone );
     580
     581                    }
     582
     583                    $event_date_original = '';
     584                    $event_date          = '';
     585                    if ( isset( $_POST['WooCommerceEventsDate'] ) ) {
     586
     587                            $event_date_original = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsDate'] ) );
     588                            $event_date          = $event_date_original;
     589
     590                    }
     591
     592                    if ( isset( $event_date ) ) {
     593
     594                            if ( isset( $_POST['WooCommerceEventsSelectDate'][0] ) && isset( $_POST['WooCommerceEventsMultiDayType'] ) && 'select' === $_POST['WooCommerceEventsMultiDayType'] ) {
     595
     596                                    $event_date = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsSelectDate'][0] ) );
     597
     598                            }
     599
     600                            $event_date = str_replace( '/', '-', $event_date );
     601                            $event_date = str_replace( ',', '', $event_date );
     602
     603                            update_post_meta( $post_id, 'WooCommerceEventsDate', $event_date_original );
     604
     605                            $dtime = DateTime::createFromFormat( $format, $event_date, $tz );
     606
     607                            $timestamp = '';
     608                            if ( $dtime instanceof DateTime ) {
     609
     610                                    if ( isset( $_POST['WooCommerceEventsHour'] ) && isset( $_POST['WooCommerceEventsMinutes'] ) ) {
     611
     612                                            $event_hour    = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsHour'] ) );
     613                                            $event_minutes = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsMinutes'] ) );
     614                                            $dtime->setTime( (int) $event_hour, (int) $event_minutes );
     615
     616                                    }
     617
     618                                    $timestamp = $dtime->getTimestamp();
     619
     620                            } else {
     621
     622                                    $timestamp = 0;
     623
     624                            }
     625
     626                            update_post_meta( $post_id, 'WooCommerceEventsDateTimestamp', $timestamp );
     627
     628                    }
     629
     630                    if ( isset( $_POST['WooCommerceEventsEndDate'] ) ) {
     631
     632                            $event_end_date = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsEndDate'] ) );
     633                            update_post_meta( $post_id, 'WooCommerceEventsEndDate', $event_end_date );
     634
     635                            $dtime = DateTime::createFromFormat( $format, $event_end_date, $tz );
     636
     637                            $timestamp = '';
     638                            if ( $dtime instanceof DateTime ) {
     639
     640                                    if ( isset( $_POST['WooCommerceEventsHourEnd'] ) && isset( $_POST['WooCommerceEventsMinutesEnd'] ) ) {
     641
     642                                            $event_hour_end    = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsHourEnd'] ) );
     643                                            $event_minutes_end = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsMinutesEnd'] ) );
     644                                            $dtime->setTime( (int) $event_hour_end, (int) $event_minutes_end );
     645
     646                                    }
     647
     648                                    $timestamp = $dtime->getTimestamp();
     649
     650                            } else {
     651
     652                                    $timestamp = 0;
     653
     654                            }
     655
     656                            update_post_meta( $post_id, 'WooCommerceEventsEndDateTimestamp', $timestamp );
     657
     658                    }
     659
     660                    if ( isset( $_POST['WooCommerceEventsHour'] ) ) {
     661
     662                            $event_hour = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsHour'] ) );
     663                            update_post_meta( $post_id, 'WooCommerceEventsHour', $event_hour );
     664
     665                    }
     666
     667                    if ( isset( $_POST['WooCommerceEventsMinutes'] ) ) {
     668
     669                            $event_minutes = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsMinutes'] ) );
     670                            update_post_meta( $post_id, 'WooCommerceEventsMinutes', $event_minutes );
     671
     672                    }
     673
     674                    if ( isset( $_POST['WooCommerceEventsPeriod'] ) ) {
     675
     676                            $event_period = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsPeriod'] ) );
     677                            update_post_meta( $post_id, 'WooCommerceEventsPeriod', $event_period );
     678
     679                    }
     680
     681                    if ( isset( $_POST['WooCommerceEventsHourEnd'] ) ) {
     682
     683                            $event_hour_end = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsHourEnd'] ) );
     684                            update_post_meta( $post_id, 'WooCommerceEventsHourEnd', $event_hour_end );
     685
     686                    }
     687
     688                    if ( isset( $_POST['WooCommerceEventsMinutesEnd'] ) ) {
     689
     690                            $event_minutes_end = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsMinutesEnd'] ) );
     691                            update_post_meta( $post_id, 'WooCommerceEventsMinutesEnd', $event_minutes_end );
     692
     693                    }
     694
     695                    if ( isset( $_POST['WooCommerceEventsEndPeriod'] ) ) {
     696
     697                            $event_end_period = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsEndPeriod'] ) );
     698                            update_post_meta( $post_id, 'WooCommerceEventsEndPeriod', $event_end_period );
     699
     700                    }
     701
     702                    if ( isset( $_POST['WooCommerceEventsTimeZone'] ) ) {
     703
     704                            $event_timezone = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsTimeZone'] ) );
     705                            update_post_meta( $post_id, 'WooCommerceEventsTimeZone', $event_timezone );
     706
     707                    }
     708
     709                    if ( isset( $_POST['WooCommerceEventsSelectDate'] ) && isset( $_POST['WooCommerceEventsNonProductEvent'] ) ) {
     710
     711                            $event_select_date = $_POST['WooCommerceEventsSelectDate'];
     712                            update_post_meta( $post_id, 'WooCommerceEventsSelectDate', $event_select_date );
     713
     714                    }
     715
     716                    if ( isset( $_POST['WooCommerceEventsType'] ) ) {
     717
     718                            $event_type = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsType'] ) );
     719                            update_post_meta( $post_id, 'WooCommerceEventsType', $event_type );
     720
     721                    }
     722
     723                    if ( isset( $_POST['WooCommerceEventsNumDays'] ) ) {
     724
     725                            $event_num_days = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsNumDays'] ) );
     726                            update_post_meta( $post_id, 'WooCommerceEventsNumDays', $event_num_days );
     727
     728                    }
     729
     730                    if ( isset( $_POST['WooCommerceEventsAddEventbrite'] ) ) {
     731
     732                            $events_add_eventbrite = sanitize_text_field( wp_unslash( $_POST['WooCommerceEventsAddEventbrite'] ) );
     733                            update_post_meta( $post_id, 'WooCommerceEventsAddEventbrite', $events_add_eventbrite );
     734
     735                    } else {
     736
     737                            update_post_meta( $post_id, 'WooCommerceEventsAddEventbrite', '' );
     738
     739                    }
     740
     741                    if ( isset( $_POST['WooCommerceEventsAddEventbrite'] ) ) {
     742
     743                            $this->process_eventbrite( $post_id );
     744
     745                    }
     746               
     747                }
    744748
    745749    }
     
    18161820                        foreach ( $multi_day_dates as $date ) {
    18171821
    1818                             if ( $y > 0 && 'yes' === $event_start_day ) {
    1819 
    1820                                 continue;
    1821 
    1822                             }
    1823 
     1822                                                        if(('eventlist' === $event_start_day || 'both' === $event_start_day ) && 'events_list' ===  $display_type && $y > 0) {
     1823                                                           
     1824                                                                continue;
     1825                                                           
     1826                                                        }
     1827                                                       
     1828                                                        if(('calendar' === $event_start_day || 'both' === $event_start_day ) && 'events_list' !== $display_type && $y > 0) {
     1829                                                               
     1830                                                                continue;
     1831                                                           
     1832                                                        }
     1833                                                       
    18241834                            $x++;
    18251835
     
    18991909
    19001910                            $event_end_date_formatted = $fooevents_multiday_events->format_end_date( $event->ID, '', $display_type );
    1901 
     1911                                                       
    19021912                            if ( 'yes' !== $event_start_day ) {
    19031913
     
    19141924                        $event_end_date_formatted = $fooevents_multiday_events->format_end_date( $event->ID, true, $display_type );
    19151925
    1916                         if ( 'yes' !== $event_start_day ) {
    1917 
    1918                             $json_events['events'][ $x ]['end']                 = $event_end_date_formatted;
     1926                                                if(('calendar' !== $event_start_day && 'both' !== $event_start_day ) && 'events_list' !== $display_type) {
     1927
     1928                                                        $json_events['events'][ $x ]['end']                 = $event_end_date_formatted;
    19191929                            $json_events['events'][ $x ]['unformated_end_date'] = $event_end_date;
    19201930
    1921                         }
     1931                                                }
     1932
    19221933                    }
    19231934                }
     
    26692680            case 'F j, Y':
    26702681                return( 'MM dd, yy' );
    2671             case 'F j Y':
    2672                 return( 'MM dd yy' );
     2682            case 'M. j, Y':
     2683                return( 'M. dd, yy' );
     2684            case 'M. d, Y':
     2685                return( 'M. dd, yy' );
     2686            case 'mm/dd/yyyy':
     2687                return( 'mm/dd/yy' );
    26732688            case 'j F Y':
    26742689                return( 'd MM yy' );
     
    27522767            'décembre'    => 'December',
    27532768
     2769            // Catalan - Spain
     2770            "gener" => "January",
     2771            "febrer" => "February",
     2772            "març" => "March",
     2773            "abril" => "April",
     2774            "maig" => "May",
     2775            "juny" => "June",
     2776            "juliol" => "July",
     2777            "agost" => "August",
     2778            "setembre" => "September",
     2779            "octubre" => "October",
     2780            "novembre" => "November",
     2781            "desembre" => "December",
     2782
    27542783            // Dutch.
    27552784            'januari'     => 'January',
     
    29723001            'Νοέμβριος'   => 'November',
    29733002            'Δεκέμβριος'  => 'December',
     3003
    29743004            // Slovak - Slovakia.
    29753005            'január'      => 'January',
     
    29993029            'november'    => 'November',
    30003030            'december'    => 'December',
     3031
     3032
    30013033        );
    30023034
  • fooevents-calendar/trunk/default.po

    r2501761 r2514156  
    22msgstr ""
    33"Project-Id-Version: FooEvents Calendar\n"
    4 "POT-Creation-Date: 2021-03-23 09:43+0200\n"
    5 "PO-Revision-Date: 2021-03-23 09:43+0200\n"
     4"POT-Creation-Date: 2021-04-13 12:44+0200\n"
     5"PO-Revision-Date: 2021-04-13 12:44+0200\n"
    66"Last-Translator: \n"
    77"Language-Team: \n"
     
    3131msgstr ""
    3232
    33 #: class-fooevents-calendar.php:179 class-fooevents-calendar.php:1386
     33#: class-fooevents-calendar.php:179 class-fooevents-calendar.php:1383
    3434msgid "Today"
    3535msgstr ""
     
    4747msgstr ""
    4848
    49 #: class-fooevents-calendar.php:384
     49#: class-fooevents-calendar.php:377
    5050msgid "Imported Events"
    5151msgstr ""
    5252
    53 #: class-fooevents-calendar.php:385
     53#: class-fooevents-calendar.php:378
    5454msgid "Imported Event"
    5555msgstr ""
    5656
    57 #: class-fooevents-calendar.php:420
     57#: class-fooevents-calendar.php:413
    5858msgid "FooEvents Calendar Settings"
    5959msgstr ""
    6060
    61 #: class-fooevents-calendar.php:784
     61#: class-fooevents-calendar.php:781
    6262msgid "Event start date required for Eventbrite."
    6363msgstr ""
    6464
    65 #: class-fooevents-calendar.php:790
     65#: class-fooevents-calendar.php:787
    6666msgid "Event end date required for Eventbrite."
    6767msgstr ""
    6868
    69 #: class-fooevents-calendar.php:796
     69#: class-fooevents-calendar.php:793
    7070msgid "Event title required for Eventbrite."
    7171msgstr ""
    7272
    73 #: class-fooevents-calendar.php:1090
     73#: class-fooevents-calendar.php:1087
    7474#, php-format
    7575msgid "%1$d events added. %2$d events updated."
    7676msgstr ""
    7777
    78 #: class-fooevents-calendar.php:1162 class-fooevents-calendar.php:1303
     78#: class-fooevents-calendar.php:1159 class-fooevents-calendar.php:1300
    7979msgid "Book ticket"
    8080msgstr ""
    8181
    82 #: class-fooevents-calendar.php:2059
     82#: class-fooevents-calendar.php:2063
    8383msgid "Calendar Settings"
    8484msgstr ""
    8585
    86 #: class-fooevents-calendar.php:2065
     86#: class-fooevents-calendar.php:2069
    8787msgid "Enable 24 hour time format"
    8888msgstr ""
    8989
    90 #: class-fooevents-calendar.php:2069
     90#: class-fooevents-calendar.php:2073
    9191msgid "Uses 24 hour time format on the calendar."
    9292msgstr ""
    9393
    94 #: class-fooevents-calendar.php:2073
     94#: class-fooevents-calendar.php:2077
    9595msgid "Only display start day"
    9696msgstr ""
    9797
    98 #: class-fooevents-calendar.php:2077
     98#: class-fooevents-calendar.php:2081
    9999msgid "When multi-day plugin is active only display the event start day"
    100100msgstr ""
    101101
    102 #: class-fooevents-calendar.php:2081
     102#: class-fooevents-calendar.php:2085
    103103msgid "Enable full day events"
    104104msgstr ""
    105105
    106 #: class-fooevents-calendar.php:2085
     106#: class-fooevents-calendar.php:2089
    107107msgid "Removes event time from calendar entry titles."
    108108msgstr ""
    109109
    110 #: class-fooevents-calendar.php:2089
     110#: class-fooevents-calendar.php:2093
    111111msgid "Calendar theme"
    112112msgstr ""
    113113
    114 #: class-fooevents-calendar.php:2095 class-fooevents-calendar.php:2111
     114#: class-fooevents-calendar.php:2099 class-fooevents-calendar.php:2115
    115115msgid "Default"
    116116msgstr ""
    117117
    118 #: class-fooevents-calendar.php:2096
     118#: class-fooevents-calendar.php:2100
    119119msgid "Light"
    120120msgstr ""
    121121
    122 #: class-fooevents-calendar.php:2097
     122#: class-fooevents-calendar.php:2101
    123123msgid "Dark"
    124124msgstr ""
    125125
    126 #: class-fooevents-calendar.php:2098
     126#: class-fooevents-calendar.php:2102
    127127msgid "Flat"
    128128msgstr ""
    129129
    130 #: class-fooevents-calendar.php:2099
     130#: class-fooevents-calendar.php:2103
    131131msgid "Minimalist"
    132132msgstr ""
    133133
    134 #: class-fooevents-calendar.php:2101
     134#: class-fooevents-calendar.php:2105
    135135msgid "Selects calendar theme to be used on Wordpress frontend."
    136136msgstr ""
    137137
    138 #: class-fooevents-calendar.php:2105
     138#: class-fooevents-calendar.php:2109
    139139msgid "Events list theme"
    140140msgstr ""
    141141
    142 #: class-fooevents-calendar.php:2112
     142#: class-fooevents-calendar.php:2116
    143143msgid "Light Card"
    144144msgstr ""
    145145
    146 #: class-fooevents-calendar.php:2113
     146#: class-fooevents-calendar.php:2117
    147147msgid "Dark Card"
    148148msgstr ""
    149149
    150 #: class-fooevents-calendar.php:2115
     150#: class-fooevents-calendar.php:2119
    151151msgid "Selects events list theme to be used on Wordpress frontend."
    152152msgstr ""
  • fooevents-calendar/trunk/fooevents-calendar.php

    r2505115 r2514156  
    44 * Plugin Name: Events Calendar for FooEvents
    55 * Description: Add event information to any post, page or custom post type and display it in a stylish calendar.
    6  * Version: 1.6.11
     6 * Version: 1.6.15
    77 * Author: FooEvents
    88 * Plugin URI: https://www.fooevents.com/fooevents-calendar/
  • fooevents-calendar/trunk/readme.txt

    r2505115 r2514156  
    44Requires at least: 5
    55Tested up to: 5.7
    6 Stable tag: 1.6.11
     6Stable tag: 1.6.15
    77License: GPLv2
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    158158== Changelog ==
    159159
     160= 1.6.15 =
     161* FIXED: Added non-product check to processing *
     162* FIXED: PHP version number warnings in script methods *
     163* ADDED: Global start date option now has settings for Calendar, Event List, Both or Disabled *
     164* FIXED: Various small bugs *
     165* TESTED ON: WordPress 5.7 and WooCommerce 5.1.0 *
     166
    160167= 1.6.11 =
    161168* FIXED: Bug where select dates not working on non-product event *
  • fooevents-calendar/trunk/updatelog.txt

    r2505115 r2514156  
    33
    44------------------
     51.6.15
     6FIXED: Added non-product check to processing
     7FIXED: PHP version number warnings in script methods
     8ADDED: Global start date option now has settings for Calendar, Event List, Both or Disabled
     9FIXED: Various small bugs
     10TESTED ON: WordPress 5.7 and WooCommerce 5.1.0
     11
    5121.6.11
    6 FIXED: Bug where select dates not working on non=product event
     13FIXED: Bug where select dates not working on non-product event
    714TESTED ON: WordPress 5.7 and WooCommerce 5.1.0
    815
Note: See TracChangeset for help on using the changeset viewer.