Josh

Forum Replies Created

Viewing 15 posts - 601 through 615 (of 4,178 total)
  • Author
    Posts
  • in reply to: Fields Missing in the Events View #1145604
    Josh
    Participant

    Hey Jessica,

    I took a look at our internal ticket for tracking this particular issue.

    I apologize that you weren’t notified when the fixed was addressed here. It looks like this was addressed in a previous maintenance release, you should be able to update your plugins to the latest versions with this issue resolved.

    Let me know if this helps.

    Thanks!

     

    Josh
    Participant

    Hey Skiwi,

    Thanks for reaching out to us!

    This would be possible for particular views with some customization. However, each view would have a different form of customization to accomplish something like this (you couldn’t paginate the calendar grid view the same way you would the list view). The difference here would be that the month view paginates to specific months while the list view will paginate with “?tribe_paged” results.

    I am limited in the amount of customization support I would be able to provide here. To start, you can take a look at this tutorial (http://www.wpbeginner.com/wp-themes/how-to-add-numeric-pagination-in-your-wordpress-theme/). This wouldn’t be a plug and play solution here but it could be used as a starting point based on the information from that tutorial and the pagination pattern for the list view.

    Alternatively, you can suggest this idea on our UserVoice page for the community to vote on this particular issue.

    Thanks!

    in reply to: Monthly View problem – no progress to next month #1145534
    Josh
    Participant

    Hey Jeremy,

    Thanks for following up here and I’m glad you were able to find the root cause of this particular problem.

    I’ll go ahead and close this thread for now. If you have any further questions or if you see the recurring issue pop back up again, please don’t hesitate to open a new one.

    Thanks!

    in reply to: Custom ticket fields – Attendee information #1145531
    Josh
    Participant

    Hey Michael,

    Thanks for following up here!

    Unfortunately it doesn’t look like there is a simple way to add a description without some code customizations here.

    To help get you pointed in the right direction here, are you planning on having multiple descriptions, multiple fields within a fieldset, or multiple fieldsets throughout the site?

    Thanks!

    Josh
    Participant

    Hey Inbar,

    Thanks for following up here.

    Here is a snippet that you can add to your theme’s functions.php to have the feed no longer indexed:

    
    /**
    * Set a noindex HTTP header on iCal feeds.
    *
    * @param  mixed $passthru (unused)
    * @return mixed
    */
    function set_noindex_on_ical_feeds( $passthru ) {
    header( 'X-Robots-Tag: noindex' );
    return $passthru;
    }
    
    add_filter( 'tribe_events_ical_feed_filename', 'set_noindex_on_ical_feeds' );
    

    Let me know if this helps.

    Thanks!

    in reply to: I want to let event posters sell tickets #1145062
    Josh
    Participant

    Hey Wolfie,

    You can try with our free Event Tickets plugin listed above since you are able to add those to any post type (and I’d imagine that the other plugin would be adding events via a custom post type?).

    You would need to do some customization to allow for a front-end creation of the tickets and link to the way the other event plugin manages that process. However, a customization like that would be something that we wouldn’t be able to provide support for here.

    If you’re able to get the two integrated, the only additional plugin you would need would be the Event Ticket Plus plugin to allow the tickets to be sold.

    Let me know if this helps.

    Thanks!

    Josh
    Participant

    Hey Dean,

    Awesome! I’m glad you were able to use that information and get something like this working.

    Also, thanks for that snippet! I’m sure others will find that very helpful when searching in the future.

    I’ll go ahead and close this thread for now. If you have any further questions, please don’t hesitate to open a new one.

    Thanks!

    in reply to: Costs not displaying in the way I want to see #1145056
    Josh
    Participant

    Hey July,

    No problem. There wouldn’t be a CSS fix for this particular issue, however you could use a plugin such as https://wordpress.org/plugins/code-snippets/ to add snippets to your site.

    Let me know if this helps.

    Thanks!

    in reply to: Hide Private Event on calendar #1144935
    Josh
    Participant

    Hey Susan,

    Thanks for reaching out to us!

    When creating the events, there is a metabox on the side of the screen that allows you to hide a particular event from listing views. https://cloudup.com/c-r1LYf0Ztl

    Let me know if this helps.

    Thanks!

    in reply to: Integrate Spektrix #1144934
    Josh
    Participant

    Hey Pau,

    Thanks for reaching out to us!

    I’m not familiar with the system and unaware of any specific integrations. To be honest, it wasn’t clear to be exactly what was covered in their services and not sure exactly what the overlap or potential integration would be.

    However, it does look like they do have an API and there is a PHP wrapper built to help in working with the API in WordPress. So, you could integrate with WordPress but would be something we wouldn’t be able to provide support for here.

    I’m sorry I wasn’t able to give a direct answer here but hopefully it gives you enough information to follow up with your client.

    Thanks!

    Josh
    Participant

    Hey Inbar,

    Thanks for reaching out to us!

    The page that is indexed there is the ical feed (/events/?ical=1) which the excerpt there is what would be on that page.

    Is that the first result (or only result) from your website that shows when searching for the site name? Is it possible that you may have search engines blocked on the site or that there may be an SEO plugin activated that may need some modifications with the settings?

    Thanks!

    Josh
    Participant

    Hey Dean,

    Thanks for reaching out to us!

    We have run across this particular issue, however the most common solution that we suggest would be to make the default value for the field to be “1”.

    You can accomplish this by following our Themer’s Guide and copying the ticket form (src > views > wootickets > ticket-form.php) into your theme and making the default input value there to “1” (line 60 in the current version).

    Let me know if this helps.

    Thanks!

    in reply to: I want to let event posters sell tickets #1144753
    Josh
    Participant

    Hey!

    Thanks for reaching out to us here!

    You can allow vendors to sell tickets via your site using our plugins. Take a look at our Community Managers bundle and the plugins there.

    The key parts for what you’re looking for would be:

    • Event Tickets and Event Tickets Plus plugins to allow the creation of Tickets and the ability to sell those tickets via an eCommerce plugin such as WooCommerce
    • the Community Events plugin to allow visitors (or members) to create events on your site
    • Finally, you could use the Community Tickets plugin to allow the submitted events to add their own tickets to their events.

    All of those plugins can be found in the Community Managers bundle linked above.

    Let me know if this helps.

    Thanks!

    in reply to: Costs not displaying in the way I want to see #1144742
    Josh
    Participant

    Hey July,

    Give this snippet a try in your theme’s functions.php file:

    https://gist.github.com/BeardedGinger/6c84f68fc754274cec0e6ced9d18b28f

    This expands the available separators for the cost there to include the “/” character. The intention for that field is to show the singular cost for the event. If you have multiple costs or ranges, you may find our find our Free Tickets plugin to be of use for you here. https://theeventscalendar.com/tickets/

    Let me know if this helps.

    Thanks!

    in reply to: list by multiple categories #1144730
    Josh
    Participant

    Hey Fred,

    Definitely a great tool to be familiar with! Also, if you wanted, I can see if I can get more detail from it if you switch it back to checkboxes there.

    Thanks!

Viewing 15 posts - 601 through 615 (of 4,178 total)