Title: itld's Replies | WordPress.org

---

# itld

  [  ](https://wordpress.org/support/users/itld/)

 *   [Profile](https://wordpress.org/support/users/itld/)
 *   [Topics Started](https://wordpress.org/support/users/itld/topics/)
 *   [Replies Created](https://wordpress.org/support/users/itld/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/itld/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/itld/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/itld/engagements/)
 *   [Favorites](https://wordpress.org/support/users/itld/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 21 total)

1 [2](https://wordpress.org/support/users/itld/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/itld/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Event Tickets and Registration] Event Tickets and Registration Plugin Disappeared.](https://wordpress.org/support/topic/event-tickets-and-registration-plugin-disappeared/)
 *  [itld](https://wordpress.org/support/users/itld/)
 * (@itld)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/event-tickets-and-registration-plugin-disappeared/#post-18790780)
 * if ( function_exists( ‘tribe_is_rsvp_event’ ) ) {
 * is NOT at .. \wp-content\plugins\event-tickets
 * WP 6.9 ET 5.27.3 TEC 6.15.14
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Event Tickets and Registration] Event Tickets and Registration Plugin Disappeared.](https://wordpress.org/support/topic/event-tickets-and-registration-plugin-disappeared/)
 *  [itld](https://wordpress.org/support/users/itld/)
 * (@itld)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/event-tickets-and-registration-plugin-disappeared/#post-18790612)
 * Hello ALL !
 * if ( ! function_exists( ‘tribe_has_tickets’ ) ) {
   add_action( ‘admin_notices’,
   function () {
 * but don’t get function “tribe_has_tickets” .
 * I’m try by help AI , but not succesfull.
 * In events I see fields – Tickets & RSVP , and even add Tickets&RSVP
 * (testing now on localhost PHP 8.2 TEC 6.5.13.1 ET 5.27.3)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] tribe_get_ical_link](https://wordpress.org/support/topic/tribe_get_ical_link/)
 *  Thread Starter [itld](https://wordpress.org/support/users/itld/)
 * (@itld)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/tribe_get_ical_link/#post-18789460)
 * WOW!! )) working on server
 * [https://expo77.ru/events/](https://expo77.ru/events/)**list/?ical=1&custom=1&
   start_date=2026-05-01&end_date=2026-05-10**
 * so working by &Category=slug
 * and will be nice if exist select by Venue & Organizers ))
 *  Very Thank you !
 * localhost – not main
    -  This reply was modified 3 months, 3 weeks ago by [itld](https://wordpress.org/support/users/itld/).
      Reason: add new
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] tribe_get_ical_link](https://wordpress.org/support/topic/tribe_get_ical_link/)
 *  Thread Starter [itld](https://wordpress.org/support/users/itld/)
 * (@itld)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/tribe_get_ical_link/#post-18789444)
 * I reinstall again and get 
   **Deprecated**: Constant FILTER_SANITIZE_STRING is
   deprecated in **C:\xampp\htdocs\domains\Expo77\wp-content\plugins\tec-labs-advanced-
   ical-export-v2\src\Tec\Plugin.php** on line **262****Deprecated**: Constant FILTER_SANITIZE_STRING
   is deprecated in **C:\xampp\htdocs\domains\Expo77\wp-content\plugins\tec-labs-
   advanced-ical-export-v2\src\Tec\Plugin.php** on line **263**
 * and etc …..
 * + get .ICS
 * BEGIN:VEVENT
   DTSTART;TZID=Europe/Moscow:20251205T093000DTEND;TZID=Europe/Moscow:
   20260308T233000
 * although filtr is [start_date=2026-03-01&end_date=2026-03-10](http://localhost/domains/Expo/events/?ical=1&custom=1&start_date=2026-03-01&end_date=2026-03-10)
   or any others
 * my PHP Version 8.2.12
 * TEC 6.15.13.1
 * v2 1.1.1
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] tribe_get_ical_link](https://wordpress.org/support/topic/tribe_get_ical_link/)
 *  Thread Starter [itld](https://wordpress.org/support/users/itld/)
 * (@itld)
 * [3 months, 3 weeks ago](https://wordpress.org/support/topic/tribe_get_ical_link/#post-18785639)
 * help arrived on time))
 * I made any changing (as say AI)
 * >     ```wp-block-code
   >     OLD private function getVars_old() {$filters = ['ical' => FILTER_SANITIZE_NUMBER_INT,'custom' => FILTER_SANITIZE_STRING,'start_date' => FILTER_SANITIZE_STRING,'end_date' => FILTER_SANITIZE_STRING,'limit' => FILTER_SANITIZE_NUMBER_INT,'year' => FILTER_SANITIZE_NUMBER_INT,'category' => FILTER_SANITIZE_STRING,];    $vars = filter_input_array( INPUT_GET, $filters );    return $vars;}NEW private function getVars() {$filters = [    'ical'       => FILTER_SANITIZE_NUMBER_INT,    'custom'     => FILTER_UNSAFE_RAW, // замена FILTER_SANITIZE_STRING    'start_date' => FILTER_UNSAFE_RAW, // замена FILTER_SANITIZE_STRING    'end_date'   => FILTER_UNSAFE_RAW, // замена FILTER_SANITIZE_STRING    'limit'      => FILTER_SANITIZE_NUMBER_INT,    'year'       => FILTER_SANITIZE_NUMBER_INT,    'category'   => FILTER_UNSAFE_RAW, // замена FILTER_SANITIZE_STRING];$vars = filter_input_array(INPUT_GET, $filters);return $vars;
   >     ```
   > 
   > }
 * but I still don’t get the selection I need.
 * [http://localhost/domains/Expo/events/](http://localhost/domains/Expo/events/)**?
   ical=1&&custom=1&start_date=2026-02-01&end_date=2026-02-10**
 * the same (other data)
 * [http://localhost/domains/Expo/events/?ical=1&&custom=1&start_date=2026-03-01&end_date=2026-03-10](http://localhost/domains/Expo77/events/?ical=1&&custom=1&start_date=2026-02-01&end_date=2026-02-10)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[The Events Calendar] Calendar Embeds . URL with target=_blank](https://wordpress.org/support/topic/calendar-embeds-url-with-target_blank/)
 *  Thread Starter [itld](https://wordpress.org/support/users/itld/)
 * (@itld)
 * [6 months ago](https://wordpress.org/support/topic/calendar-embeds-url-with-target_blank/#post-18715707)
 * Calendar Embeds is a great option, without a doubt.
 * I wanted to put a calendar on the main page, but I couldn’t. Of course, it worked
   through Embeds, but the frame on the main page, when going to an event on my 
   site, calls header twice.
 * That’s why I asked how to add target=_blank to links.
 * Maybe it will change the site a lot and I will refrain from it.
 * Thank you very much.
 * Best regards, Andrew
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fullwidth Templates for Any Theme & Page Builder] ListingHive](https://wordpress.org/support/topic/listinghive/)
 *  Thread Starter [itld](https://wordpress.org/support/users/itld/)
 * (@itld)
 * [10 months, 4 weeks ago](https://wordpress.org/support/topic/listinghive/#post-18515878)
 * Fine Aradny for support !
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fullwidth Templates for Any Theme & Page Builder] ListingHive](https://wordpress.org/support/topic/listinghive/)
 *  Thread Starter [itld](https://wordpress.org/support/users/itld/)
 * (@itld)
 * [10 months, 4 weeks ago](https://wordpress.org/support/topic/listinghive/#post-18514588)
 * Hello Aradny ! )
 * I’m try FullWidth on Hotel77.ru ( on ListingHive so) – working.
 * Now I found direct css styles for ListingHive + Tribe Events Calendar
 * and get 100% .
 * I think it was other case .
 * Best regards
 *  Andrew ))
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Recall - Registration, Profile, Commerce & More] ДеИнсталяция](https://wordpress.org/support/topic/%d0%b4%d0%b5%d0%b8%d0%bd%d1%81%d1%82%d0%b0%d0%bb%d1%8f%d1%86%d0%b8%d1%8f/)
 *  Thread Starter [itld](https://wordpress.org/support/users/itld/)
 * (@itld)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/%d0%b4%d0%b5%d0%b8%d0%bd%d1%81%d1%82%d0%b0%d0%bb%d1%8f%d1%86%d0%b8%d1%8f/#post-17343281)
 * В файлах поиском на хостинге ничего не нашлось
 * Сначала нашел в БД таким образом
 * [SELECT](https://cp3.webhost1.ru/u800976/phpmyadmin/url.php?url=https://dev.mysql.com/doc/refman/8.0/en/select.html)*
   FROM `*********`.`wp_postmeta` WHERE (CONVERT(`meta_id` USING utf8) [LIKE](https://cp3.webhost1.ru/u800976/phpmyadmin/url.php?url=https://dev.mysql.com/doc/refman/8.0/en/string-comparison-functions.html%23operator_like)‘%
   cropped-1-32×32.png%’ [OR](https://cp3.webhost1.ru/u800976/phpmyadmin/url.php?url=https://dev.mysql.com/doc/refman/8.0/en/logical-operators.html%23operator_or)
   CONVERT(`post_id` USING utf8) [LIKE](https://cp3.webhost1.ru/u800976/phpmyadmin/url.php?url=https://dev.mysql.com/doc/refman/8.0/en/string-comparison-functions.html%23operator_like)‘%
   cropped-1-32×32.png%’ [OR](https://cp3.webhost1.ru/u800976/phpmyadmin/url.php?url=https://dev.mysql.com/doc/refman/8.0/en/logical-operators.html%23operator_or)
   CONVERT(`meta_key` USING utf8) [LIKE](https://cp3.webhost1.ru/u800976/phpmyadmin/url.php?url=https://dev.mysql.com/doc/refman/8.0/en/string-comparison-functions.html%23operator_like)‘%
   cropped-1-32×32.png%’ [OR](https://cp3.webhost1.ru/u800976/phpmyadmin/url.php?url=https://dev.mysql.com/doc/refman/8.0/en/logical-operators.html%23operator_or)
   CONVERT(`meta_value` USING utf8) [LIKE](https://cp3.webhost1.ru/u800976/phpmyadmin/url.php?url=https://dev.mysql.com/doc/refman/8.0/en/string-comparison-functions.html%23operator_like)‘%
   cropped-1-32×32.png%’)
 * meta_key _wp_attachment_metadata
 * meta_value a:5:{s:5:”width”;i:512;s:6:”height”;i:512;s:4:”file”;s:33:”**rcl-uploads/
   avatars/cropped-1.png**“;s:5:”sizes”;a:11:{s:6:”medium”;a:4:{s:4:”file”;s:21:”
   cropped-1-300×300.png”;s:5:”width”;i:300;s:6:”height”;i:300;s:9:”mime-type”;s:
   9:”image/png”;}s:9:”thumbnail”;a:4:{s:4:”file”;s:21:”cropped-1-150×150.png”;s:
   5:”width”;i:150;s:6:”height”;i:150;s:9:”mime-type”;s:9:”image/png”;}s:17:”**rcl-
   product-thumb”**;a:4:{s:4:”file”;s:21:”cropped-1-350×350.png”;s:5:”width”;i:350;
   s:6:”height”;i:350;s:9:”mime-type”;s:9:”image/png”;}s:15:”hp_square_small”;a:
   4:{s:4:”file”;s:21:”cropped-1-400×400.png”;s:5:”width”;i:400;s:6:”height”;i:400;
   s:9:”mime-type”;s:9:”image/png”;}s:18:”hp_landscape_small”;a:4:{s:4:”file”;s:
   21:”cropped-1-400×300.png”;s:5:”width”;i:400;s:6:”height”;i:300;s:9:”mime-type”;
   s:9:”image/png”;}s:17:”ht_portrait_small”;a:4:{s:4:”file”;s:21:”cropped-1-400
   ×512.png”;s:5:”width”;i:400;s:6:”height”;i:512;s:9:”mime-type”;s:9:”image/png”;}
   s:18:”ht_landscape_large”;a:4:{s:4:”file”;s:21:”cropped-1-512×450.png”;s:5:”width”;
   i:512;s:6:”height”;i:450;s:9:”mime-type”;s:9:”image/png”;}s:13:”site_icon-270″;
   a:4:{s:4:”file”;s:21:”cropped-1-270×270.png”;s:5:”width”;i:270;s:6:”height”;i:
   270;s:9:”mime-type”;s:9:”image/png”;}s:13:”site_icon-192″;a:4:{s:4:”file”;s:21:”
   cropped-1-192×192.png”;s:5:”width”;i:192;s:6:”height”;i:192;s:9:”mime-type”;s:
   9:”image/png”;}s:13:”site_icon-180″;a:4:{s:4:”file”;s:21:”cropped-1-180×180.png”;
   s:5:”width”;i:180;s:6:”height”;i:180;s:9:”mime-type”;s:9:”image/png”;}s:12:”site_icon-
   32″;a:4:{s:4:”file”;s:19:”cropped-1-32×32.png”;s:5:”width”;i:32;s:6:”height”;
   i:32;s:9:”mime-type”;s:9:”image/png”;}}s:10:”image_meta”;a:12:{s:8:”aperture”;
   s:1:”0″;s:6:”credit”;s:0:””;s:6:”camera”;s:0:””;s:7:”caption”;s:0:””;s:17:”created_timestamp”;
   s:1:”0″;s:9:”copyright”;s:0:””;s:12:”focal_length”;s:1:”0″;s:3:”iso”;s:1:”0″;
   s:13:”shutter_speed”;s:1:”0″;s:5:”title”;s:0:””;s:11:”orientation”;s:1:”0″;s:
   8:”keywords”;a:0:{}}}
 * А потом расширил поиск по всем аватаркам
 * _rcl-uploads/avatars/cropped_ нашлось в
 * **wp_nextend2_image_storage**
 * **wp_nextend2_smartslider3_slides**
 * **wp_postmeta** 2 раза
 * **wp_posts** 4 раза
 * **wp_rank_math_404_logs** 4 раза (это как следствие того что есть)
 * Так что не можно руками в таблицы сиё написать ))
 * Осталось дело за малым – как все это почистить . Желательно конечно не руками.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Recall - Registration, Profile, Commerce & More] ДеИнсталяция](https://wordpress.org/support/topic/%d0%b4%d0%b5%d0%b8%d0%bd%d1%81%d1%82%d0%b0%d0%bb%d1%8f%d1%86%d0%b8%d1%8f/)
 *  Thread Starter [itld](https://wordpress.org/support/users/itld/)
 * (@itld)
 * [2 years, 3 months ago](https://wordpress.org/support/topic/%d0%b4%d0%b5%d0%b8%d0%bd%d1%81%d1%82%d0%b0%d0%bb%d1%8f%d1%86%d0%b8%d1%8f/#post-17341674)
 * Благодарю Вас . Понял .
 * Наскоком через Total Commander сразу не получилось ( не поддерживается такой 
   поиск)
 * Попробую иначе .
 * О результатах сообщу.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Recall - Registration, Profile, Commerce & More] ДеИнсталяция](https://wordpress.org/support/topic/%d0%b4%d0%b5%d0%b8%d0%bd%d1%81%d1%82%d0%b0%d0%bb%d1%8f%d1%86%d0%b8%d1%8f/)
 *  Thread Starter [itld](https://wordpress.org/support/users/itld/)
 * (@itld)
 * [2 years, 4 months ago](https://wordpress.org/support/topic/%d0%b4%d0%b5%d0%b8%d0%bd%d1%81%d1%82%d0%b0%d0%bb%d1%8f%d1%86%d0%b8%d1%8f/#post-17331208)
 * header.php чистый как душа младенца
 *     ```wp-block-code
       <head>
       <meta charset="<?php bloginfo( 'charset' ); ?>">
       <meta name="viewport" content="width=device-width, initial-scale=1">
       <?php wp_head(); ?>
       <meta name="google-site-verification" content="" />
       <meta name="yandex-verification" content="" />
       </head>
       ```
   
 * Чтобы написать вручную – нужно знать структуру файлов RCL как минимум .
 *  где-то автоматом прописалось …
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPAdverts - Classifieds Plugin] advert_category](https://wordpress.org/support/topic/advert_category/)
 *  Thread Starter [itld](https://wordpress.org/support/users/itld/)
 * (@itld)
 * [6 years ago](https://wordpress.org/support/topic/advert_category/#post-12683659)
 * Hello Greg !
 * It seems I found reason 🙂
 * in custom theme need only FULL TXT , not anonse .
    Then select category shows
   right adverts
 * So , in this case get 1/2 screen :
    for example see please [https://dom16.ru](https://dom16.ru)(
   FULL) and [https://dom16.ru/adverts/](https://dom16.ru/adverts/) or [https://dom16.ru/advert-category/diff/](https://dom16.ru/advert-category/diff/)(
   1/2)
 * Best regards
    Andrew
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPAdverts - Classifieds Plugin] advert_category](https://wordpress.org/support/topic/advert_category/)
 *  Thread Starter [itld](https://wordpress.org/support/users/itld/)
 * (@itld)
 * [6 years ago](https://wordpress.org/support/topic/advert_category/#post-12682784)
 * Hello again !
 * I’m try dom16.ru the same – OK.
 * Of course exist many questions ,
    but “Way win going Man” (~ Дорогу осилит идущий)
 * So , Thank you for support .
 * Best regards
    Andrew
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WPAdverts - Classifieds Plugin] advert_category](https://wordpress.org/support/topic/advert_category/)
 *  Thread Starter [itld](https://wordpress.org/support/users/itld/)
 * (@itld)
 * [6 years ago](https://wordpress.org/support/topic/advert_category/#post-12682337)
 * Hello !
 * Very Glad for you fast answer
 * now I’m delete Extended and get in widget
    advert-category instead advert_category
 * I think so 🙂
    dom37.ru/wp-login.php support or support37 at reklama.tel qwas12
 * Working as you want.
    You can break at all even , dont worry .
 * Best regards
    Andrew
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[RSS Feed Retriever] Test RSS](https://wordpress.org/support/topic/test-rss/)
 *  Thread Starter [itld](https://wordpress.org/support/users/itld/)
 * (@itld)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/test-rss/#post-12458667)
 * Testing RSS [https://olympic.ru/feed/](https://olympic.ru/feed/)
 * get Error
 * > Fatal error: Uncaught Error: Call to undefined method WP_Error::**enable_order_by_date()**
   > in /home/bilet/reklama.tel/html/wp-content/plugins/wp-rss-retriever/inc/classes/
   > RSS_Retriever_Feed.php:55 Stack trace: #0 /home/bilet/reklama.tel/html/wp-content/
   > plugins/wp-rss-retriever/inc/classes/RSS_Retriever_Feed.php(25): RSS_Retriever_Feed-
   > >retrieve_feed() #1 /home/bilet/reklama.tel/html/wp-content/plugins/wp-rss-
   > retriever/wp-rss-retriever.php(93): RSS_Retriever_Feed->__construct(Array) #
   > 2 /home/bilet/reklama.tel/html/wp-includes/shortcodes.php(325): wp_rss_retriever_func(
   > Array, ”, ‘wp_rss_retrieve…’) #3 [internal function]: do_shortcode_tag(Array)#
   > 4 /home/bilet/reklama.tel/html/wp-includes/shortcodes.php(199): preg_replace_callback(‘/\\[(\\[?)(
   > wp_rss…’, ‘do_shortcode_ta…’, ‘[wp_rss_retriev…’) #5 /home/bilet/reklama.tel/
   > html/wp-content/plugins/php-everywhere/shortcode.php(15) : eval()’d code(53):
   > do_shortcode(‘[wp_rss_retriev…’) #6 /home/bilet/reklama.tel/html/wp-content/
   > plugins/php-everywhere/shortcode.php(15): eval() in /home/bilet/reklama.tel/
   > html/wp-content/plugins/wp-rss-retriever/inc/classes/RSS_Retriever_Feed.php
   > on line 55

Viewing 15 replies - 1 through 15 (of 21 total)

1 [2](https://wordpress.org/support/users/itld/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/itld/replies/page/2/?output_format=md)