Forum Replies Created

Viewing 15 replies - 1 through 15 (of 1,295 total)
  • Plugin Author András Guseo

    (@aguseo)

    Hi @rpiket

    Yes, I know. I’m currently evaluating my options for the future.

    A.

    Plugin Author András Guseo

    (@aguseo)

    Great job @rpiket!

    Unfortunately, I have to close this plugin. Thank you for your support.

    Plugin Author András Guseo

    (@aguseo)

    ❤️

    Plugin Author András Guseo

    (@aguseo)

    Hi @rpiket and thanks for reaching out!

    There is no built-in function to do that, but you could easily use the save_post_{$post->post_type} hook of WordPress.
    Link: https://developer.ww.wp.xz.cn/reference/hooks/save_post_post-post_type/

    Something like:

    
    add_action( 'save_post_gigpress_show', 'create_post_with_show', 20, 3 );
    
    function create_post_with_show( $show_id, $show, $update ) {
          // Bail on autosaves, revisions, and trash transitions.
          if ( wp_is_post_autosave( $show_id ) || wp_is_post_revision( $show_id ) ) {
              return;
          }
          if ( in_array( $show->post_status, [ 'auto-draft', 'trash', 'inherit' ], true ) ) {
              return;
          }
    
          // Avoid recursion when wp_insert_post / wp_update_post fires save_post.
          remove_action( 'save_post_gigpress_show', 'gpr_companion_post_sync', 20 );
    
          // DO YOUR STUFF HERE
    
          add_action( 'save_post_gigpress_show', 'gpr_companion_post_sync', 20, 3 );
    }
    

    I hope this helps. Let me know if you have any further questions, or if we can close this as resolved.

    Cheers,
    Andras

    Plugin Author András Guseo

    (@aguseo)

    Thank you @abzlevelup, I appreciate the feedback!

    Plugin Contributor András Guseo

    (@aguseo)

    Hi @artificialart

    Thank you for taking the time to share your feedback regarding The Events Calendar. We take all security concerns very seriously and want to address the issues you’ve raised.

    Security is a top priority at StellarWP, and we maintain rigorous standards to protect our users. Currently we have no known open security vulnerabilities or publicly reported security issues with The Events Calendar. The WordFence report (on June 6) you referenced shows that as well.

    Regarding the Config Server Exploit scanner results you mentioned, it’s important to note that automated security scanners can produce false positives. We recommend cross-referencing scanner results with multiple tools and, when possible, manual verification by security professionals.

    We understand the frustration and time investment you’ve experienced, and we genuinely want to help resolve any legitimate security concerns. If you still believe there is a security vulnerability, we kindly ask that you report those to us in a responsible manner on our Bug Bounty Program page so we can investigate without putting users’ sites in the target.

    Thank you!

    Plugin Contributor András Guseo

    (@aguseo)

    Hi @geh39

    Hmmm… that’s weird. It shouldn’t be stuck on Loading, it should progress and either tell you to upgrade the data or that you don’t have to do anything. And it definitely should create the tables.

    If you are still in the setup phase and don’t have any events, then try rerunning the above process, and also include deleting the tribe_events_calendar_options entry from the wp_options table. This will remove the main calendar settings, and when you activate TEC it will take it as a brand-new installation and should create the custom tables. Also, data migration will not be necessary, and the upgrade option should not show up on the settings page.

    A.

    Plugin Contributor András Guseo

    (@aguseo)

    Hi @geh39,

    Please try the following:

    • Backup the database, just in case.
    • In the wp_options table look for the option names starting with tec_ct1_, specifically
    • tec_ct1_migration_state
    • tec_ct1_occurrences_field_schema_version
    • tec_ct1_events_field_schema_version
    • tec_ct1_occurrences_table_schema_version
    • tec_ct1_events_table_schema_version
    • tec_ct1_series_relationship_table_schema_version (this might only come with ECP so you might not find it)
    • Delete these options
    • Disable TEC
    • Enable TEC
    • Go to Events > Settings
    • Look for the Upgrade tab and run the migration. (Screenshot)

    The migration should be fast because there are only a few or no events.
    This process should create the missing tables.

    Let us know if this helps solve the issue.

    Cheers,
    Andras

    Plugin Contributor András Guseo

    (@aguseo)

    Hi @peter8nss

    Thanks for reaching out!

    start_date is not a valid parameter. You could use the following instead:
    * event_date
    * _EventStartDate or _EventStartDateUTC – yeah, basically the meta key.
    * _EventEndDate or _EventEndDateUTC

    Full example:
    $events = tribe_events()->where( 'starts_on_or_after', '2024-09-01' )->order_by( 'event_date', 'ASC' )->get_ids();

    Hope this helps.

    Cheers,
    Andras

    Plugin Contributor András Guseo

    (@aguseo)

    Hi @webrightnow

    We really appreciate the correction here.

    I understand you’re where you’re coming from and I will forward your feedback to our products team.

    While the free version of The Events Calendar doesn’t offer any shortcodes out of the box, there are a few free 3rd-party plugins in the repository here that can help you get started if you decide to give TEC another try.

    Cheers,
    Andras

    Plugin Contributor András Guseo

    (@aguseo)

    Hi @webrightnow

    Thanks for taking the time to leave a review here.
    I wanted to offer some clarification. Shortcodes were always part of Events Calendar Pro, and they were never part of the free version. Nothing changed on this front. Also, when we make a feature free, it stays free always.

    Could you please clarify what you mean by calendar embeds? The Events Calendar never offered a “calendar embed” functionality, unless you mean the shortcodes.

    I don’t see any topics opened by you for The Events Calendar. However, I see that you recently opened a support thread for a different calendar plugin, My Calendar. Was this review intended for that plugin maybe?

    Thanks for helping to clarify this, I really appreciate it!

    Cheers,
    Andras

    Plugin Contributor András Guseo

    (@aguseo)

    Hi @clementineseite

    That doesn’t sound good. We’d be happy to help you fix this.
    Could you send some more details about the issue? Here’s what would help:
    * A screenshot about how the event, specifically the price is set up.
    * A screenshot about how it looks like on the front-end, or a URL to your calendar.
    * Do you have any tickets and RSVPs set up for the event?

    Thanks,
    Andras

    Plugin Contributor András Guseo

    (@aguseo)

    Hey @stefan-m-1

    Thanks for your feedback. We hear ya! We are already aware of this issue and a fix will come soon, hang in there!

    We’d also love to hear what you like about our plugins and what your rating would be without this banner issue. I also think that would benefit the community as well.

    Thanks and hoping to hear more from you!

    Cheers,
    Andras

    Plugin Contributor András Guseo

    (@aguseo)

    Hey @legallth

    Thanks for leaving a review here. We’d love to help you with your calendar questions; we can do that in the support threads, not here, in the review section. Be so kind and open a thread and we’ll be happy to help you out.

    To get you started, month navigation to the future only works if there are future events in your calendar. If this does not cover your case, then we’ll be happy to help you in the official support channels for our free and premium users, in hopes of getting and extra star or two. 🙂

    Cheers,
    Andras

    Plugin Contributor András Guseo

    (@aguseo)

    Hi @minicc

    We appreciate you using our products and leaving a review here.

    I hear you, a plugin with broken functionality is not a good one. We would love to get a chance to help you and your customers. I haven’t been able to find any support threads from you here or in our premium support channel.

    Since this is a place for reviews and not for support, please open a ticket with the details of your issue and our team will be happy to help you, and give you a better calendar experience.

    Looking forward to helping you out!

    Cheers,
    Andras

Viewing 15 replies - 1 through 15 (of 1,295 total)