clb2196
Forum Replies Created
-
It appears I can get it to work if I enable ajax- which is fine, but should it work without it?
Nevrmind, I dont think the hook is the issue but the action I’m taking after.
Well the way siteground’s support handled it (combined with iother things) ended up being the trigger for me to finally move away since myplan was almost up. Happy to report this is in fact working fine on Cloudways staging. Thanks for the help!
Ok so they (siteground) confirmed that they are not rate limiting, and they white listed the IPs. I completely deleted the plugin and re-installed, and I still get the same error.
Thanks Dan- I did already ask and they said they weren’t blocking it at all, but I will send this info and see what they say.
The strange thing is I did try to connect from my Production site out of curiosity and it seemed to work fine, just not on staging- I did tell my host that too.
Forum: Plugins
In reply to: [WP Ultimate Post Grid] Show empty?Sure- I don’t have a lot of listings set up yet but you can get the idea of the setup: http://pursuitcommunity.com/gold-star-collective/
Thanks!Forum: Plugins
In reply to: [WP Ultimate Post Grid] Show empty?I’m trying to brainstorm some ways to handle this still. The main concern is we are starting from a map. So if someone clicks, say, CT, and there are no listings that have the CT term, it instead shows all the results, which could be confusing. Is there any way to force the deep link to show a “no results” message? I’ve been looking at the javascript but figured I’d see if you had some thoughts.
Forum: Plugins
In reply to: [WP Ultimate Post Grid] Grid display- widths and line breaksAh I think I got it! I had removed the nonbreaking space but even a comma didn’t work. I had to use this as the term separator: , <wbr>
Hope that can help someone else!
Forum: Plugins
In reply to: [WP Ultimate Post Grid] Show empty?Ah, I looked at the code- so are you looping over the posts and grabbing the terms that way? That makes sense then. Hm. Probably not worth a code workaround for now. I’ll keep an eye out for updates!
Forum: Plugins
In reply to: [WP Ultimate Post Grid] Show empty?The main thing is for the States filter, we’d like to have all states show just to be cohesive, and because it’s being used with deep linking from a clikckable map. I’m fine with custom code- I did make sure to add the show empty = true to those sorting methods you wrote for me.
Forum: Plugins
In reply to: [WP Ultimate Post Grid] Two Filters, One GridPerfect, thanks so much! This plugin is excellent and your support in taking the time to write custom code is much appreciated!
My only other “like to have” would be ideally I’d love to have the filters actually size by side in columns- still with the lists and not a drop down though. I suspect that may be possible with some code and css but probably not worth the trouble.
Forum: Plugins
In reply to: [WP Ultimate Post Grid] Two Filters, One GridSure, so what I want to do really is:
Refine by State:
CT, MA, etcRefine by Category:
Apparel, Photographer, etcI’ve got the separation of the taxonomies now (that code was perfect, thanks!) but I would really like to add the labels above them.
Forum: Plugins
In reply to: [WP Ultimate Post Grid] Two Filters, One GridActually I just realized it needs to instead be in front of the first state, since All is global. But same problem I think.
Forum: Plugins
In reply to: [WP Ultimate Post Grid] Two Filters, One GridFantastic @brechtvds, I will give that a try!
One other thing, I’m also trying to update that replace method to add a label to the filters. I was able to update the initial one, and this works:
return str_replace( $break_after . ‘</div>’, $break_after . ‘</div>
Categories:
‘, $output );Which is awesome!
However, the new one I wrote is trying to add the label above/before “All” and that seems trickier. Here’s what I have, and here’s what it’s doing. I can see why but I’m not sure how/if I can fix it. Any ideas? http://pursuitcommunity.com/?wpupg_grid=directory$break_before = ‘All’;
return str_replace( $break_before, ‘States:
‘ . $break_before, $output);Forum: Plugins
In reply to: [WP Ultimate Post Grid] Two Filters, One GridSo, I’m trying to do basically this exact thing. Except, I have a lot more options in each filter. Is there any way around hard coding them all in? Mine are 2 different taxonomies, so could I maybe order by taxonomy?