TomHarrigan
Forum Replies Created
-
Oh man, it’s been a while. I think you’re gonna be able to do that by modifying the value of the ‘threshold’ variable on line 116 of transporter.js
Forum: Plugins
In reply to: [Infinite Post Transporter] Not working to show post contentok, since I have a copy of the theme now, I can fully test it out and take a closer look. It won’t be immediately but I should have time this evening. Thanks!
Forum: Plugins
In reply to: [Infinite Post Transporter] Not working to show post contentOne other thing, which will probably be easier as I’m guessing there’s a reason that was commented out: In the plugin, in the transporter.php file, on line 349 you’ll see the following: https://d.pr/i/1hTig
Changing that from true to false should fix the issue as well
Forum: Plugins
In reply to: [Infinite Post Transporter] Not working to show post contentHey, I took a quick look. In your footer.php file, the call to wp_footer() is commented out: https://d.pr/i/1kyBC
I believe that’s what is causing the script to not load, since wp_enqueue_script() relies on wp_head() and wp_footer() to load scripts
Forum: Plugins
In reply to: [Infinite Post Transporter] Not working to show post contenthm, that’s odd, sorry. Unfortunately I don’t have access to that theme. If ya have a zip file of it available, I might be able to take a quick look if I get a moment tonight. [email protected]
Forum: Plugins
In reply to: [Infinite Post Transporter] Not working to show post contentHey rafaelcmrj,
Have you added the following to your functions.php file?
add_theme_support( 'infinite-transporter', array( 'container' => 'content_box' ) );
Forum: Plugins
In reply to: [McNinja Post Styles] Audio post formatgot it. Will take a look later today.
Forum: Plugins
In reply to: [McNinja Post Styles] Audio post formatI’m not sure why that would be happening without looking at the code from the theme. Happy to take a look though. Email: tom29axp at gmail dot com
Forum: Plugins
In reply to: [McNinja Post Styles] Audio post formatIt looks like your theme supports Post Formats, and I’m guessing you have the Audio format selected in the Post Format meta box. Set it to the Standard post format, which should then display your featured image.
My plugin should add a meta box called ‘Post Styles’, you’d want to select Audio in that one. It’ll add the player to the excerpt area of the post.
Forum: Plugins
In reply to: [McNinja Post Styles] Audio post formatOh, it looks like that image is just the featured image of the post and that the audio player just sits directly under the featured image.
So in your case, I’d recommend using the plugin as is, and set a featured image for the post if you’d like to have an image displaying in addition to the audio player.
Once you activate the plugin, just go to Settings -> Reading and enable the formatting functionality as seen in the screenshots section of this plugin.
Cheers,
Tom
Forum: Plugins
In reply to: [McNinja Post Styles] Audio post formatHey lestra,
At the moment the Audio post style will display the audio player, but the album image above it would only display if the theme had added that customization to the audio shortcode.
Do you have a link where I could see that audio player from the screenshot? I may be able to provide a snippet to get the image in if your theme isn’t doing that already.
Forum: Plugins
In reply to: [Infinite Post Transporter] Facebook commentHey, there’s a javascript trigger called ‘post-load’ that fires whenever new posts are loaded into the page so you should be able to just fire the facebook parse function through that.
The following should be what you need:
( function( $ ) { $( document.body ).on( 'post-load', function () { FB.XFBML.parse(); } ); } )( jQuery );
Here’s the same snippet as a Github Gist
Forum: Plugins
In reply to: [McNinja Post Styles] Does not display the post formatMarking as resolved as well, but let me know if you have any questions/issues ??
Forum: Plugins
In reply to: [McNinja Post Styles] Does not display the post formatMarking as resolved as well, but let me know if you have any questions/issues ??
Forum: Plugins
In reply to: [McNinja Post Styles] Does not display the post formatHey Natalia, I just released version 2.0 of the plugin!
After updating/activating, just go to Settings -> Reading and select the ‘Enable Post Style Formatting’ option.
This new version will do formatting based on the selected Post Style. I’ll be doing a lot of work on the documentation and such over the next few days as well.
Thanks Natalia,
Tom