George

Forum Replies Created

Viewing 15 posts - 3,391 through 3,405 (of 10,499 total)
  • Author
    Posts
  • in reply to: Photo View Content Width in 4.2 #1124458
    George
    Participant

    Hey @danfeeley,

    This is indeed a bug that we are working on a fix for. The solution posted in that thread is a pretty good one. Here is an alternative that is a bit more “targeted”, i.e. specific to just the content width for just the photo view:


    .tribe-events-list-photo-description.tribe-events-content {
    width: 100% !important;
    }

    ☝️ I hope this or the other solution help for now; stay tuned for our next maintenance release where we will patch this up!

    — George

    in reply to: Photo View: Text only in half of cell #1124457
    George
    Participant

    Thank you so much for sharing your solutions here, folks!

    Sorry about this bug—we’re already working on a fix so that this does not happen as broadly as it is happening now.

    The CSS solution shared above is excellent. Here is another, alternative method if anyone’s interested:


    .tribe-events-list-photo-description.tribe-events-content {
    width: 100% !important;
    }

    Stay tuned to forthcoming maintenance releases where we will patch this up!

    Thank you,
    George

    in reply to: Event_Embed (Parte Tres) #1124455
    George
    Participant

    Hey Glenn,

    It is true that the tribe_events_list shortcode does not include photos.

    At this time, there is unfortunately no way to embed the photo view. 🙁

    Officially-support event embedding, at this time, does indeed only refer to one event. Then there are the shortcodes and widgets for various “list” and “month”-style views, but there is no photo view at this time.


    One Solution

    To get photos in the list view shortcode/widget output, you would have to make a customized version of a default template. This process is covered in depth in this themer’s guide, so I suggest you read this for starters ? https://theeventscalendar.com/knowledgebase/themers-guide/

    A summarized version of how to do this, though, is as follows:

    First, make a template file in your theme with this directory and file structure:

    [your-theme]/tribe-events/pro/widgets/modules/single-event.php

    ☝️ That is indeed a lot of extra nested folders you have to make just to then add one file, but it’s correct and unfortunately the only way to modify the tribe_events_list output at this time.

    Once you have this file created in your theme, copy the contents of the original file from inside Events Calendar Pro, and then add echo tribe_event_featured_image() wherever you want the image to appear.


    A Simpler Solution

    There is an alternative approach to adding the featured images that is much easier. It provides less control over the placement of the image, but I hope this helps if you are interested in a simpler, faster option.

    Instead of all of the steps described above, simply head to your theme’s functions.php file and add a bit of code there like this:


    add_action( 'tribe_events_list_widget_after_the_event_title', 'tribe_add_featured_image_to_list_widget' );

    function tribe_add_featured_image_to_list_widget() {
    echo tribe_event_featured_image( get_the_ID(), 'full' );
    }


    We cannot help with code customizing, so you will have to take the reins from here and tinker around with stuff a bit—but I hope this information helps!

    — George

    in reply to: wrong padding on photo view feeds #1124446
    George
    Participant

    Glad to hear it! 😀

    Open a new thread any time if other issues arise.

    Sincerely,
    George

    in reply to: Recent event on any page #1124444
    George
    Participant

    Sure thing, @Alex!

    Check out the “A Single Event” section of this knowledgebase post for steps on how to do this ? https://theeventscalendar.com/knowledgebase/inserting-calendar-content-post-page-content/

    Cheers,
    George

    in reply to: Hide Security Code on Tickets #1124443
    George
    Participant

    Hey @Janice,

    Thanks for reaching out. This is possible, but unfortunately only with a bit of custom coding.

    Try heading into your theme’s functions.php file, and add this bit of code there:


    add_action( 'init', 'tribe_remove_qr_from_email' );
    add_action( 'admin_init', 'tribe_remove_qr_from_email' );

    function tribe_remove_qr_from_email() {
    remove_action( 'tribe_tickets_ticket_email_ticket_bottom', array( 'Tribe__Tickets_Plus__QR', 'inject_qr' ) );
    }

    ☝️ Let us know if that helps!

    — George

    in reply to: embed the calendar overview on a simple page #1124441
    George
    Participant

    Hey Tom!

    At this time you cannot insert the full calendar overview into a page. 🙁 There are some other options, like some widgets and shortcodes that come with Events Calendar Pro, but not the full calendar with its various views….

    To learn about the methods you can use, check out this article here ?https://theeventscalendar.com/knowledgebase/inserting-calendar-content-post-page-content/

    Cheers!
    George

    in reply to: Event Tickets Plus Guide #1124436
    George
    Participant

    Sure thing, @Marco!

    First, check out the New User Primer for Event Tickets and Event Tickets Plus here ? https://theeventscalendar.com/knowledgebase/new-user-primer-event-tickets/

    That should be a great start. From there, I would recommend checking out the “Event Tickets Plus” category of articles on our Knowledgebase. You can find that here ? https://theeventscalendar.com/knowledgebase-category/tickets-plus-features/

    Explore the various articles based on your needs.

    I hope this information is helpful!

    Cheers,
    George

    in reply to: Setting PayPay Account #1124434
    George
    Participant

    Hey Joey,

    Thanks for reaching out!

    At this time this is not possible:

    I’m wondering if Events Tickets Plus can be set to use a different PayPal account to receive payments than the PayPal account already linked to my site’s WooCommerce account?

    Sorry to disappoint!
    George

    George
    Participant

    Hey @Darren,

    Sorry to hear this!

    1. That function exists in Events Calendar Pro. Do you have Events Calendar Pro installed and activated on your site?

    2. Also, to the best of your knowledge can you remember what version of Events Calendar Pro it might be?

    Thank you,
    George

    in reply to: Converting large XML file to CSV to be imported #1124429
    George
    Participant

    Hey Dwayne,

    Thanks for reaching out!

    Is the XML file one that was exported from another WordPress site? Or was the XML file generated in some other way?

    As for the sheer size of the CSV file, if that notice that Excel gives you is accurate and there are “more than 1,048,576 rows or 16,384 columns”, then this is an immense amount of data. It is not likely that our CSV importer (or just your server itself!) would be able to handle that.

    However, please let me know about the generation of this XML file. If it is a typical “WordPress export” XML file, then you should be able to use the methods described in this article to import that XML file into your other WordPress site ? https://theeventscalendar.com/knowledgebase/using-wordpress-export-tools-to-migrate-events-content/

    — George

    in reply to: Synchronization with published Outlook 365 calendar #1124428
    George
    Participant

    Hey Randy,

    Thanks for reaching out.

    We have a plugin called the iCal Importer which might do well here, but there are some caveats to point out:

    This plugin does not have two-way synchronizing abilities.
    • You can import an ics feed on intervals. The smallest interval is one hour, however; not 15 minutes or 30 minutes.
    • The plugin’s auto-importing features are WordPress cron jobs. These are not true cron jobs. So, if you set an auto-import to happen hourly, then the import will run every hour as long as the site has been visited within the last hour. If nobody visits your site in an hour-long span, then the job will not be queued to run. This is a limitation with WordPress itself, not our plugins or by our own choosing.
    • The auto-imports have to listen to a feed of ics. If outlook does not provide a URL or feed that can be “listened to”, then this will not work. If it only provides ics insofar as you having to open the app and then manually export the ics file, then you would have to manually import that ics file each time you want to do an import.

    ☝️ I hope this information is clear and helps you move forward with your decision!

    Sincerely,
    George

    in reply to: wrong padding on photo view feeds #1124424
    George
    Participant

    Hey @Pau,

    We unfortunately cannot help with design modifications or other code customizing projects. Please read this page to learn more ? https://theeventscalendar.com/knowledgebase/what-support-is-provided-for-license-holders/

    To fix padding of various views, you will need to write custom CSS on your site. To help with this, definitely check out a [free!] tool like Firebug if you use FireFox, or the Developer Tools for either Safari or Chrome. They have “Inspector” tools that let you zoom right over the element whose styles, padding, margin, color, etc. you want to change.


    As a quick example of this, I used the tools above to come up with the following CSS for your site:


    .tribe-events-list-photo-description.tribe-events-content {
    width: 100% !important;
    }

    Add that to the bottom of your theme’s style.css file and see if it helps!

    — George

    in reply to: Add Multiple Events to cart – Ajax #1124421
    George
    Participant

    Hey Luke,

    Thanks for reaching out.

    The “add to cart” functionality on that page is not anything provided by our plugins. It seems to be provided by your theme. Our plugins, by default, do not provide any sort of “purchase” functionality directly from the list view or other many-event views.

    Our plugins, thus far, only provide such features on the single events views.

    So, since your theme is providing that “add to cart” functionality on the list view, to suss out the nature of this problem—and hopefully a solution—your best bet is to reach out to your theme support for assistance.

    Please let me know if there is anything else I can try to help with.

    Sincerely,
    George

    in reply to: Group purchases, custom field, exporting data #1124280
    George
    Participant

    Hey Sergio,

    Thanks for reaching out!

    The answer to all of your queries here is “Yes”, with one exception: the specific “running bib numbers” features you mention.

    Our plugins do not offer any sort of way for bib numbers to be auto-generated, if that’s what you were implying. There is no system for that within our plugins, nor another system similar to that that could be used in its stead.

    If you can elaborate a bit more on what you need in regards to bib numbers specifically, I may be able to provide a more specific bit of insight on that.

    But in general, like I said, for everything else you mention Event Tickets Plus can do that.

    What you call “custom fields” here, Event Tickets Plus calls “additional information.” Same thing! You can add custom input fields for tickets that allow for the entry, collection, and export of all sorts of data.

    Check out this knowledgebase for a more in-depth look at these features—the “Additional Attendee Information” section should be of particular interest: https://theeventscalendar.com/knowledgebase/managing-your-orders-and-attendees/

    Cheers,
    George

Viewing 15 posts - 3,391 through 3,405 (of 10,499 total)