Arlo
Forum Replies Created
-
I’m having the same issue. Did you ever resolve this?
Forum: Plugins
In reply to: [Gravitate Event Tracking] Gravitate not registering subsequent anchor linksHi, any update on this bug?
Forum: Plugins
In reply to: [Gravitate Event Tracking] Gravitate not registering subsequent anchor linksIt’s happening with a _blank link as well.
Forum: Plugins
In reply to: [Gravitate Event Tracking] Gravitate not registering subsequent anchor linksClicking a subsequent link does run the code, but it’s returning the wrong link.
Say I have three links:<a href="#one"> <a href="#two"> <a href="#three">
If I click on
#one
, I get'jump_#one'
in console, which is correct.
However, if I then click on#two
, I get'jump_#one'
again, not'jump_#two'
as expected. And any further links on that page will continue to only return'jump_#one'
.In short, the first anchor link I click on a page is incorrectly being applied to all subsequent clicks of other links. I hope this makes sense.
Hiding for individual user works fine, thanks!
Forum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] Nested loops relating to one CPTThese are my connections:
p2p_register_connection_type( array( 'name' => 'blurb_writer', 'from' => 'blurb', 'to' => 'writer' ) ); p2p_register_connection_type( array( 'name' => 'blurb_article', 'from' => 'blurb', 'to' => 'articles' ) ); p2p_register_connection_type( array( 'name' => 'writer_article', 'from' => 'writer', 'to' => 'articles' ) );
I’ve been testing in parallel using just taxonomies to get the job done, but of course this isn’t ideal for the user (they’d need to manually add taxes of the same kind in multiple tax-types to achieve what p2p *should* alone).
Forum: Plugins
In reply to: [Posts 2 Posts] [Plugin: Posts 2 Posts] Nested loops relating to one CPTscribu- thanks for that, I did actually go through that page, but really couldn’t make sense of it.
dlukez, thanks so much for the snippet. The loop nesting is breaking a bit somehow:<ul> <li>Writer1</li> <li>Writer1 <ul> <li>Blurb A</li> <li>Blurb B</li> </ul> </li> </ul>
Not only is “Writer1” repeating but I should not be seeing “blurb b”, as that is connected to another article. It is connected to Writer1, however, so it seems the filtering by the main article loop isn’t working.
But one thing I should add, is that p2p_list_posts() won’t work for me in this instance, as I need to output custom content for each writer/blurb grouping, not just a link list. I’m wondering if what I want to do is just too complex in general.
Forum: Plugins
In reply to: [Hyper Cache] Hyper Cache does not invalidate the home pageI had the same problem. Luckily, there is a workaround of sorts. Stick this at the top of the home page template:
global $hyper_cache_stop; $hyper_cache_stop = true;
Unfortunately this completely turns cache off for the page, not force a refresh. In my case, the home page is updated so often, it’s not worth caching anyway.
It’s explained a bit more in the docs
https://www.satollo.net/plugins/hyper-cacheForum: Plugins
In reply to: [Onswipe] [Plugin: Onswipe] Doesn't work with 3.01edit: fixed, some plugin issues. It will load individual Pages, but spins trying to load categories..
Forum: Fixing WordPress
In reply to: Automatic image url linking and size proposal in 2.9grandp –
This is my exact issue too; with the gallery, you can’t edit those links.Forum: Fixing WordPress
In reply to: WP 2.9 image insertion no longer allows url to off site resourceNot fixed for me, WP 2.9.2. “Save Changes” from Media didn’t work. This is beyond frustrating, because I need the PERMANENT links set, not just in the post content.
Forum: Fixing WordPress
In reply to: Automatic image url linking and size proposal in 2.9Broofa- Unfortunately that workaround only works on images placed in posts. It doesn’t fix the issue of the link URL changing within the media library itself.
Forum: Plugins
In reply to: [Plugin: Shadowbox JS] blank shadowbox in IE when linking to FlashI’m having the same problem, but noticed that if you resize the browser window, the flash appears. It seems to be a refresh issue. Haven’t found a solution yet, though..
Forum: Fixing WordPress
In reply to: Sintax Highlighter in Themes and PluginsSo it seems like rather than looking into a fix, they just disabled it for those browsers? Lame. Either make it work across the board, or dump it.
Edit: Hangon, they rolled Codepress into WP, a script that is NO LONGER DEVELOPED? WTF?
Forum: Plugins
In reply to: Markdown broken in 2.7.1Fixed. Once again forgetting about Super-Cache…