Image support - HELIX3 blog options - featured image and post formats

Presale questions & requests related to RAXO modules
User avatar
Lisa
Posts: 1014
Joined: Feb 25, 2010 7:14 pm

Re: Image support - HELIX3 blog options - featured image and post formats

Post by Lisa »

Helix uses its own way to attach images to articles.
RAXO All-mode PRO module is designed to work with core Joomla content component. So it can process images that are either inside Joomla article body or in article image fields.
:!: Join me on Facebook to keep up with the latest RAXO news and other Joomla stuff!
msena
Posts: 1
Joined: Apr 15, 2018 7:25 am

Re: Image support - HELIX3 blog options - featured image and post formats

Post by msena »

Hello.
Change in file helper.php

Code: Select all

		if ($show_text || ($show_image && ($image_source == 'text' || $image_source == 'automatic')))
		{
			$query->select(' a.introtext, a.fulltext, a.attribs');
		}

		$show_image && $image_source != 'text' ? $query->select(' a.images, a.attribs') : '';
and

Code: Select all

		$empty	= array_fill_keys(array('id', 'title', 'title_full', 'link', 'date', 'author',
					'image', 'image_src', 'image_alt', 'image_title', 'text', 'readmore',
					'category', 'category_id', 'category_name', 'category_link', 'featured',
					'hits', 'rating', 'rating_value', 'rating_count',
					'comments', 'comments_count', 'comments_link', 'attribs'), '');
		$empty	= JArrayHelper::toObject($empty);
and

Code: Select all

		// Retrieve Image
		$img	= array_fill_keys(array('src', 'alt', 'ttl'), '');
		//$images = ($image_source != 'text') ? json_decode($item->images) : '';
		$images = ($image_source != 'text') ? json_decode($item->attribs) : '';

		if (!empty($images->spfeatured_image) && ($image_source == 'intro' || $image_source == 'automatic'))
		{
			$img['src'] = $images->spfeatured_image;
			//$img['alt'] = $images->image_intro_alt;
			//$img['ttl'] = $images->image_intro_caption;
		}
and select in the module advanced image settings: Intro Image
User avatar
Lisa
Posts: 1014
Joined: Feb 25, 2010 7:14 pm

Re: Image support - HELIX3 blog options - featured image and post formats

Post by Lisa »

Thank you for the instruction How to add Helix image support.
Yes, it should work.

An important notice:
While adding support for Helix images, this instruction kills support for core Joomla intro and full article images.
:!: Join me on Facebook to keep up with the latest RAXO news and other Joomla stuff!
rca
Posts: 4
Joined: Nov 24, 2014 8:35 am

Helix 3 framework thumb

Post by rca »

I am using Helix 3 framework inserting image from Featured (Helix Option).
This image is not used by Raxo selection mode of thumbnails.

You can check on http://rivistageomedia.it where new articles of today are shown without thumb.
(old article of 2018 ralized with K2 worked better)

Can you check the possibility to add automatically the generation of thumbs ?
Admin
Site Admin
Posts: 1537
Joined: Jan 31, 2010 9:53 pm
Joomla! version: 4.0.5
PHP version: 8.0

Re: Helix 3 framework thumb

Post by Admin »

rca wrote: Jan 03, 2019 10:33 am Can you check the possibility to add automatically the generation of thumbs ?
I moved your post to this topic.
See the instruction in several posts above.
rafaeltribos
Posts: 1
Joined: Aug 07, 2015 11:15 pm

Re: Image support - HELIX3 blog options - featured image and post formats

Post by rafaeltribos »

Not work in joomla 4 and raxo for joomla 4
etagure
Posts: 20
Joined: Mar 10, 2010 5:19 pm
Joomla! version: 1,5

Re: Image support - HELIX3 blog options - featured image and post formats

Post by etagure »

Hi, any info on how to add Helix ultimate option to RAXO module?

Can anybody make custom works?
Admin
Site Admin
Posts: 1537
Joined: Jan 31, 2010 9:53 pm
Joomla! version: 4.0.5
PHP version: 8.0

Re: Image support - HELIX3 blog options - featured image and post formats

Post by Admin »

etagure wrote: Jan 08, 2025 3:36 pm Hi, any info on how to add Helix ultimate option to RAXO module?

Can anybody make custom works?
We still need more details about your task. What exactly do you want to get as a result?
etagure
Posts: 20
Joined: Mar 10, 2010 5:19 pm
Joomla! version: 1,5

Re: Image support - HELIX3 blog options - featured image and post formats

Post by etagure »

Hello,

Thank you for your reply! I would like to clarify what I’m looking for.

Joomla currently lacks some features that are available in WordPress, such as a featured image and post types (e.g., Standard, Gallery, Video, Audio). I am interested in implementing a similar functionality in RAXO modules, where the module items on the frontend can dynamically display content based on the type of the article.

For example:

Gallery articles: Display a gallery icon or allow the photos in the gallery to slide/rotate directly within the module.
Video articles: Show the video itself or a play icon overlay on the thumbnail.
Audio articles: Display an audio icon or player within the module item.
Would it be possible to achieve this functionality in RAXO modules?

Looking forward to your response.

Best regards,
Petar
Post Reply