Brian

Forum Replies Created

Viewing 15 posts - 11,011 through 11,025 (of 11,256 total)
  • Author
    Posts
  • in reply to: Location Search #722770
    Brian
    Member

    That’s strange, I am still getting an error on the Map View. So something is preventing the mapping system from working.

    Here is the error I am getting.

    “NetworkError: 404 Not Found – http://www.automatedtrans.com/events/map/”

    Debug
    Can you please follow the section of the WordPress Codex Debug titled “Example wp-config.php for Debugging” on this page:

    http://codex.wordpress.org/Debugging_in_WordPress

    Please add that coding to your wp-config.php file.

    After that please turn on debug mode in the Events Calendar.

    Go to Events->Settings and in the Miscellaneous Settings at the bottom of the General Tab Please Click on Debug Mode and Save.

    Please try to search the site and go to the map view a couple times and then if you can send in your next reply the information in the debug.log in the wp-content directory.

    Also, please send me the information in the System Information box under Events->Help.

    You can make those both private replies and we can take it from there.

    Thanks

    in reply to: Events Featured Venue #722696
    Brian
    Member

    Hello,

    I visited your site and saw the Venue Name just as you described.

    Looks like it is coming from some css in your theme to move up the

      tag.

      Adding this to your theme’s css or a custom css for the frontend should fix it up.

      .widget .tribe-venue-widget-wrapper ul.tribe-venue-widget-list {
      top: 0;
      }

      Let me know if that works out for you or you would like some more help.

      Thanks!

    in reply to: PREVIOUS EVENT Feature #722686
    Brian
    Member

    Pablo,

    I took a look at your site and see what you are trying to do and can help you get going in the right direction.

    I would recommend using the tribe_get_events() function:

    https://theeventscalendar.com/support/documentation/the-events-calendar-template-tags-general-functions/#functiontribe_get_events

    If you follow along with the example and change the ‘eventDisplay’ to

    'eventDisplay'=>'past'

    That will get you past events, then you can modify the query accordingly to get the latest past event.

    Let me know if you get stuck somewhere and I can help out, thanks.

    in reply to: Request: New capability for tribe_event_settings #722663
    Brian
    Member

    Hello,

    I like your idea and I will bring it to the attention of our developers.

    I would also recommend heading to our UserVoice page and making it a suggestion there as that is where we get ideas for many of our new features.

    As for if or when we may add this feature I do not have any information on that.

    In the mean time you maybe able to create setting page of your own with two editor fields and give that the capability you would like to view it. Then using hooks you could show those two fields the same way the Events Settings fields would show.

    I have used this coding in the past to create a settings page, it could be a good place to start:

    https://github.com/justinwhall/WordPress-theme-options/tree/master/theme-options

    Thanks

    in reply to: Event Submissions are disabled #722634
    Brian
    Member

    Ok, I see the form now, is it still not working?

    If it is not working, can you please follow Step 2 from my first post and let me know the settings of the first 4 fields.

    Also, What happens when someone submits an event? Does it give an error? Or does it go through and not show in the backend?

    Thanks

    in reply to: Problem with breadcrumbs – undefined index notices #722259
    Brian
    Member

    I am glad to see you were able to fix the issue.

    Since the issue is resolved I am going to go ahead and close this ticket. If you have a similar issue or another in the future, please do not hesitate to create a new ticket.

    Thanks!

    in reply to: Location Search #722024
    Brian
    Member

    Martin,

    Sorry for the troubles here on the Location Search, but I can help you out with this.

    I took a look at your site(looks nice!) and could see the problem.

    The dropdown example you give is correct on how it works. So that part is fine.

    So the problem is no results are returning.

    I went to the map view too and that is not working on my console should a 404 error. So I have two steps that can help narrow down this problem:

    Step 1
    This may not fix it, but to at least rule it out can you please follow our 404 error guide:

    https://theeventscalendar.com/support/documentation/troubleshooting-404-errors/

    Step 2
    Please try deactivating Events Calendar Pro, reflushing permalinks per the guide and check the Location Search Again and see if that helps.

    Please let me know what you find out from both of those steps and we can go from there to fix this.

    Thanks

    in reply to: Event Submissions are disabled #721975
    Brian
    Member

    Hi,

    Sorry for the troubles with this, but I can help you get this resolved.

    I visited the site and went to the typical url for the Event Submission and got a 404 Error.

    http://www.nyclout.com/events/community/add

    So there is two things I would like you to do.

    Step 1
    First please follow the 404 Error Guide and see if that fixes it.

    https://theeventscalendar.com/support/documentation/troubleshooting-404-errors/

    Step 2

    If not then please go to:

    Settings then the Community Tab(if the Community Tab is not showing, please check that the plugin is activated or still there, maybe something happened to it?)

    Once on the Community tab please let me know what the settings are for the 4 fields in the General Section on top.

    Let me know what you find out from both of those and we can go to the next step to resolve it.

    Thanks

    in reply to: Links Not Working in IE9 #721962
    Brian
    Member

    Hi, I can help you with your IE9 issues, but it is going to be difficult without seeing the site as it is on your local development stack.

    I just tested the plugins in IE9 and it is working.

    So it sounds like a Javascript conflict is the problem.

    The first thing I would recommend doing is using the Developer Tools with IE and finding out what is in the console for errors. You can post those errors here if you like and I can try to help resolve them.

    Also, if you can move the site to a development url and we can see the site I can provide much more support then this.

    Let me know what you find out in the Developer Console and we can go from there.

    Thanks

    in reply to: Unable to get Organizer Name, Schedule Details, etc. #721952
    Brian
    Member

    Hello, I understand you are having some issues with ‘tribe_get_organizer()’ and I can help you out with that.

    I went in and edited the month/single-event.php that I moved to my theme and I as was able to see the Organizer when i did this:

    <div id="tribe-events-event-<?php echo $event_id ?>" class="<?php tribe_events_event_classes() ?>" data-tribejson='<?php echo tribe_events_template_data( $post ); ?>'>
    <h3 class="tribe-events-month-event-title entry-title summary">" class="url"><?php the_title() ?></h3>
    <?php
    $ID = get_the_ID();
    echo tribe_get_organizer($ID);
    ?>
    </div><!-- #tribe-events-event-# -->

    Can you try to replace that coding in your custom template at the bottom and see if it shows up.

    If nothing is showing could you try placing a word before the <h3> tag and see if that shows up.

    Please let me know if that word does not show up and then can you provide the directory structure to where your custom templates are so we can rule that out as an issue.

    Let me know what you find out and we can go from there.

    Thanks

    in reply to: View as List not showing events #721909
    Brian
    Member

    I am glad to see you were able to fix this issue.

    Since the issue is resolved I am going to go ahead and close this ticket. If you have a similar issue or another in the future, please do not hesitate to create a new ticket.

    And njdec since this ticket is closed, please create a new ticket for your issue and reference this one and we can help you out.

    Thanks!

    in reply to: Product Variations #721905
    Brian
    Member

    Ok, glad you are were able to figure something out. I would encourage you to up vote this option on our UserVoice Page as it is were we get most of our ideas for new features and the higher it is up voted the more likely it maybe added.

    Since the initial question is resolved I am going to close this ticket, but if you have any more issues or question related to this or completely different please create a new ticket.

    Thanks!

    in reply to: Display past events on organizer's page #721896
    Brian
    Member

    Ok, I see what you are trying to do now.

    Another option for ‘eventDisplay’ is:

    'eventDisplay' => 'past'

    That will then show just past events. However, on that page it is not as easy as coping the coding creating the events and changing the ‘eventDisplay’ You can use that existing coding to display one or the other and then you would have to create another loop to display the other events either upcoming or in the past.

    However, that customization is going to be up to you, I can help if you get stuck, but not much more beyond that.

    Thanks

    in reply to: View as List not showing events #721871
    Brian
    Member

    Hello,

    Thanks for the error messages and your notes. All the messages are notices and not warning’s so usually that does not prevent the site from working, but it might.

    It looks like you fixed the first message so here are my notes for the other two.

    [03-Sep-2014 17:32:39 UTC] PHP Notice: tribe_meta_event_cats is deprecated since version 3.0! Use tribe_get_event_categories( $post_id, $args ) instead. in /home4/haboincc/public_html/paintedcellars/wp-includes/functions.php on line 3078

    It looks like coding in the custom templates using an older function that is deprecated. Since it looks like you are using custom templates for the Events Calendar and you just took over the project I would suggest removing all the custom templates and seeing if that resolves the issue.

    I am not sure what customizations were made, but the easiest thing to do maybe to take the latest templates from the latest version of the plugins and add your customizations there.

    [03-Sep-2014 17:32:44 UTC] PHP Notice: Use of undefined constant ‘Instructor’ – assumed ‘‘Instructor’’ in /home4/haboincc/public_html/paintedcellars/wp-content/themes/painted-cellars/functions.php on line 18

    That coding looks fine, maybe it is a character issue? I loaded it into my test site and it worked without notices.

    I posted the coding I used here to fix the commas, try that and see if it works.

    http://pastebin.com/dChwZEdT

    Also, I just visited the site and it seems everything is working, were you able to fix it or???

    Let me know if you still would like some help.

    njdec – Please also check your error log and make any fixes you ca and also remove any customizations to see if that fixes it. If not please come back and let us know what you find out, but please do it in your own post and reference this one. It will be easier for us to give you better support as your issues maybe different from this one.

    Thanks

    Brian
    Member

    Ok so it works when it is the “Default (Modern Tribe) Events Template”, but not with the “Default (WP Theme) Page Template”.

    I did a test with Genesis Parent Theme and did not see any issues, but then I did a test with the latest version of the Education Theme and see it is not working there.

    I checked my Genesis settings and saw it does not work if the “Content Archives” Section is set to “Display post excerpts.”

    Let me know if changing that fixes the issue.

    As it works in at least one template is what we strive for and why we provide different options.

    If you cannot get it to work with the “Default (WP Theme) Page Template”, then let me know if you need help making customizations to the “Default (Modern Tribe) Events Template” as I think it would be better to focus on changing that.

    Thanks

     

Viewing 15 posts - 11,011 through 11,025 (of 11,256 total)