Column link

Is it possible to use a column as a link to another page?

this is the columns, with icon and text in middle. So I just need to link them (columns) to page.

Hi @waynepatt58,

Thanks for reaching out.

That’s not currently possible, but maybe doable with jQuery snippets. Example, please inspect your columns and go to customize section and apply a custom Class name. Like column_link_to_1

Then in your page’s custom javascript, please add this code

jQuery ( document ).on('click', '.column_link_to_1', function() {

window.location = 'http://example.com/page/link/to/';

} );

This is just a sample and as a snippet and we can’t provide further enhancement. You may repeat it over and over with different class name and URL link.

Thanks!

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.