Cliff

Forum Replies Created

Viewing 15 posts - 8,191 through 8,205 (of 10,686 total)
  • Author
    Posts
  • in reply to: Assigning Event to Another Author #1142183
    Cliff
    Member

    Welcome to WordPress customizing!

    Best practice for adding custom code (like to implement a PHP snippet to modify The Events Calendar) is to create a functionality plugin, unless it’s something specific to your theme, in which case best practice is to make sure you’re using a child theme, then add the customization to your child theme’s functions.php file.

    You definitely should NOT touch/copy/anything with the /wp-includes/user.php file.

    You should simply copy the code snippet I provided into either a functionality plugin or your child theme’s functions.php file.

    As always, you should consider all code you enter into your site (i.e. no guarantees from us).

    I hope this information helps!

    Cliff
    Member

    Sallé, I believe I understand what you’re asking for, but we’re limited in helping with customizations, per our Scope of Support / Terms. However, I can try to help point you in the right direction.

    You can checkout the code in one or both of these files:

    • /wp-content/plugins/event-tickets-plus/src/views/tickets-plus/orders-edit-meta.php
    • /wp-content/plugins/event-tickets-plus/src/views/tickets-plus/orders-tickets.php

    You or your developer should be able to figure out how to get what you’re wanting.

    I hope this information points you in the right direction!

    in reply to: problem with quantity selector #1142145
    Cliff
    Member

    i have been able to work out a solution by changing the Class for the quantity input

    Your screenshot shows div.quantity still so I didn’t follow what you were saying.

    ===

    I previously stated that the CSS affecting your arrows is from your theme.

    ===

    Again, you’ll need to figure this out on your own or with the help of your developer or theme support.

    in reply to: Orders No Longer Being Automatically ‘Processed’ #1142144
    Cliff
    Member

    Turns out there’s a bug logged internally that this setting isn’t working for some users, but we haven’t been able to reproduce it.

    You might want to try this snippet and see if it works.

    I’ll mark this ticket as Pending Fix, which means this thread should receive a reply once the applicable fix has been released. I cannot guarantee when it will be fixed as it’s in the development team’s hands now. They need to assign it, code it, test it, and schedule it for release.

    Please note that even if this thread gets closed due to inactivity (automatically happens after a couple weeks), this thread should still get a reply added if/when the fix is released.

    I apologize for this issue and appreciate your understanding and patience.

    in reply to: Genesis + Jetpack + Publicize #1142095
    Cliff
    Member

    Very glad to hear that. I’ve suggested some updates to our Jetpack help article. Thanks for helping us improve.

    in reply to: Assigning Event to Another Author #1142091
    Cliff
    Member

    Hi Michael. Thanks for all that information.

    I tried getting it to work via capabilities (similar to how you did) and couldn’t get it working either.

    I believe the author box comes from this code in WordPress core: https://github.com/WordPress/WordPress/blob/4.5.3/wp-admin/edit-form-advanced.php#L310-L313

    Anyway, here’s a code snippet that will make it so ANY registered user of any role/capability will be selectable via the Author metabox on the wp-admin edit screens (not just for Events).

    function expand_author_selection_list( array $user_args ) {
    $user_args[ 'who' ] = '';
    return $user_args;
    }
    add_filter( 'wp_dropdown_users_args', 'expand_author_selection_list' ); // https://developer.wordpress.org/reference/hooks/wp_dropdown_users_args/

    I hope this helps you get closer to what you’re wanting. If you need some coding help, you may want to ask your developer or reference our list of known customizers.

    Cliff
    Member

    Glad to hear! Have a great rest of your week.

    in reply to: Re: Code for Events to list in Sensei Course #1141782
    Cliff
    Member

    Hi Jeremy. Thanks for your business.

    I believe you’re referring to this existing feature request.

    As it’s our most requested feature, we’re working hard to get it implemented. Unfortunately we cannot provide ETAs, but my strong hunch is that it’ll be sometime this year (maybe sooner than you expect). Again, no guarantees as it’s in the development team’s hands. Their process is to assign it, code it, test it, and schedule it for release.

    Please do add your vote to that existing feature request if you haven’t already, and make sure to keep an eye on our Release Notes.

    Let me know if you have any follow-up questions.

    in reply to: recurring events #1141781
    Cliff
    Member

    Hi Brady. Thanks for your interest in our product suite!

    Our paid Pro add-on is the only way to get recurring events functionality for The Events Calendar.

    If you have both Pro and our Community Events add-on, then your users who submit events via your Community Events front-end form will be able to create recurring events.

    Last but not least, we have a pretty great Refund Policy so you can buy one or many of our add-ons and thoroughly test them.

    Let me know if you have any follow-up questions.

    in reply to: Reoccurring Events #1141780
    Cliff
    Member

    Hi Samuel. Thanks for your interest in our product suite!

    Our paid Pro add-on is the only way to get recurring events functionality for The Events Calendar.

    If you have both Pro and our Community Events add-on, then your users who submit events via your Community Events front-end form will be able to create recurring events.

    Last but not least, we have a pretty great Refund Policy so you can buy one or many of our add-ons and thoroughly test them.

    Let me know if you have any follow-up questions.

    in reply to: Genesis + Jetpack + Publicize #1141779
    Cliff
    Member

    Hi Antonio.

    To be clear, the Jetpack “Sharing” and “Publicize” modules are separate. You can use Sharing without Publicize and vice-versa.

    1) Regarding Sharing not showing up on Event Single pages:

    Please try this code:

    https://gist.github.com/cliffordp/36162128f190563c782c0e029cb915a4

    You could replace tribe_events_single_event_after_the_meta with tribe_events_single_event_before_the_meta if you really do prefer that placement (near the calendar export buttons).

    2) Regarding Publicize not working when publishing/creating new Events:

    I’m using Jetpack on a localhost testing site so I cannot try it out with Publicize, but this should be the code to register our Events custom post type with Jetpack’s Publicize:

    // adapted from https://jetpack.com/support/publicize/#custom-post-types for The Events Calendar
    add_action( 'init', 'tribe_events_work_with_jetpack_publicize' );
    function tribe_events_work_with_jetpack_publicize() {
    add_post_type_support( 'tribe_events', 'publicize' );
    }

    Please let me know how things work out for you.

    in reply to: Organizer not showing up #1141777
    Cliff
    Member

    Hi Jay and Melanie. Thanks for all that information.

    For your reference, that code snippet looks to be from our Remove end time for events KB article (although I didn’t double check it to be exactly the same).

     

    Regarding, “She is also having a problem where she is inputting hyper links into the main content area and when the update button is clicked the hyper link is gone but the text is still there,” are you referring to the TinyMCE content editor for the Event Description area in wp-admin? Please also demonstrate this issue in your video.

    I’ve tried to replicate your reported issues on my local testing site but haven’t been able to. Here’s a video of my trying: https://cl.ly/151x1P3m0W2g

    Maybe you could provide a video of your trying, so I can see if there are any differences in our approaches.

    Thank you again for your efforts.

    in reply to: Fatal error #1141776
    Cliff
    Member

    Hi. Thank you for your information and effort. FYI: We try to never login to customers’ sites (and especially to never change data).

    Could you please try this code snippet and let me know the results (a screenshot and a copy/paste would be good) when viewing your site’s front/home page?

    You shouldn’t need to activate TEC or TEC PRO for the snippet to work, but it should tell you the Post IDs for all events that have recurrence settings.

    I look forward to hearing back from you.

    in reply to: Jquery UI calendar datepicker #1141748
    Cliff
    Member

    Thanks for going through the troubleshooting steps and figuring this out. Have a great rest of your week!

    in reply to: PayPal fees on split sales – Community Tickets #1141746
    Cliff
    Member

    Hi Mike. Thanks for your interest in our Community Tickets product (which requires several of our other products to function).

    There are multiple ways to setup splitting your “take”, which can be $0 to the best of my knowledge.

    Please reference our Split Payments help article for further information.

    Last but not least, we have a pretty great Refund Policy so you can buy one or many of our add-ons and thoroughly test them.

    Let me know if you have any follow-up questions.

Viewing 15 posts - 8,191 through 8,205 (of 10,686 total)