Hunter

Forum Replies Created

Viewing 15 posts - 1,546 through 1,560 (of 4,025 total)
  • Author
    Posts
  • in reply to: Event Updating Incorrectly #1200062
    Hunter
    Moderator

    I also wanted to provide you with a snippet that can be added to your functions.php. It helps clean up the deleted events from your database. As always, make a backup of your database prior to trying it out. Let me know if it helps!

    /*
    * Deletes the saved copy of "deleted" events generated by iCal Importer
    * This allows you to re-import events. The script deletes 50 instances per page load
    * Code by Nico; enhancement by Andras
    */
    function del_deleted_events () {
    $posts = get_posts( array( 'post_type'=>'deleted_event', "posts_per_page" => 50, 'post_status' => 'trash', ) );
    if (!empty($posts)) {
    foreach ($posts as $post) {
    wp_delete_post( $post->ID, true);
    }
    echo '<p style="background-color:yellow;z-index:1;text-align:right;">50 deleted events removed, refresh again';
    } else {
    echo '<p style="background-color:yellow;z-index:1;text-align:right;">Done deleting!';
    }
    }
    add_action( 'admin_init', 'del_deleted_events' );

    in reply to: Event Updating Incorrectly #1200061
    Hunter
    Moderator

    Hello,

    Can you send over your System Information as a private reply? And does this issue still occur with WP Super Cache deactivated? I would fire up a whole new test installation using only our plugins and the default WP theme and try to reproduce the issues you’re having.

    Once you’ve done that, reply back with what you find out. This will clear up any possibility of WP Super Cache or any other plugin causing the conflicts. Thanks and take care.

    in reply to: Limit Excerpt Length on List Widget #1200048
    Hunter
    Moderator

    Hey Michael,

    This kind of code comes from your theme, so I’m really not sure the best way to go about it. We’re unfortunately unable to help with these types of customizations, but you can try adding the following snippet to your theme’s functions.php file and it will increase/decrease your excerpt length. Change the value (20) to whatever character limit fits your situation best.

    function custom_excerpt_length( $length ) {
    return 20;
    }
    add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );

    Best of luck and sorry we can’t do more here. Cheers!

    in reply to: I can't activate my license of Event Aggregator #1200044
    Hunter
    Moderator

    Hello!

    Thank you for your purchase and welcome to our premium plugin support forums! Before we can investigate any further, can you please review our Testing for conflicts guide and reply back with your findings?

    Thank you and have a wonderful evening. Cheers!

    Hunter
    Moderator

    Hi Luis!

    Welcome to our Pre-Sales Questions channel 🙂

    To answer your questions simply – yes! We have included features which enable admins and event organizers to export reports as you’ve described. More details including screenshots of the process admins need to follow to export reports from the back end of your site can be found here.

    If you would like event organizers to have the option of exporting reports for their own events from the front end of your site, you would also need to purchase Community Events and Community Tickets.

    Please let me know if you have any more questions and take care. Cheers!

    Hunter
    Moderator

    Hi Ilama,

    Thank you for posting to our forums 🙂

    We don’t necessarily have a ticker as you describe, but I’ll provide links to Knowledgebase articles relating to shortcodes which might help get you started. I also recommend reviewing our Themer’s Guide to learn how to make and save customizations. We aren’t able to help with these types of requests, but if it gets beyond your level of expertise, we have a list of customizers that can help further assist.

    Best of luck and thanks again. Cheers!

    PRO Widget Shortcodes
    Embedding Calendar Views with the [tribe_events] Shortcode

    Hunter
    Moderator

    Hello Rick 🙂

    Welcome back to the premium plugin forums and sorry to hear you’re experiencing troubles. We have a logged bug report resembling what you’ve described, but in order to confirm the bug is affecting your site, please review our Testing for conflicts guide and reply back with what you learn. If you’re unable to do the testing outlined in the Testing for conflicts guide on your live site, please set up a test environment so you can fully troubleshoot the issue.

    Once I hear back from the testing, we’ll have a better idea on how to solve the conflict. Take care and have a good afternoon. Cheers!

    in reply to: Recurring event not being created into 2017 #1200025
    Hunter
    Moderator

    Hi Bruce,

    Before I attempt to reproduce the behavior on my test site, can you please review our Testing for conflicts guide and reply back with what you learn?

    Once I have the results, we’ll have a better idea on what’s causing the conflict and how to go about addressing it. Thanks and have a good afternoon!

    Hunter
    Moderator

    Hi Valerie,

    Thank you for posting to our Pre-Sales Questions channel. Using Event Tickets and Event Tickets Plus, you could achieve the same ticketing setup you currently have going on other than the authorize.net payment gateway.

    Event Aggregator imports events from Meetup and Facebook, but does not post to either of those sites at this time. We have a feature report logged aimed to publish events from WordPress to Facebook, but I can’t guarantee that it will actually be developed nor give an estimated date on when that would be available if it were to be completed. I added this forum thread to the report which helps increase the likeliness of it coming to fruition. I also recommend visiting our UserVoice Feature Ideas and submitting it as a request.

    Please let me know if I’ve helped answer your questions and have a great afternoon!

    Hunter
    Moderator

    Hi and welcome back 🙂

    There is not any built-in feature which accomplishes what you’ve described at this time, though I see the merit in your request. I invite you to submit your idea to our UserVoice Feature Ideas page.

    We review submissions regularly and use them for inspiration when brainstorming for the next features we plan on including in upcoming feature releases. Sorry I don’t have a better answer for you at this time. You might also want to review our list of customizers as I’m sure someone can help out.

    Best of luck and have a good week. Cheers!

    Hunter
    Moderator

    Sounds great. I’ll close this thread out but feel free to create a new thread should anything else come up. Thanks and take care!

    in reply to: events-admin.js error #1199943
    Hunter
    Moderator

    Hey Rosemary,

    Thank you for the update. I had a feeling your issues might be related to the difference in http and https. You might try a plugin such as SSL Insecure Content Fixer the next time you run into any similar issues to first see if there is a problem with your site setup.

    We actually have a bug relative to ‘TypeError: $(…).bumpdown is not a function‘ which we’re investigating. I’ve added this forum thread to the ticket for the developers to review.

    Thank you again for your patience and I’ll mark this thread as ‘Pending Fix’ until we come up with a patch. Please stay tuned to our Release Notes and the plugin changelogs for more information. Thanks again and let me know if you’ve got any additional questions or comments. Cheers!

    in reply to: Aggregator won’t connect to facebook #1199933
    Hunter
    Moderator

    Hey Kevin,

    Thank you for the thorough response. You do not need Event Tickets Plus for Event Aggregator to work, you just need an active license for Event Aggregator (which you have).

    This one definitely has me a little stumped! Do you see any errors on your server’s error log? Please add the following lines to your site’s wp-config.php file and let me know what you find out.

    define('WP_DEBUG', true);
    define( 'WP_DEBUG_LOG', true );

    Have a good afternoon and thanks again.

    in reply to: Multi-day events from Google Calendar only show as one day #1199920
    Hunter
    Moderator

    This reply is private.

    in reply to: events-admin.js error #1199918
    Hunter
    Moderator

    This reply is private.

Viewing 15 posts - 1,546 through 1,560 (of 4,025 total)