jon

Forum Replies Created

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • in reply to: Adding Countdown Below Events in Photo View #1260642
    jon
    Participant

    Is there maybe a way to get it to work inside the default-template.php with something like based off this shortcode?

    [tribe_event_countdown id="$event_id" show_seconds="yes"]

    Seems like there would be a way to use the function but pull the id in automatically.

    Jon

    in reply to: Adding Countdown Below Events in Photo View #1257053
    jon
    Participant

    Thanks
    sure that it should be modules/meta/details.php?

    want to edit just the Main Calendar page to add a counter below each image/event.
    maybe default-template.php?

    Weird that there isn’t code that you guys as the developers can’t provide on this. Having it out there on the paid forum helps all paid users and would encourage us to buy licenses for more sites. I have 100 website but have only bought it for 3 so far and have been a little disappointed in the forum support compared to other themes/plugins.

    There should also be some easy to use options inside the settings for photo view like switching between Masonry and equal height Grid layouts.

    Jon

    in reply to: Adding Countdown Below Events in Photo View #1256553
    jon
    Participant

    Here is a screenshot mock up of what I want to do.

    I have [tribe_event_countdown id=”1716″ show_seconds=”yes”] in this event and it shows up with a title inside the main events page here http://www.itsgreektomemn.com/events/2017-greek-independence-day/ but doesn’t show anything on the main events page here http://www.itsgreektomemn.com/events/

    Secondary related question would be, is there a way to turn Photo View from masonry to masonry grid so the items all in one row stay the same height?
    I found this guide in the Knowledge bade but couldn’t get it to work with version 4.44
    https://theeventscalendar.com/knowledgebase/change-photo-view-to-equal-height-grid/

    Thank You,

    Jon

    in reply to: Images Overlap in Photo View in Some Themes #1250584
    jon
    Participant

    Courtney,

    In the mean time is there some CSS code or PHP script we can use to set the minimum masonry container size in Photo View? Right now it is stuck at 150px tall before the images are served on initial page load

    THanks
    Jon

    in reply to: Images Overlap in Photo View in Some Themes #1250257
    jon
    Participant

    Having the same issue since updating my Events Calendar Pro.

    Am using Photo View as my default and it seems that the events overlap with only 150px visible for each upper row.
    After the page loads all wonky I can hit re-fresh and it loads fine because the images have already been served, however, the initial load is no bueno.

    in reply to: Adding Sidebar to Calendar & Single Events Pages #1250164
    jon
    Participant

    In addition to the screenshots I provided, the resolution issue can be investigated this way:

    Go to the Past Events page and the featured image resolution is poopy, click on any Past Event, then go directly back to the Past Events page it then serves that one event’s featured image at full resolution. Visit another event and go directly back to the Past Events page and both show in full resolution.

    Seems like something with the plugin isn’t serving the featured images initially at full resolution using Photo view. At first I though maybe it is because my Featured Images weren’t big enough, however, that had no effect at all and the issue was the same.

    Jon

    in reply to: Adding Sidebar to Calendar & Single Events Pages #1250157
    jon
    Participant

    Here are screenshots, although I assume you’ll see it when you load the pages
    Have tested across all major browsers

    Jon

    in reply to: Adding Sidebar to Calendar & Single Events Pages #1250144
    jon
    Participant

    George,
    Thank you for your reply. Below is the code that I was able to use on my child theme functions.php to stop my theme from overriding any parts of the Events Calendar Pro. The theme is Enfold which is the top selling theme for WordPress so I figured your plugin would be more compatible out of the box. Hopefully this code helps others.

    //remove Events Calendar override
    
    add_action('after_setup_theme', 'ava_disable_events_mod', 50);
    function ava_disable_events_mod() {
    	$tec = Tribe__Events__Pro__Main::instance();
    	
    	remove_action('wp_enqueue_scripts', 'avia_events_register_assets',15);
    	remove_action('tribe_events_template', 'avia_events_tempalte_paths', 10, 2);
    	remove_action('option_tribe_events_calendar_options', 'avia_events_perma_options', 10);
    	remove_action('tribe_general_settings_tab_fields', 'avia_events_general_tab', 10);
    	remove_action('tribe_display_settings_tab_fields', 'avia_events_display_tab', 10);
    	remove_action( 'tribe_events_cost_table', 'avia_events_upsell', 10);
    	remove_action( 'avia_post_nav_entries', 'avia_events_custom_post_nav', 10);
    	remove_filter('avia_breadcrumbs_trail','avia_events_breadcrumb');
    	remove_action( 'tribe_events_before_the_event_title', 'avia_events_content_wrap', 10);
    	remove_action( 'tribe_events_after_the_event_title', 'avia_events_open_outer_wrap', 10);
    	remove_action( 'tribe_events_after_the_meta', 'avia_events_open_inner_wrap', 10);
    	remove_action( 'tribe_events_after_the_content', 'avia_events_close_div', 1000);
    	remove_action( 'tribe_events_after_the_content', 'avia_events_close_div', 1001);
    	remove_action( 'tribe_events_after_the_content', 'avia_events_close_div', 1003);
    	remove_action( 'tribe_events_single_event_after_the_content', array( $tec, 'register_related_events_view' ) );
    }

    I am still having two issues with the plugin itself regardless of which Basic Template Settings I choose.

    1. The resolution of the Featured Image for each event is usually loads at a low resolution even though the graphic itself is crisp. This is most evident on the non-reoccurring events for some reason.

    2. When clicking the “Past Events Link” it really stacks the events on top of each other pretty badly until you refresh the page. Example http://www.itsgreektomemn.com/events/
    To test go the event page link I just posted and click “past events” to see it all jumbled, then when you refresh the page it lines up correctly.
    Any way to get it to load correctly the first time?

    Thanks
    Jon

    in reply to: Adding Sidebar to Calendar & Single Events Pages #1249726
    jon
    Participant

    George,
    Thank you for your reply.
    That is unfortunate that support is lacking since I have seen other places in the Forum where your staff has helped out with code to add a Side Bar like here https://theeventscalendar.com/support/forums/topic/how-can-i-display-the-sidebar-in-my-events-page/

    I figured Events Calendar Pro would be pretty seamless, but side bars are a huge let down. Have tried to edit the Theme > Config-Events-Calendar > Views > default-templates.php but just can’t get it to call a sidebar.

    Extremely disappointed that a plugin I paid $150 for doesn’t have this basic function, especial when you provide sidebar widgets. Questions on adding sidebars seem to litter the forum but finding guidance or support feels like chasing ghosts.

    Thanks
    Jon

    in reply to: Adding Sidebar to Calendar & Single Events Pages #1245780
    jon
    Participant

    Is there code or php file I can add to my child theme to allow Events Calendar Pro pages to have the option to show/call a sidebar?
    It has been frustrating that the plug in doesn’t have this option out of the box, kind of makes the sidebar widgets pointless.
    Thanks in advance for you assistance,
    Jon

    in reply to: Adding Sidebar to Calendar & Single Events Pages #1234854
    jon
    Participant

    thank you for the further follow up, I will review it.
    My previous reply was to your first response.

    Jon

    in reply to: Adding Sidebar to Calendar & Single Events Pages #1234852
    jon
    Participant

    Thanks I will let you know how these solutions work

    in reply to: Adding Sidebar to Calendar & Single Events Pages #1234032
    jon
    Participant

    Thanks.
    I did go through the testing as well as extensively searching the forum with no luck.

    I am a paid Events Calendar Pro multi licence customer and will post in the premium support forum.

    Thanks
    Jon

Viewing 13 posts - 1 through 13 (of 13 total)