ryanfriedman
Forum Replies Created
-
Forum: Plugins
In reply to: [Publish To Apple News] Excerpt Appearing TwiceI’m confused how that would be happening. It looks like the excerpt is being considered part of the body of the post, and being used with dropcap style. Is there a way for me to manually hide or edit the JSON in the theme to remove this heading?
Thanks,
RyanForum: Plugins
In reply to: [Publish To Apple News] Excerpt Appearing Twice@kevinfodness (@ mentioning in case replies don’t trigger a notification)
Forum: Plugins
In reply to: [Publish To Apple News] Excerpt Appearing TwiceHi Kevin,
Thanks for checking this out. Here is the raw post content from the text tab of one of our posts:
However, the lede excerpt does not appear in the post content but rather is being used via the built-in excerpt property of WordPress. You can see the excerpt underneath the post title and above our bylines on one of our posts here:
http://www.thewrap.com/patton-oswalt-says-his-late-wifes-book-will-be-published-next-year/
Forum: Plugins
In reply to: [Publish To Apple News] Excerpt Appearing TwiceHey Bradford,
Thanks for the reply. Here’s the JSON for one of our articles:
If you look at components ‘heading2’ and the first ‘body’ component, you’ll see the duplicated text.
Thanks,
Ryan
Forum: Plugins
In reply to: [Publish To Apple News] Excerpt Appearing TwiceBumping this w/ image attachment:
https://www.dropbox.com/s/w898bode55rh0x4/AppleNews-DoubleLede.png?dl=0
The duplicated text – ‘ABC finishes first in key 18-49 demo, NBC is No. 1….’
Forum: Plugins
In reply to: [Publish To Apple News] “Needs to be updated” and “Pending” State MessagesThanks for the response Bradford –
For posts that show the sync status ‘Needs to be Updated’, there is no option to ‘Publish’. In place of ‘Publish’ is a ‘Reset’ button.
We currently have the ‘Automatically update in Apple News when updated in WordPress’ set to ‘yes’ in our settings panel but are still seeing the ‘Needs to be Updated’ sync status.
Any other ideas what could be going wrong?
Forum: Plugins
In reply to: [SVG Support] External JS Animation via Inline Render Callback$(window).load(function(){ //your code here });Did the trick! Thanks for answering these queries on a Sunday!
This might be worth adding to the docs for using JS animations. I was using $(document).ready, thinking it would have the same effect, but I was wrong. My knowledge of JS has now been expanded!
Targeting via $(‘.replaced-svg’) wasn’t working because the item wasn’t on the page when the JS fired. Since $(window).load is event driven, it’ll postpone the firing of the JS until your script does its magic.
Thanks again!
- This reply was modified 8 years, 12 months ago by ryanfriedman.
Forum: Plugins
In reply to: [SVG Support] External JS Animation via Inline Render CallbackHi Ben,
Thanks for the quick reply!
I can see how this would help with CSS animations but I don’t see how this would help with JS, since the JS is firing before the inlining takes place, and there’s no way I can postpone it until after.
Even if I use the .svg-replaced class to target the SVG in JS, it will not be found because the element does not exist inline yet.
The issue is more event driven than target driven.
Hope this makes sense.
-Ryan