Forum Replies Created
-
AuthorPosts
-
February 8, 2016 at 12:01 pm in reply to: Mobile view- auto scroll to events when day is clicked #1069700
Nico
MemberDavid,
Thanks for following up with this!
Unfortunately I wasn’t able to reach the calendar in the URL you shared ๐ I also see there’s an option to active ‘mobile site’ in your site. Does that need to be activated?
Please let me know about it, as you are using an old version of the plugin the markup might be slightly different and I would like to verify that,
Best,
NicoNico
MemberThanks for clarifying a bit on this…
1. If i have 100 webpages on my avada theme, can i link an event to every webpage?
You’ll need to manually create the event and then by adding the ‘existing webpage’ as the event’s website you can link them together. Or using a plugin like Posts to Posts.
2. If yes, will the linked event be able to pull the webpage title and main pic on that webpage to be displayed on the events page? or do i have to separately create an event for every webpage?
While you’ll need to create events manually (you can create a snippet to do this via code). Once the event and page are connected, you can grab the info from the page (title, featured image, description, etc) and include it in the event template (take a look at our themer’s guide to see how you can customize events templates).
3. Also, Where on the webpage will the date & venue for the event linked to that webpage be shown? In the sidebar?
All events will be found at the main calendar. You can add event widgets to the site sidebar. If you are referring here to where will the event info will show in the existing webpage, then you’ll need to pull that info in the page template (as you’ll need to do so for events).
Rounding up, what you look for can be achieved but you’ll to customize the plugin templates a bit and generate a script to create events from pages (if you don’t want to do that manually).
Please let me know if this makes sense! Also if you feel this level of customization is a bit advanced for you, please take a look at this list of folks who do custom development related with our plugin.
Best,
NicoNico
MemberThanks for adding some more context to this Colin!
Is there a way to have the layout of the event listing different for different levels of events?
Sure, you can categorize those paid events with a particular category let’s call it ‘premium’. THen you can edit the template to show certain information like venue for map, only if the event belongs to the premium category, you can also use this conditional to add some classes to the event markup to visually distinguish it.
Potentially there could be a way to have a payment option for the event listing on the site.
For now you’ll have to do that manually, maybe with a WooCommerce product or something similar. This idea has been suggested in our UserVoice page and it has been added to our ‘longterm roadmap’ so mostly sure this will be included in the future.
So rounding up, this is possible now ‘manually’ and it’s not a feature of the plugin. If you want to give this a try you can purchase Events Calendar PRO and install it on a test site, explore the features and see how our template overrides work. We have a ’30 days refund policy’ so if after testing the plugin you feel it’s not what you are looking for you can request a full refund (within 30 days of purchase).
Please let me know if I can help you with anything else,
Best,
NicoNico
MemberPerfect! Thanks @jaapstronks.
Iโll go ahead and close out this thread, but if you need help with anything else please donโt hesitate to create a new one and we will be happy to assist you.
Best,
NicoNico
MemberHey Birgit,
Thanks for following up ๐
It’s easy, just delete the mentioned code block from the ‘old position’ and leave it just in the new one. Makes sense?
Please let me know if I’m getting you wrong,
Best,
NicoNico
MemberGlad to hear Birgit ๐ Thanks Mathew!
February 8, 2016 at 9:17 am in reply to: After 4.05 upgrade, horrible recurrence descriptions show up :( #1069597Nico
MemberGlad to be of service Edwin ๐
Iโll go ahead and close out this thread, but if you need help with anything else please donโt hesitate to create a new one and we will be happy to assist you.
Best,
NicoNico
MemberThis reply is private.
Nico
MemberHey Edwin,
Thanks for setting that up! Weel it looks like that the <header> has a higher z-index than the #main-content element which also has the overflow property set to hidden. All that said the snippet to fix this is:
#main-content{
overflow: visible!important;
z-index: 1000!important;
}
Add that code to your theme (or child theme stylesheet) or via Simple Custom CSS plugin and it should do the trick.
Please let me know if you need anything else,
Have a great weekend,
NicoNico
MemberHey Kevin,
Glad to hear you could get started with this ๐
The login_redirect hook basically let’s you filter/modify where users are redirected after login, so for example you could add the snippet below to your functions.php to redirect all users to the add event community page after login. There’s a more complex example on the codex, showing how to filter via user level, etc. For this to work it seems that you need to configure the redirection setting to ‘Default WordPress Redirect’.
function redirect_to_ce( $redirect_to, $request, $user ) {
return site_url('/events/community/add/');
}add_filter( 'login_redirect', 'redirect_to_ce', 10, 3 );
even when I am logged in and select โADD EVENTโ, the login window pops up again.
I’m not sure about how that works in the theme. I guess it should send you to the link URL if you are in fact logged in. You’ll need to ping the theme support again I guess.
So once you get that working we can move on to adding the JS code to the add/edit event template, so users that reach that URL directly won’t see the Community Events default login!
Have a great weekend,
NicoNico
MemberHi Ameet,
Thanks for reaching out and sorry to hear about this issue ๐ I fact I think I’ve created the bug ticket to address the negative stock issue.
I know there are still some weird stock scenarios which will be address in next maintenance release, but none seems to be like this one. I’ve been playing around with WooCommerce + Tickets Plus to try and reproduce this but I wasn’t able to do so. Could you identify any particular steps to reproduce? Maybe cancelled/refunded orders in there? The ‘standard’ workflow seems to be working for me.
Please let me know about it, I would love to log this to get fixed with the other stock tickets!
Have a great weekend,
NicoNico
MemberHey Tim,
Thanks for following up!
I was just suggesting to do it via JavaScript but without editing the actual plugin files. For example if you are using checkboxes for the time filter:
//check if the time filter is present
if ( jQuery('#tribe_events_filter_item_timeofday').length > 0 ) {var $time_filter_group = jQuery('#tribe_events_filter_item_timeofday .tribe-events-filter-group');
// remove the checkboxes
$time_filter_group.find('ul').remove();// insert new control - just as a sample I insert the same html
$time_filter_group.append('');
}
You can add this code to your theme’s javascript file or insert it via functions.php like this:
add_action('wp_head','insert_custom_js');
function insert_custom_js ( ) { ?>jQuery(document).ready(function($) {
// paste code here
});
This works for small snippets and it's not the recommended method to add javascript files to the theme (more info here).
Please let me know if you still have any doubts on this,
Have a great weekend,
NicoNico
MemberThis reply is private.
February 5, 2016 at 7:43 am in reply to: Multiple database entries for _EventCost after adding Event Tickets #1068271Nico
MemberThis reply is private.
-
AuthorPosts
