Jeremy

Forum Replies Created

Viewing 10 posts - 976 through 985 (of 985 total)
  • Author
    Posts
  • in reply to: City and/or country Search does not work #1494571
    Jeremy
    Keymaster

    Hi Shah,

    I’m happy to help. You could add a Country filter with our Filter Bar add-on.

    Once this add-on is activated, configure its settings so that Country is added ton the filter bar.

    Since the Country filter is an important one in this context, you might want to modify those settings as well:
    Filters Layout => Horizontal
    Filter Bar default state => Show on initial page load

    Please let me know if that solved your problem.

    Cheers,

    Jeremy

    in reply to: Colour of Heading on Calendar View #1494547
    Jeremy
    Keymaster

    Hi Andy,

    Thank you for reaching out to us!

    In order to display the days of the week in white on your calendar, try to add the following code on your website (either via “Additional CSS” on the Customizer or the style.css on your child theme):

    .entry-content .tribe-events-calendar thead th {
      color: #fff;
    }
    

    Let me know if that solved your issue.

    Cheers,

    Jeremy

    Jeremy
    Keymaster

    Hi Sean,

    Thank you for your interest in our plugin!

    It’s not possible to bypass the default event creation and instead link to an existing page, post or product when the event title is clicked on the calendar view.

    That being said, with a bit of coding, you could customize the template for the calendar view.

    If you need technical help, please have a look at the Support forum for the Events Calendar.

    I hope this helps!

    Cheers,

    Jeremy

    Jeremy
    Keymaster

    Hi Selina,

    Thank you for your interest in our product!

    If you get Events Calendar PRO, you’ll find a button to export the events on your calendar. The events will then be exported in a .ics file.

    That would allow you, for instance, to import your events into a calendar application, like Apple’s iCal or Google Calendar.

    However, I’m not sure Facebook allows you to import an .ics feed. This app used to make it possible, but it’s apparently broken: https://apps.facebook.com/import_ical

    Although it’s not actually what you’re seeking, you might have a look at Event Aggregator: this plugin allow events to flow in the opposite direction (ie, they can be pulled from Facebook into your own WP site).

    If you have any further questions, please feel free to contact us.

    Cheers,

    Jeremy

    in reply to: Development License #1492811
    Jeremy
    Keymaster

    Hi Pat,

    Thanks for reaching out to us!

    You should be able to use your license both on your live site and on your development site. It won’t count toward your license’s maximum allowed sites as long as your domain name is clearly a dev or staging site.

    For now, our license system will not count domains with the following TLDs toward your license seats:

    • .dev
    • .test
    • .local
    • .tribe
    • .staging

    Please note those TLDs tend to mean we’re talking about local websites. So a development site at the address staging.example.com isn’t covered by the exclusion, because ‘staging’ in that case would be a subdomain rather than a TLD.

    That being said, you can always add our plugins to a staging site without a license: they still function (they just won’t receive automated updates).

    For more information about using one license for live and dev sites, please have a look at this article in our Knowledgebase.

    I hope this helps,

    Cheers,

    Jeremy

     

    in reply to: City and/or country Search does not work #1492659
    Jeremy
    Keymaster

    Antoher thing: if you are uncomfortable adding snippets to your functions.php file you can also try Say What, a very nice plugin which would allow you to quickly change any string in your website.

    Best,

    Jeremy

    in reply to: City and/or country Search does not work #1492652
    Jeremy
    Keymaster

    Hi Shah,

    Thanks for reaching out to us!

    In the Near field, you can enter an address or a city, but a country shouldn’t give any result.

    Within the Pharmaceutical category, I entered Philadephia in the Near field and the event you mentioned appeared in the results. If it doesn’t show up on your side, could you give more details: are you logged-in when you enter the city? Which web browser are you using?

    Could you try in while logged out, in a private window?

    For even more precise filtering capabilities, you could use our Filter Bar add-on. That way, you could adjust the radius for your location-based searches by using the Distance filter.

    Finally, to change the field that says Near to City, you would need to add a piece of code to your theme.

    Copy/paste the snippet below to your theme’s functions.php:

    function tribe_custom_theme_text ( $translation, $text, $domain ) {
    
    // Put your custom text here in a key => value pair
    // Example: 'Text you want to change' => 'This is what it will be changed to'
    // The text you want to change is the key, and it is case-sensitive
    // The text you want to change it to is the value
    // You can freely add or remove key => values, but make sure to separate them with a comma
    // This example changes the label "Near" to "City"
    $custom_text = array(
    'Near' => 'City',
    );
    
    // If this text domain starts with "tribe-", "the-events-", or "event-" and we have replacement text
    if( (strpos($domain, 'tribe-') === 0 || strpos($domain, 'the-events-') === 0 || strpos($domain, 'event-') === 0) && array_key_exists($translation, $custom_text) ) {
    $translation = $custom_text[$translation];
    }
    return $translation;
    }
    add_filter('gettext', 'tribe_custom_theme_text', 20, 3);
    

    I hope this helps.

    Cheers,

    Jeremy

    in reply to: Event Calendar vs Event Calendar Pro #1491774
    Jeremy
    Keymaster

    Hi Ronny,

    Thank you for your interest in our product!

    While Events Calendar PRO is a Premium plugin, The Event Calendar is free.

    By getting Events Calendar PRO, not only would you be able to get Premium Support Access, but you would also benefit from lots of very nice features which are not included in our core plugin.

    Among those extra features, some would be great in conjunction with Community Events: for instance, you would be able to add custom fields, default content, and recurring events to the submission form!

    I hope this helps,

    Cheers,

    Jeremy

    in reply to: Additional Attributes #1491732
    Jeremy
    Keymaster

    Hi Maria,

    Thanks for your interest in our product!

    Absolutely, it’s possible to insert additional fields for each event, providing you get the Events Calendar PRO plugin.

    Once you’ve installed and activated this plugin, you can create additional fields by navigating to the “Events -> Settings -> Additional Fields” tab within your WordPress dashboard.

    You’ll find more information about the additional fields in our knowledge base.

    I hope this helps,

    Cheers,

    Jeremy

    in reply to: price #1491723
    Jeremy
    Keymaster

    Hi Lidia,

    Thanks for your interest in our Premium plugin!

    By subscribing, you would get updates & support for 1 year and yes – because it is a subscription, you will automatically be charged each year (but you can cancel this at any time).

    If you don’t renew your subscription after one year, you’ll still be able to use the plugin. However, you won’t get the new updates and you won’t be able to contact our pro support.

    I hope this helps.

    Cheers,

    Jeremy

Viewing 10 posts - 976 through 985 (of 985 total)