Samuel

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 51 total)
  • Author
    Posts
  • in reply to: WP-Shindig theme link? #927227
    Samuel
    Member

    Hi zOrg!

    I’ve gone ahead and bundled up the new responsive edition for you, you can grab it here.

    Let me know if that works for you!

    Sam

    in reply to: Google Maps not working #62615
    Samuel
    Member

    Hey charlestupman. OK, this is doable, but a reasonably complex task. To mix our ajax with their system as they wrote it would require much more than just reloading the scripts in that function. We utilize the preferred approach in wordpress for ajax and use the built in wordpress handler for our operations. We also use our own lightweight history management javascript that does not utilize the phasing out hashchange events as this script does.

    This means there is multiple incongruity that would require good chunks of custom code.

    I do apologize but this level of code customization would be outside the scope of support, I hope you can understand. Let me know if there is anything I can help with, or if you wish to attempt it, i can definitely answer questions you may have along the way.

    All my best

    sam

    Samuel
    Member

    Hey there hallahund. I just tested this and it looks like the problem you are describing is a browser bug specific to certain versions of webkit. If you try in firefox or ie10 you will see the problem does not occur (let me know if I am wrong).

    I wrote a custom history management solution for the plugins ajax. I was aware of this issue with webkit/chrome and had thought i fully patched for it. It is an annoying bug because it behaves differently across versions of chrome/webkit.

    I will open a ticket and take a look at this, but am going away for a week next week so it will be a little while until I can get to it.

    Thanks for bringing this to my attention. All my best

    sam

    in reply to: Google Maps not working #62544
    Samuel
    Member

    actually, copy from this gist so no text \encoding issues arise. 🙂 or let me know you need the file. 😉

    https://gist.github.com/faction23/368429cfd201e309e653

    in reply to: Google Maps not working #62543
    Samuel
    Member

    Hey charlestupman! Sam here. OK, i went ahead and investigated your site again, then got a copy of the theme and tested in my local. The issue here is a flaw with the themes ajax. It is not loading the required maps script, among other things events needs. The best solution if you are dead set on this theme is that we somehow exclude tribe pages from the themes ajax process.

    I have accomplished this in my local with this theme, but we have to hack a theme file, which is not ideal, but the best I can do for you (the author did not bake in a exclusion mechanism).

    In the theme folder find the file ajax.js inside the js folder. at the very top is were the handler is bound that triggers the themes ajax. Lets modify the listener to exclude tribe links as a whole.

    Change

    $(‘body’).on(“click”,”a[href^=”+siteUrl+”]”, function() {

    to

    $(‘body’).on(“click”,”a[href^=”+siteUrl+”]:not(#tribe-events a)”, function() {

    Note the :not(#tribe-events a) telling the handler to ignore out links. If you cant do the edit yourself let me know and I can supply the modified file. Remember, on theme updates you will need to reapply the patch. Or you could petition the theme author to add an exclusion mechanism.

    Cheers!

    sam

    Samuel
    Member

    Hey wsansewjs! Support has been alerted to review the ticket (it was already in their queue) and we will ensure this goes out with next release. Thanks again

    sam

    Samuel
    Member

    Correct, that is the bug that has been patched last week. It is currently in code review for the next release. Sorry again for the trouble, its a conflict between the datepicker and the latest version of another js script that cropped up, the one that makes ie8 and ie9 able to show placeholder text on inputs.

    Samuel
    Member

    Hey there wsansewjs. Sorry for the trouble you are experiencing.

    We do support ie8 and ie9 with our plugin, we just do normal reloads not ajax. There is a bug with an updated placeholder script that caused the datepicker to have issues in ie8 and 9, but that has nothing to with ajax. I patched that last week and it should release with next version soon. Is that the issue you are having? Otherwise the search bar functions are working on your site for me.

    Samuel
    Member

    Hey there Suzanne! let me know when you get the update in and I’ll take another look asap!

    sam

    in reply to: Theme Integration #59221
    Samuel
    Member

    Hey there billysob! Here is a gist showing how to get events from a category with 3.0 anywhere in your template files while events is active:
    https://gist.github.com/faction23/bd9dcbc1cfaea5c3c01e
    Set the recurrence flag to true or false to hide or show subsequent recurrences. The query is setup to run from the current date. Set your category with the category slug you desire, were “parties” are currently used.
    Let me know if that works/helps!
    sam

    in reply to: Events Pro Map not showing up #58978
    Samuel
    Member

    Hey there cashoefman! I happened to get the theme you are using to debug an issue and think i know what is causing your issue. Please go here and disable all three options:
    http://murrietafieldofhonor.com/wp-admin/admin.php?page=theme_advanced&tab=optimizer

    should fix your issue. let me know if it doesnt.

    That theme’s “optimizers” are disabling localized strings our plugins require. the plugin author should be notified of this issue with their theme.

    in reply to: Calendar Popout and Venue drop down not working #58973
    Samuel
    Member

    Hey there! Sorry for delay, holiday here in bc today. Thank you for supplying the theme! OK, so, it is as suspected. The theme is unfortunately firing the library select2 in the admin on ALL select elements for events edit pages.

    wp-content\themes\striking\framework\admin\assets\js\theme.js line 69

    api.option.select

    now i see he/they actually opens with var initChosen = function(element){ so by the name chosen i think until recently he/they were using chosen, which is why it didn’t conflict with us (assumption on my part), but since it switched to using select 2 (which it does now), it is causing a javascript error with our library chosen on those same selects.

    The theme author should not be applying a lib to all types of an input in wp admin, this is def an issue thyey might want to address. It would be preferred if they could use and inclusion mechanism, like a unique class, as is common.

    Right now i dont know what to do about this, bar writing some custom script to intercept their global and wipe out the function on our pages. We will be moving to select2 ourselves soon, so that could solve it too, but that will take a bit.

    We should try contacting the theme author on this.

    in reply to: Calendar Popout and Venue drop down not working #58600
    Samuel
    Member

    sorry for the trouble dlehrner. Could you please resend the theme to cthulhumythos /a/ gmail.com ? my server did not allow the zip through due to some of the js it found with the mailscanner. thank you.

    in reply to: Community Submission Form – Odd Stray Markup #58591
    Samuel
    Member

    Hey there Kristel! Just to let you know, yes, i did find some empty p tags which i’ve removed, and i also modified the conditional for the script tag to not print empty. I am noticing though that you have additional p tags not present in our plugin. It’s possible something else is running an auto p filter onto our output. are using the stock template files or overriding? cheers!

    in reply to: Calendar & Calendar Widget Load Extremely Slow #58525
    Samuel
    Member

    Hey Harold. The update that was released does not yet address the core query issues for gridview we are working on now. In regards to wp3.6 we are doing a full compat run for events now, with no glaring issues currently coming to light. We will keep this and pertinent threads updated with our progress as soon as there is something to report. This is of top priority to us and we again apologize for the current inconvenience for large systems on month view.

Viewing 15 posts - 1 through 15 (of 51 total)