Custom HTML Code in content area

Free Joomla module to create slideshow on your website which includes different data like part of articles or text defined by user.
Rate this topic: Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.Evaluations: 0, 0.00 on the average.
GK User
Mon Jul 15, 2013 6:18 pm
Im trying to place some html code into the content block of image show version 1.36. Its not letting me though? Is this no longer possible?
User avatar
Fresh Boarder

GK User
Mon Jul 15, 2013 7:02 pm
Hi,
are you talking about custom code in Tabs Content area?
Yes it's possible
html_custom.png
User avatar
Platinum Boarder

GK User
Mon Jul 15, 2013 7:08 pm
Can you check what happens when i enter the same as you?

http://mycalture.co.za/clients/cycle/

It outputs:

[LEFTBRACKET]H3[RIGHTBRACKET]TEST TEST[LEFTBRACKET]/H3[RIGHTBRACKET]
User avatar
Fresh Boarder

GK User
Mon Jul 15, 2013 8:10 pm
You're right my fault. Now without hacking code it's not possible, but tomorrow morning I will ask how to do this.
User avatar
Platinum Boarder

GK User
Tue Jul 16, 2013 5:22 pm
Any luck here Pawel?
User avatar
Fresh Boarder

GK User
Tue Jul 16, 2013 9:32 pm
I have checked and by default module clean all HTML code, so you have to customize php to disable it.
It probably is inside this file: mod_image_show_gk4\styles\gk_creativity\view.php
if you're using this style.

Our developer (who is responsible for this module) was absent today, so I couldn't ask for details. I will try tomorrow.
User avatar
Platinum Boarder

GK User
Wed Jul 17, 2013 12:15 pm
I've got this info (from our developer), try...

Change from:

Code: Select all
<h2 data-anim="<?php echo $title_anim; ?>"><?php echo $title; ?></h2>
<h1 data-anim="<?php echo $content_anim; ?>"><?php echo $content; ?></h1>


To:

Code: Select all
<h2 data-anim="<?php echo $title_anim; ?>"><?php echo str_replace(array('[leftbracket]', '[rightbracket]'), array('<', '>'), $title); ?></h2>

<h1 data-anim="<?php echo $content_anim; ?>"><?php echo str_replace(array('[leftbracket]', '[rightbracket]'), array('<', '>'), $content); ?></h1>
User avatar
Platinum Boarder

GK User
Thu Aug 22, 2013 1:07 am
Hello,

I am having a similar problem with the Blurp style. I have dug into the view.php file and am not seeing the recommend code to replace.

Change from:

<h2 data-anim="<?php echo $title_anim; ?>"><?php echo $title; ?></h2>
<h1 data-anim="<?php echo $content_anim; ?>"><?php echo $content; ?></h1>

To:

<h2 data-anim="<?php echo $title_anim; ?>"><?php echo str_replace(array('[leftbracket]', '[rightbracket]'), array('<', '>'), $title); ?></h2>

<h1 data-anim="<?php echo $content_anim; ?>"><?php echo str_replace(array('[leftbracket]', '[rightbracket]'), array('<', '>'), $content); ?></h1>

Separately, I am having trouble switching the text on the read more button. Is there a way to have custom text for each read more button on each slide?

Thank you in advance for your help.

B.Richey
User avatar
Fresh Boarder


cron