Jump to content

Expeditiary

Clients
  • Posts

    4
  • Joined

  • Last visited

Profile Information

  • Location
    USA

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Expeditiary's Achievements

  1. Which is just so damned strange. There isn't any reason for it to do that just because of this plugin. On the page itself, there is just that button - and, you *must* click it before it loads any of the who viewed data - just viewing the topic that data is not there. So that leaves the underlying code hooks. One just says hey, if someone is viewing this topic write to a database field they are viewed this, the other is only called when you click the button to get that list of viewers. So damned odd... Let me play with this on my end, I doubt I need to Facebook it up as I can just look at the RSS feed directly and see what's up. If the image is not included (or is correct) in the RSS then this going to be something out of my hands - though it may be with the Zapier thing you have crafted. Going out for Greek food in a bit but I'll give this a look over when I get back. If you can, could you PM me the specific Zapier app (or custom code you are using there), and I may later need ACP access to debug this correctly (if this is solvable on my end) (Sorry, this is AA, doing other account stuff today)
  2. I can work around this easily enough by swapping out the padding for custom margin-left margin-right calls so no big deal for me now that I know how to fix it but very cool you are fixing it as others might have the same problem. Great fast support response!
  3. .ipsLayout_container { max-width: 1340px; padding: 0 15px; margin: 0 auto; position: relative; } That's the default theme css. Works. Now change that to this, still on the default theme: .ipsLayout_container { max-width: 1340px; padding: 0 75px; margin: 0 auto; position: relative; } Hover now breaks. It starts to break at about 50px; You can reproduce this on your demo site, just use a browser inspector to change the padding on ipsLayout_content Since my theme uses percentages it was easily greater than 50px most of the time.
  4. Got a wild one for you. Custom theme, but the main change is just a fixed position header. Plugin works fine on default of course. On this theme, any thumbnails, whether from the first post or uploaded separately as a topic thumbnail, if the image is mostly square in ratio ie 300x300, 700x700, etc. the hover function only works on the very left edge of the thumbnail. Anywhere else and the it breaks, repeatedly trying to insert the <p> element. If the images are not square *or* they are the default thumbnail (square or otherwise) they work fine. Took a quick look at the hover js and didn't see anything that jumped out at me. Any guesses? EDIT: Found the problem. .ipsLayout_container { max-width: 100%; padding: 0 6%; } If a left/right padding is applied to ipsLayout_container and it is not a fixed number of pixels but instead a percentage the y function in your js breaks. Found it when I collapsed the browser to tablet view and everything worked fine. Any way you can account for padding width percentages in your js?
×
×
  • Create New...