sorting k2 items in Events template

GK User
Wed Sep 17, 2014 4:14 pm
Hi!
I need to change order of the "rectangles" in Upcoming Events.
In the back office there is a Drag&Drop option but it's not working.
Can this be solved?
Thank you!
av
User avatar
Junior Boarder

GK User
Thu Sep 18, 2014 9:12 am
Hello,

Did you tried to change the order options under the NSP GK5 module settings which displays this block?
User avatar
Administrator

GK User
Fri Sep 19, 2014 10:09 am
Hi!
I got it. Thank you. Concerning sorting: done!
However I have disabled "Header" and "Image" links in the same module but they still link...
Can you help?
Thanks
av
User avatar
Junior Boarder

GK User
Fri Sep 19, 2014 10:15 am
The header/image settings are not working under the portal modes. You have to modify the portal mode output file if there is no settings for it under the portal mode settings tab.
User avatar
Administrator

GK User
Fri Sep 19, 2014 2:56 pm
The module mode is the "Standard Mode" and not "Portal Mode" so if I understood well links in images and title can be disabled.
I did it in the module and the link is still there. How can I unlink them?
Thank you!
User avatar
Junior Boarder

GK User
Sun Sep 21, 2014 9:53 am
Sorry, my mistake - this instance uses the article format so you have to edit the article format structure from:

Code: Select all
<div class="gkEventInfo">
<a href="{URL}"><img src="{IMAGE_SRC}" alt="{TITLE}" /></a>
<div>
<h3><a href="{URL}">{TITLE}</a></h3>
<small><i class="gk-icon-clock-solid"></i>{{eventhours}}</small>
</div>
</div>


to:

Code: Select all
<div class="gkEventInfo">
<img src="{IMAGE_SRC}" alt="{TITLE}" />
<div>
<h3>{TITLE}</h3>
<small><i class="gk-icon-clock-solid"></i>{{eventhours}}</small>
</div>
</div>
User avatar
Administrator

GK User
Mon Sep 22, 2014 9:51 am
Thank... can you tell me where is the page I should change? :-)
User avatar
Junior Boarder

GK User
Mon Sep 22, 2014 3:47 pm
The article format is defined under the module basic settings.
User avatar
Administrator

GK User
Wed Sep 24, 2014 11:17 am
Found it! Thank you!
User avatar
Junior Boarder


cron