Crisoforo

Forum Replies Created

Viewing 15 posts - 31 through 45 (of 144 total)
  • Author
    Posts
  • in reply to: breadbrumb issues for calendar page and archives #1421560
    Crisoforo
    Keymaster

    This reply is private.

    in reply to: breadbrumb issues for calendar page and archives #1421538
    Crisoforo
    Keymaster

    This reply is private.

    in reply to: Access Value of a fieldsets #1421401
    Crisoforo
    Keymaster

    Thanks for clarify this. Fieldsets are stored as a regular post types inside of WordPress so you can use native functions from WordPress to query on post types such as WP_Query or get_posts.  For example to get all the fieldsets you can use something like:

    $templates = get_posts( array(
     'post_type' => 'ticket-meta-fieldset',
     'orderby' => 'title',
     'order' => 'ASC',
     'posts_per_page' => -1,
     ) );

    You can use any of the functions mentioned above to have a more narrow search and filters as well, let me know if you have more questions about this or if there is anything else I can do for you.

    Thanks,
    Crisoforo

    in reply to: breadbrumb issues for calendar page and archives #1421376
    Crisoforo
    Keymaster

    This reply is private.

    in reply to: breadbrumb issues for calendar page and archives #1421363
    Crisoforo
    Keymaster

    This reply is private.

    in reply to: Community Events – Signoff for Users #1421359
    Crisoforo
    Keymaster

    Hey!

    Thanks for the update, that’s fantastic. Feel free to reach out again if you have more questions in the future.

    Thanks,
    Crisoforo

    in reply to: \'Ghost\' event keeps showing up #1421307
    Crisoforo
    Keymaster

    I’m glad this was all sorted out. Feel free to reach out again if you have more questions.

    Thanks,
    Crisoforo

    Crisoforo
    Keymaster

    Hey!.

    Based on the screenshot those are specific elements of your current theme. If this is a premium theme you can look for support over there in how to customize the theme but looks like you should be able to remove those from.

    Appearance > Widgets

    But as mentioned before I can’t provide a solution for it as the theme is developed by a third party solution and is not related with the plugin.

    We have a guide that you can follow along to remove the calendar download inks. I hope this fixes your problem, but let me know if you have additional questions.

    Best
    Crisoforo

    in reply to: Year not displaying next to month name in Month View #1421293
    Crisoforo
    Keymaster

    I’m glad this was something helpful for you. Please don’t hesitate to reach out again if you have any other questions or problems.

    Thanks,
    Crisoforo

    Crisoforo
    Keymaster

    Hey!

    Thanks for reaching out to the forums. I’m not quite sure about the items you are mentioned but if you can send us a screenshoot we can take a look and provide you a better guidance on this problem you are facing.

    Let me know once you send us the screenshot so we can give you a better solution for this problem. In the meantime you can also test for any possible conflicts using our guide for conflicts in order to identify them quickly.

    Thanks,
    Crisoforo

    in reply to: Events for text #1421015
    Crisoforo
    Keymaster

    Hi there.

    I’m not quite sure from where exactly you would like to remove this section of the title, if you can give us a more detailed location we can give a better guidance on this issue.

    In the meantime, I can provide a possible solution. If this is happening on the main title of the events you can use a filter and add the following snippet of code in your functions.php file inside of your current active theme.

    function tribe_get_events_title_update( $title ) {
     // Removes 'Events for' from the titles.
     return str_replace( 'Events for', '', $title );
    }
    add_filter( 'tribe_get_events_title', 'tribe_get_events_title_update' );

    Another thing you can do is change how layouts are generated, we have a guide for Themer’s that you can follow along if you want to change how a layout is generated.

    Please let me know if you have any other questions about this issue or if there’s anything else I can do for you.

    Thanks,
    Crisoforo

    in reply to: Customize Page Difficulty #1421010
    Crisoforo
    Keymaster

    Hey there!

    I hope you are doing great and thanks for reaching out. Based on the description of your problem there might be a couple of items that you might want to take a look at.

    1. Make sure your display settings on: Events > Settings > Display are set to Tribe Events Style so you have a fully design styles on your site or change it to something that fits more your needs.
    2. Test your site for any conflict to make sure this is not a problem generated by any other plugin or the current Theme.
    3. Most of the views on the plugins can be edited either the HTML structure, JS or CSS can be changed to match your needs, you can take a look at the Themer’s Guide to see the details.

    Please let me know if you have any other questions about this issue or if there’s anything else I can do for you.

    Thanks,
    Crisoforo

    Crisoforo
    Keymaster

    Hi!

    Thanks for reaching out and I’m really sorry about this issue, this ticket is at the moment in our Backlog as other users are experiencing similar issues as well.

    In the meantime you should be able to do a manual update of the plugin, we have a detailed guide about this process that will make this more clear in how to approach this problem.

    Please let me know if you have any other questions about this issue or if there’s anything else I can do for you.

    Thanks,
    Crisoforo

    in reply to: the image of the event is not displayed correctly #1421000
    Crisoforo
    Keymaster

    Hey there!

    Thanks for reaching out, it seems like you are facing a Theme conflict. you can debug this by testing with the default WordPress theme, as these type of issues is more related with your current. we can suggest a few possible solutions steps for you:

    • Disable some styles, plugins that might affect your current site.
    • Test with the default WordPress theme to see if the issue is still there.
    • Disable some default styles of The Events Calendar Plugin by going into
      • Events > Settings > Display
    • Override the template having the issue and apply new styles to that element.

    Otherwise we also advice you to open a ticket with the support of the theme as seems like a possible issue with the Theme rather than the plugin, but double check by following the conflicts guide and let us know how that goes.

    Please let me know if you have any other questions about this issue or if there’s anything else I can do for you.

    Thanks,
    Crisoforo

    in reply to: Access Value of a fieldsets #1420999
    Crisoforo
    Keymaster

    Hey!

    Thanks for reaching out to our forusms, I’m not sure if you mean Custom Field when you say Fieldset, if so you can use the function called:

    tribe_get_custom_field

    Which accepts the label and the ID of the event you want to access a value, you can take another look at the documentation page of this function as well.

    Please let me know if you have any other questions about this issue or if there’s anything else I can do for you.

    Thanks,
    Crisoforo

Viewing 15 posts - 31 through 45 (of 144 total)