juanfra

Forum Replies Created

Viewing 15 posts - 31 through 45 (of 162 total)
  • Author
    Posts
  • in reply to: Address Loading with Extra Period #1510708
    juanfra
    Keymaster

    Hey Ryan,

    I’m happy to hear that 🙂

    If you have any other questions please feel free to let me know and I’d be happy to help as best I can!

    Regards,

    Juan

    in reply to: Query events to display free events only #1510706
    juanfra
    Keymaster

    Hi,

    Thank you for the follow-up.

    Unfortunately, custom development tasks are outside of our stated scope of support. The code I’ve shared with you only queries the database but doesn’t parse the results.

    To parse the results, after you make the query you’ll need to go through the loop:

     

    if ( $free_events->have_posts() ) {
    	// The Loop
    	while ( $free_events->have_posts() ) {
    		$free_events->the_post();
    		echo get_the_title();
           }
           wp_reset_postdata();
    }

    I’d recommend you to take a look at the WordPress documentation regarding WP_Query.

    I hope this helps!

    Regards,

    Juan

    in reply to: Display Timezone For Event #1510699
    juanfra
    Keymaster

    Hey Claire,

    I’m happy to hear that 🙂

    Perfect, thank you for the suggestion.

    If you have any other questions please feel free to let me know and I’d be happy to help as best I can!

    Regards,

    Juan

    in reply to: A Few Irregularities With CSS…Please Help #1510698
    juanfra
    Keymaster

    Hi Greg,

    Thank you for reaching out to us! I hope you’re doing well.

    It seems that some of your site styles are causing some sort of conflict with the plugin default styles.

    With regards to #1, please add the following custom CSS:

    .tribe-bar-filters .tribe-bar-submit {
    margin: 0;
    }
    .tribe-bar-filters .tribe-bar-search-filter {
    width: 25%;
    }
    

    Regarding #2, please add the following custom CSS:

    #tribe-bar-views .tribe-accessible-js-hidden {
    display: none;
    }
    

    I hope this helps! If you have any other questions please feel free to let me know and I’d be happy to help as best I can!

    Regards,

    Juan

    in reply to: Problem with post type on subsites in multisite network #1510652
    juanfra
    Keymaster

    Hi Joakim,

    Thank you for the follow-up.

    The .htaccess configuration seems to be alright. Please would you also check that you have the required constants in your wp-config.php file?

    With regards to the screenshot you’ve shared, I can see that you’re using a virtual host, is that from your local install?

    Would you please share a couple URLs where I can see the problem? Unfortunately, I don’t understand Swedish and I’m finding it difficult to trace the sub-sites and event pages.

    Also, I’ve seen you have business and multi-site licenses for events pro. Please be sure that you’re using the multi-site license on this install.

    Thank you,

    Juan.

    in reply to: Query events to display free events only #1510646
    juanfra
    Keymaster

    My pleasure 🙂

    Have a nice day,

    Juan.

    in reply to: Max imports reached in error #1510639
    juanfra
    Keymaster

    Hello Tony,

    Thank you for the follow-up. I’m sorry to hear that.

    Just as a head’s up, I wanted to share with you an article we have explaining how the event aggregator import limits work.

    Having shared this, I wanted to ask you if you could please send me a screenshot of your scheduled imports?

    Thank you,

    Juan.

     

    in reply to: Display Timezone For Event #1510615
    juanfra
    Keymaster

    Hi Claire,

    Thank you for the follow-up.

    Ok, I now understand. Sorry for the confusion. So you configured the time zone in the Time/Date setting in the event. That is stored as meta data, and it can be displayed by directly getting the meta data, if available.

    I’ve updated the code I previously shared with you. Would you please try with this new one?

    https://gist.github.com/juanfra/7a7410b4c90499f5de596fc549377313

    Best,

    Juan.

    in reply to: Query events to display free events only #1510578
    juanfra
    Keymaster

    Hi there,

    Thank you for reaching out to us! I hope you’re doing well.

    If you mean to add a filter to the filter bar in order to display the free events, that is possible with some custom coding to create custom filters. We have an interesting article that will get you started on this > https://theeventscalendar.com/knowledgebase/creating-custom-filters-for-filter-bar/

    If you need to query and display the free events in some template, you can try the following query:

    $args = array(
    'post_type' => Tribe__Events__Main::POSTTYPE,
    'meta_query' => array(
    array(
    'key' => '_EventCost',
    'value' => '0',
    'compare' => '=',
    )
    ),
    'posts_per_page' => -1,
    );

    $free_events = new WP_Query( $args );

    I hope that helps! Let me know if you have other questions

    Best,
    Juan.

    in reply to: ticket information #1510520
    juanfra
    Keymaster

    Hi John,

    Thank you very much for the follow-up.

    Ok, I now understand. You can add the following code to your theme’s functions.php file in order to include the event date in the ticket email:

    https://gist.github.com/juanfra/60d3fc59bdc0468559de6e7ea01a48fe

    I hope this helps! If you have any other questions in the meantime please feel free to let me know and I’d be happy to help as best I can!

    Cheers,

    Juan

    juanfra
    Keymaster

    Hi Ross,

    Thank you for the follow-up.

    I’m sorry, it defaulted to dutch, please check this link: https://godaddy.com/community/Building-and-Managing-a-Website/fatal-error/td-p/31814

    Regarding your questions:

    1. Ideally, you can go to the Event > Attendees, and when you delete the RSVP from that screen, the capacity number should respond to the number of RSVP you have. If you do that, then the capacity doesn’t change? You can learn all about RSVPs by following this link.
    2. If I go to the link you’ve shared with me (http://437.10f.myftpupload.com/events/category/program-introduction/) I can see that the capacity for all events is set to 38. Do you still see the “unlimited” capacity in the backend?

    Thanks,

    Juan.

    in reply to: Display Timezone For Event #1510427
    juanfra
    Keymaster

    Hi Claire,

    Perfect, thank you for the follow-up.

    The date formatting can be configured in Events > Settings > Display > Date Format Settings. Those fields accept the date format options available to the PHP date() function. You can learn how to make your own date format following this link. Basically, there are characters which represent the different “date” options to display. The character “T” will be the one used for timezone. So, basically, you can add a T to the fields I mentioned before and it will add the timezone.

    Having said this, there’s no option for the single event time. Via settings, you can only add the timezone to the event date. However, I’ve created a snippet for you to put in your functions.php file in order to add the timezone to the event time.

    https://gist.github.com/juanfra/7a7410b4c90499f5de596fc549377313

    I hope this helps! If you have any other questions in the meantime please feel free to let me know and I’d be happy to help as best I can!

    Cheers,

    Juan

    juanfra
    Keymaster

    Hi Ross,

    Thank you for the follow-up.

    Are you on Godaddy? They have assumed they have some issues on a few of the GoDaddy’s hosting servers, and they propose the following fix:

    “Open your hosting account, go to File manager and access this folder: wp-content Rename this file object-cache.php to object-cache-OLD.php

    Reference: https://nl.godaddy.com/community/Building-and-Managing-a-Website/fatal-error/td-p/31814

    Best,

    Juan.

    in reply to: 404 Errors and Default Permalinks #1510118
    juanfra
    Keymaster

    Hi,

    Thank you for the follow-up and the clarification.

    I see that all your events have a different URL than the one you’ve sent me, with the date following the permalink. And if you go and add the event date to the one you’ve sent me, it actually doesn’t give a 404. https://thenewreformtemple.com/event/confirmation-service/2018-05-18/

    Have you done any customization to your permalinks?

    Best,

    Juan.

    in reply to: Description on the main view #1510109
    juanfra
    Keymaster

    <div class=”bbp-breadcrumb”></div>
    <div id=”post-1510093″ class=”even bbp-parent-forum-178 bbp-parent-topic-1508297 bbp-reply-position-2 user-id-15013 post-1510093 reply type-reply status-publish hentry” data-anchor-target=”dl_post-1510093″>
    <div class=”bbp-reply-right”>
    <div class=”bbp-reply-content”>

     Hi Andrew,

    Thank you for reaching out to us!

    What do you mean by the”main view”? Do you mean the events page where the calendar is? There are many different ways to customize the way these pages look, I’d recommend starting off by taking a look at our Themer’s Guide, which can show you which templates can be edited and copied in order to attempt the results that you are looking for.

    If you have any other questions in the meantime, please feel free to let me know and I’d be happy to help as best I can!

    Cheers,

    Juan

    Juan.

    </div>
    </div>
    </div>

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