- This topic has 32 replies, 3 voices, and was last updated 8 years, 7 months ago by
Lyle.
-
AuthorPosts
-
August 16, 2017 at 11:51 am #367450
Roman
I am marking the topic resolved, in case I encounter any issues with this specific plugin I may re-open it. Thanks
August 16, 2017 at 12:15 pm #367478Roman
Well, this of course doesn’t allow using other features of new page header ad-on, like content overlayed featured image, parallax etc…
August 16, 2017 at 2:08 pm #367563Tom
Lead DeveloperLead DeveloperThat’s correct, those features would currently require the image to be locally hosted.
I’ll try to make it more robust in future versions.
August 17, 2017 at 12:31 am #367763Roman
Please consider that hosting images localy might not be the right way for image heavy sites as WP has not improved media handling for ages.
I would apreciate either GPP 1.4.x to be back compatible with GPP 1.3.1 regarding featured images or to have an option to use previous version of header ad-on for posts. Those fancy hero images may be usefull for static pages but the new header ad-on is just an overkill for single posts…
Meanwhile, are there any other ways how to use all features of the new header ad-on overlayed on background image delivered from the FIFU plugin?
August 17, 2017 at 4:03 am #367856Roman
By the way, your a/m code doesn’t work for Single Post Header Location options: Inside content area and Below post title – no image delivered from FIFU plugin at all.
August 17, 2017 at 8:54 am #368028Tom
Lead DeveloperLead DeveloperWhat’s strange is that the code that displays the image is identical in 1.3 and 1.4 – technically, it shouldn’t have been working at all in 1.3.
I’ll absolutely try to adjust things so it works with that plugin, but you’re the only person that has needed the ability to host images off-site (I don’t really understand the reasoning).
The code I gave you hooks into the “generate_after_header” hook. You can adjust it to hook into any hook you want: https://docs.generatepress.com/collection/hooks/
August 17, 2017 at 12:49 pm #368223Roman
But have been working pretty well. These are things between heaven and earth 🙂
Thank you for your willingness to investigate further.
Hosting images off-site has an advantage that I can store even large originals outside WP for free up to for example 1TB with Flickr and to save money for hosting the site and bandwidth. Just google it and you will find out that photographers do it on their photo sites/ blogs.
August 17, 2017 at 5:51 pm #368382Tom
Lead DeveloperLead DeveloperI think I found a solution.
If you’d like to test it before I release 1.4.3, shoot me an email: https://generatepress.com/contact/
Thanks!
August 17, 2017 at 11:41 pm #368484Lyle
Roman, Tom,
Just want to jump in on this as I have recently found and use the FIFU plugin and would also be interested with any developments for it’s use with GPP.
My use case is somewhat different in that I was looking for a way to add a featured image to a post that had been created with Open Live Writer (or MarsEdit for the Mac). These two offline editor do not natively offer this. FIFU however cures this by setting the first image in a post as the featured image.
Additionally, I now have added this plugin to other post heavy sites as it adds a very nice feature and that is a column in the page/post list with a thumbnail of the featured image (if applied). Very handy 🙂
I put together a tutorial on OLW with GPP Sections and mention this plugin although it is not used in this case.
http://snifflevalve.com/tutorials/generatepress-premium-using-open-live-writer-insert-edit-content/
Cheers!
LyleAugust 18, 2017 at 12:40 am #368514Tom
Lead DeveloperLead DeveloperJust sent it to you Roman.
The only thing you should have to do now is “trick” GPP into thinking a featured image exists, since FIFU sets the featured image ID to -1:
add_filter( 'generate_page_header_options', 'tu_featured_image_from_url' ); function tu_featured_image_from_url( $options ) { $args = array( 'post_type' => 'attachment', 'post_mime_type' =>'image', 'post_status' => 'inherit', 'posts_per_page' => 1 ); $image = new WP_Query( $args ); if( $image->have_posts() && get_post_meta( get_the_ID(), 'fifu_image_url', true ) && is_singular() ) { $options[ 'image_id' ] = $image->posts[0]->ID; } return $options; }August 18, 2017 at 12:56 am #368525Roman
This code together with the new beta of GPP works partially. With empty Page Header, featured image is shown as expected, bud as soon as any content is added in to Page Header, featured image disappears.
August 18, 2017 at 9:33 am #368776Tom
Lead DeveloperLead DeveloperThe featured image has always been removed once page header content is added. Did it used to use the FIFU plugin to set the background image?
August 20, 2017 at 8:45 am #369855Roman
If it is possible to use locally hosted featured image as the background image, it might also be possible to use the featured image delivered through the FIFU plugin this way.
August 22, 2017 at 3:07 am #371060Roman
Any fix?
August 22, 2017 at 11:37 pm #371686Tom
Lead DeveloperLead DeveloperNot yet – still looking into it. Will update this thread with an answer 🙂
-
AuthorPosts
- You must be logged in to reply to this topic.