Crisoforo

Forum Replies Created

Viewing 15 posts - 16 through 30 (of 144 total)
  • Author
    Posts
  • in reply to: Increasing of 404 Error pages #1423126
    Crisoforo
    Keymaster

    Hey!

    Thanks for reaching out and I’m sorry about this problem you are facing. I checked on the URL you shared with us and seems to have the correct robots meta tag at the moment, usually this one gets changed sometimes by a third party plugin or if a filters is changed in how this works.

    Once a page is indexed by google stays like that until is removed from the index, you can follow the Google Guidelines to ask for removals of URLs to stop having 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: Events are not displayed #1423119
    Crisoforo
    Keymaster

    Hey! there thanks for reaching out and sorry to know about this possible issue you are facing at the moment.

    I would like to know a little bit more about this issue so I can give you a better answer for your problem.

    Can you give us more details on what you mean by “Have an event created, but it will not be published.“, like:

    • Is this a schedule event?
    • Events can’t be published?

    And also if you can attach / send details of error messages or screenshots showing the error it would be helpful for us as well.

    Let me know about this so we can happily find an answer for your problem.

    Thanks,
    Crisoforo

    in reply to: WP Customizer failure + #1423113
    Crisoforo
    Keymaster

    This reply is private.

    Crisoforo
    Keymaster

    Thanks for this information.

    This issue seems to be isolated to your environment as no other User has report something similar, which indicates three must be a conflict on your installation and other plugin and theme, have you tried by disabling all plugins (just leaving the TEC plugins) and using the default theme to test if this still is happening.

    Please let me know how that goes or if you are using any particular custom code on the admin side so we can debug that snippet.

    Thanks,
    Crisoforo

    Crisoforo
    Keymaster

    Fantastic!

    Feel free to reach out again in the future if you have more questions issues, we are here to help you, have a great day.

    Thanks,
    Crisoforo

    Crisoforo
    Keymaster

    I’m glad that was useful. You only need to change the function tribe_get_events_link with

     get_term_link( 'music', 'tribe_events_cat' )

    Where the first part is the slug of the category you want to link to it and the second one is the taxonomy name of the category very similar to the example above where has_term is being used.

    So the example above will look into something like:

     <?php if ( has_term( 'music', 'tribe_events_cat', get_the_ID() ) ) : ?>
     <a href="<?php echo esc_url( get_term_link( 'music', 'tribe_events_cat' ) ); ?>"> <?php printf( '&laquo; ' . esc_html_x( 'All %s', '%s Music plural label', 'the-events-calendar' ), 'Music specials' ); ?></a>
     <?php else : ?>
     <a href="<?php echo esc_url( tribe_get_events_link() ); ?>"> <?php printf( '&laquo; ' . esc_html_x( 'All %s', '%s Events plural label', 'the-events-calendar' ), $events_label_plural ); ?></a>
     <?php endif; ?>

    Let me know if you have additional questions.

    Thanks,
    Crisoforo

    in reply to: Remove comma after venue title in tribe_get_venue_details #1422746
    Crisoforo
    Keymaster

    Hey there thanks for reaching out.

    I’m looking at the two functions:

    • tribe_get_venue_details: returns an array with the venue name  as link and address.
    • tribe_get_venue: returns the name of the venue based on the ID of the event.

    Would you mind describing a little bit more what are you trying to get from each function or exactly what part are you trying to modify.

    Please let me know about this so we can provide a more clear guidance on your questions, and let me know if you have more questions about this.


    Thanks,
    Crisoforo

    Crisoforo
    Keymaster

    Hey!

    Thanks for reaching out to our forums, this is something you can archive by creating a custom template for the view single-event.php, for more details in how this works you can take a look at our Themer’s guide.

    Once you have a view for this file in your theme you need to  replace the following line:

     <p class="tribe-events-back">
     <a href="<?php echo esc_url( tribe_get_events_link() ); ?>"> <?php printf( '&laquo; ' . esc_html_x( 'All %s', '%s Events plural label', 'the-events-calendar' ), $events_label_plural ); ?></a>
     </p>

    By something like this.

     <p class="tribe-events-back">
     <?php if ( has_term( 'music', 'tribe_events_cat', get_the_ID() ) ) : ?>
     <a href="<?php echo esc_url( tribe_get_events_link() ); ?>"> <?php printf( '&laquo; ' . esc_html_x( 'All %s', '%s Music plural label', 'the-events-calendar' ), 'Music specials' ); ?></a>
     <?php else : ?>
     <a href="<?php echo esc_url( tribe_get_events_link() ); ?>"> <?php printf( '&laquo; ' . esc_html_x( 'All %s', '%s Events plural label', 'the-events-calendar' ), $events_label_plural ); ?></a>
     <?php endif; ?>
     </p>

    In the previous example will show a different message Music specials if the event displayed has the category music, you can change this by using a different category slug on the function has_term. If  the event does not have that category will display the regular link.

    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: Previous and Next Month buttons #1422680
    Crisoforo
    Keymaster

    Hey, thanks for reaching out to our forums.

    By default the theme shows two navigation items on the header and footer the ones located on the header are hidden by default. You can add the following snippet of style to display the navigation on the header rather than the one on the footer.

    #tribe-events-header .tribe-events-sub-nav li,
    #tribe-events-header .tribe-events-sub-nav .tribe-events-nav-next a {
     display: block !important;
    }
    
    
    #tribe-events-footer .tribe-events-sub-nav {
     display: none !important;
    }

    Another way you can customize this is by disabling the “Default stylesheet used for events templates” on:

    Events > Settings > Display

    To use a different CSS layout that relies more in the changes applied in your theme instead. Also if you want to go a step further you can always change how layouts are structured, we have a Themer’s guide that you can follow along describing the process in how to do this.

    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: Responsive design #1422668
    Crisoforo
    Keymaster

    Hi Paul, welcome to our forums and thank you for reaching out.

    Can you describe the problem a little bit more what type of issues are you facing or attach a couple of screenshots might be useful as well to clarify this a little bit more.

    Another thing you need to consider as well is if there’s any possible conflict on your current WordPress installation, follow our guide for test for conflicts to double check this is not a problem with other plugin or theme.

    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: Remove Ticket Cost from the Event Display #1422664
    Crisoforo
    Keymaster

    Hey! Thanks for reaching out to our forums.

    And yes you can hide the costs with CSS, give it a try to the following snippet of code.

    .tribe-events-cost {
     display: none !important;
    }

    Let me know how that goes, or if you have further 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 #1422594
    Crisoforo
    Keymaster

    This reply is private.

    in reply to: WP Customizer failure + #1422589
    Crisoforo
    Keymaster

    This reply is private.

    in reply to: Events for text #1422577
    Crisoforo
    Keymaster

    Hi!

    I’m glad you were able to find the snippet useful, please let us know if there is anything else we can do for you in the future and don’t hesitate to reach out again, have a good day.

    Thanks,
    Crisoforo

    in reply to: Customize Page Difficulty #1421573
    Crisoforo
    Keymaster

    Hey!

    Thanks for the updates, did you tried by using our conflicts guide to see if there is no plugin or theme conflict, as this will help us to identify quickly if there is some sort of problem with the plugin so by using the default WordPress theme and almost no plugins we can identify if this is being caused by a third party theme or plugin.

    Let me know how that goes or if you have more questions about the Themer’s guide.

    Best
    Crisoforo

Viewing 15 posts - 16 through 30 (of 144 total)