Keyword

Advanced Search

Search Results (Searched for: k2 Tag)

  • Monia
  • Monia's Avatar
07 Jan 2014 18:36

[SOLVED] alphabetical ordered tags in item.php

Category: English K2 Community

hallo, i need a little help: is it possible in some automatic way to put in alphabetical ored the tags already inserted in k2?
and also, is it possible to put an embedded video in the top of a k2 item, instead at bottom?
  • Krikor Boghossian
  • Krikor Boghossian's Avatar
07 Jan 2014 16:40
Replied by Krikor Boghossian on topic Inserting modules into item

Inserting modules into item

Category: Commercial Joomla Templates

The code in general which should be used for placing modules outside index.php should be
<?php if(JModuleHelper::getModules('YOUR_MODULE_POSITION')): ?> <?php foreach (JModuleHelper::getModules('YOUR_MODULE_POSITION') as $module) {?> <?php echo JModuleHelper::renderModule($module, array('style' => 'YOUR_MODULE_STYLE')); ?> <?php }?> <?php endif; ?>

Replace YOUR_MODULE_POSITION with the position you want and YOUR_MODULE_STYLE

in your case the code in the item.php (html/com_k2/default/item.php) should look like:
<?php if(JModuleHelper::getModules('inner_Banner')): ?> <?php foreach (JModuleHelper::getModules('inner_Banner') as $module) {?> <div class="module"> <?php echo JModuleHelper::renderModule($module, array('style' => 'nu')); ?> </div> <?php }?> <?php endif; ?>

Use the <?php if($this->item->params->get('itemTags') && count($this->item->tags)): ?> code block to locate the tags and place that snippet above it.

PS. ALWAYS backup before doing this and keep a backed up file in case you update your template.
  • Krikor Boghossian
  • Krikor Boghossian's Avatar
07 Jan 2014 15:42
Replied by Krikor Boghossian on topic create another field for tags

create another field for tags

Category: English K2 Community

Hello,

Sadly custom taxonomies are not supported in K2.
However there are K2 extensions which extend the related items core functionality.
You can browse the JED or getk2.org/extend
  • Krikor Boghossian
  • Krikor Boghossian's Avatar
07 Jan 2014 14:32
Replied by Krikor Boghossian on topic Error with Loadposition Tag and K2 Content Module

Error with Loadposition Tag and K2 Content Module

Category: English K2 Community

I am using the {loadposition} tag to place a module named My Shortlist on a page called My Library


Is this page a K2 item? Have you enabled Joomla! plugins for this view?

I also cannot see the issue. have you changed anything.
  • Michael Yaeger
  • Michael Yaeger's Avatar
07 Jan 2014 00:04
[SOLVED] Limit of Tags in K2 Admin Filter was created by Michael Yaeger

[SOLVED] Limit of Tags in K2 Admin Filter

Category: English K2 Community

I have the "Filter by Tags" option enabled in the K2 admin. However, it is only showing the first 1,000 tags in the dropdown list. How can we ensure that all tags are an option for the k2 items filter?
  • Kory Mitchell
  • Kory Mitchell's Avatar
03 Jan 2014 22:59 - 03 Jan 2014 23:00

Error with Loadposition Tag and K2 Content Module

Category: English K2 Community

Hi,

I am using the {loadposition} tag to place a module named My Shortlist on a page called My Library. I am using a template position from another template called atomic-bottomleft, which I think is the way I am correctly supposed to do this as my template is named YouVersity.

NOTE - I do notice that when I added the module to this position not on my template, the atomic-bottomleft position then shows when I filter the pick position list by my Youversity Template.

As for the problem.

I am using K2 Content to show Most Popular Lessons. For some reason, just under the title for this module, it shows the "My Library" and {loadposition atomic-bottomleft}. I've attached a screenshot.

To view it too please visit www.busyteacherresources.com and login using:

U: testing
P: testing

You'll see it on the front page.

I don't get it. The My Library module in position atomic-bottomleft is set to only show on the My Library page so I don't get what is going on here. Is there a conflict with using the loadposition tag and K2 Content?

Thanks for your help in advance!

Kory
  • BrethrenArchives.Com
  • BrethrenArchives.Com's Avatar
03 Jan 2014 18:13
Replied by BrethrenArchives.Com on topic [SOLVED] Commenting on a comment

[SOLVED] Commenting on a comment

Category: English K2 Community

Krikor Boghossian wrote: You can manually use the <blockquote> { COMMENT TEXT HERE } </blockquote> HTML tags.

Thank you Krikor,

After thinking it over I think I may want a more feature rich commenting add-on. So here goes. :evil:

A friend of mine suggested that I have something where folks who want to can be delivered via e-mail a link for a new blog entry. I'm assuming that in the back end I would be able to send out such an e-mail. However, I do not want them able to become either a Joomla or K2 registered user. The reason is that there is content on the site for paid subscribers only.

Additionally, have the ability whereby folks can respond to comments made by others.

Are you aware of how to do this? I would like to stick with K2 as I like how it implements with a JoomlaWorks or two item I have. I think I even paid for one of them.
  • tai
  • tai's Avatar
01 Jan 2014 18:40
Replied by tai on topic [SOLVED] K2 facebook comments

[SOLVED] K2 facebook comments

Category: English K2 Community

VietPublic wrote: Overide your template ex
Copy ROOT\components\com_k2 to
ROOT\templates\YOUR_TEMPLATE\html\ (create html folder if not exist)
Edit
ROOT\templates\YOUR_TEMPLATE\html\com_k2\templates\default\item.php
After line 673 (before K2_BACK_TO_TOP code) add code

 <!-- Facebook Comments --> <?php if($this->item->params->get('itemComments') && ($this->item->params->get('comments') == '1' || ($this->item->params->get('comments') == '2')) && empty($this->item->event->K2CommentsBlock)): ?> <div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/all.js#xfbml=1"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); </script> <div class="fb-comments" data-href="<?php $url="".$this->item->absoluteURL; echo $url; ?>" data-width="500" data-num-posts="10"></div> <?php endif; ?> 


Awesome, it worked, I love you so much !!!!!
  • Sarah
  • Sarah's Avatar
31 Dec 2013 08:51 - 31 Dec 2013 08:59
Replied by Sarah on topic [SOLVED] K2 Tags - the weakest link

[SOLVED] K2 Tags - the weakest link

Category: English K2 Community

I went with this look:

Here's the css code for it:
div.k2TagCloudBlock {padding:8px 0;} div.k2TagCloudBlock a { background: none repeat scroll 0 0 #F5F5F5; border-radius: 3px; display: block; float: left; font-size: 92% !important; height: 19px; line-height: 19px; margin: 0 10px 10px 0; overflow: hidden; padding: 0 10px 3px 15px; Color:#999; } div.k2TagCloudBlock a:hover { background: none repeat scroll 0 0 #AAC7CA; border-radius: 3px; display: block; float: left; font-size: 92% !important; height: 19px; line-height: 19px; margin: 0 10px 10px 0; overflow: hidden; padding: 0 10px 3px 15px; Color:#000; transform: scale(1.2); } 
  • Michael Bolaños Davis
  • Michael Bolaños Davis's Avatar
31 Dec 2013 01:55
[SOLVED] How to avoid Calendar and Tag modules to overlap was created by Michael Bolaños Davis

[SOLVED] How to avoid Calendar and Tag modules to overlap

Category: English K2 Community

I am publishing the calendar and tag modules in the right section of my template (JSN Glass) but there seems to be no space between each and one overlaps the other.

Tried to find a way to force some space between K2 modules when published, but could not find how to accomplish this.

Is there a way to avoid this overlaping?
  • alfredopacino
  • alfredopacino's Avatar
30 Dec 2013 21:52 - 30 Dec 2013 21:53
Replied by alfredopacino on topic i can't see item image in item view

i can't see item image in item view

Category: English K2 Community

firebug don't catch any error.
i can't disable jquery from my template, not all pages are managed by k2

this is the code of an item view who have the problem, actually i don't see multiple istances of jquery :dry:
<!DOCTYPE html> <html prefix="og: http://ogp.me/ns#" lang="it-it" dir="ltr" class='com_k2 view-item task-8union-conical-melleable-pipe itemid-115 j25'> <head> <link href='http://fonts.googleapis.com/css?family=Italiana' rel='stylesheet'> <link href='http://fonts.googleapis.com/css?family=Raleway' rel='stylesheet'> <base href="http://localhost/qingdao2/index.php/it/products/item/8-union-conical-melleable-pipe" /> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta name="title" content="Copy of Union Conical Melleable Pipe" /> <meta property="og:url" content="http://localhost/qingdao2/index.php/it/products/item/8-union-conical-melleable-pipe" /> <meta property="og:title" content="Copy of Union Conical Melleable Pipe" /> <meta property="og:type" content="article" /> <meta property="og:description" content="Union Conical Melleable Pipe" /> <meta name="description" content="Union Conical Melleable Pipe" /> <meta name="generator" content="Joomla! - Open Source Content Management" /> <title>Copy of Union Conical Melleable Pipe</title> <link href="/qingdao2/templates/t3_bs3_blank/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" /> <link rel="stylesheet" href="/qingdao2/media/system/css/modal.css" /> <link rel="stylesheet" href="/qingdao2/components/com_k2/css/k2.css" /> <link rel="stylesheet" href="/qingdao2/templates/system/css/system.css" /> <link rel="stylesheet" href="/qingdao2/templates/t3_bs3_blank/css/themes/qingdao/bootstrap.css" /> <link rel="stylesheet" href="/qingdao2/templates/t3_bs3_blank/css/themes/qingdao/template.css" /> <link rel="stylesheet" href="/qingdao2/templates/t3_bs3_blank/css/themes/qingdao/megamenu.css" /> <link rel="stylesheet" href="/qingdao2/templates/t3_bs3_blank/fonts/font-awesome/css/font-awesome.min.css" /> <script src="/qingdao2/media/system/js/mootools-core.js"></script> <script src="/qingdao2/media/system/js/core.js"></script> <script src="/qingdao2/media/system/js/modal.js"></script> <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script> <script src="/qingdao2/components/com_k2/js/k2.js?v2.6.7&amp;sitepath=/qingdao2/"></script> <script src="/qingdao2/plugins/system/t3/base-bs3/bootstrap/js/bootstrap.js"></script> <script src="/qingdao2/plugins/system/t3/base-bs3/js/script.js"></script> <script src="/qingdao2/plugins/system/t3/base-bs3/js/menu.js"></script> <script src="/qingdao2/plugins/system/t3/base-bs3/js/nav-collapse.js"></script> <script> window.addEvent('domready', function() { SqueezeBox.initialize({}); SqueezeBox.assign($$('a.modal'), { parse: 'rel' }); }); function keepAlive() { var myAjax = new Request({method: "get", url: "index.php"}).send();} window.addEvent("domready", function(){ keepAlive.periodical(840000); }); </script> <!-- META FOR IOS & HANDHELD --> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/> <style type="text/stylesheet"> @-webkit-viewport { width: device-width; } @-moz-viewport { width: device-width; } @-ms-viewport { width: device-width; } @-o-viewport { width: device-width; } @viewport { width: device-width; } </style> <script> //<![CDATA[ if (navigator.userAgent.match(/IEMobile\/10\.0/)) { var msViewportStyle = document.createElement("style"); msViewportStyle.appendChild( document.createTextNode("@-ms-viewport{width:auto!important}") ); document.getElementsByTagName("head")[0].appendChild(msViewportStyle); } //]]> </script> <meta name="HandheldFriendly" content="true"/> <meta name="apple-mobile-web-app-capable" content="YES"/> <!-- //META FOR IOS & HANDHELD --> <!-- Le HTML5 shim and media query for IE8 support --> <!--[if lt IE 9]> <script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script> <script src="/qingdao2/plugins/system/t3/base-bs3/js/respond.min.js"></script> <![endif]--> <!-- You can add Google Analytics here or use T3 Injection feature --> </head> <body> <div class="t3-wrapper"> <!-- Need this wrapper for off-canvas menu. Remove if you don't use of-canvas --> <!-- HEADER --> <header id="t3-header" class="container t3-header"> <div class="row"> <!-- LOGO --> <div class="col-xs-12 col-sm-8 logo"> <div class="logo-image"> <a href="/qingdao2" title="qingdao2"> <img class="logo-img" src="/qingdao2/templates/t3_bs3_blank/images/logo.png" alt="qingdao2" /> <span>qingdao2</span> </a> <small class="site-slogan"></small> </div> </div> <!-- //LOGO --> <div class="col-xs-12 col-sm-4"> <!-- HEAD SEARCH --> <div class="head-search "> <div class="bannergroup"> <div class="banneritem"> <a href="/qingdao2/index.php/it/component/banners/click/1" target="_blank" title="Support Joomla!"> <img src="http://localhost/qingdao2/images/banners/white.png" alt="Support Joomla!" /> </a> <div class="clr"></div> </div> </div> </div> <!-- //HEAD SEARCH --> </div> </div> </header> <!-- //HEADER --> <!-- MAIN NAVIGATION --> <nav id="t3-mainnav" class="wrap navbar navbar-default t3-mainnav"> <div class="container"> <!-- Brand and toggle get grouped for better mobile display --> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".t3-navbar-collapse"> <i class="fa fa-bars"></i> </button> </div> <div class="t3-navbar-collapse navbar-collapse collapse"></div> <div class="t3-navbar navbar-collapse collapse"> <div class="t3-megamenu" data-responsive="true"> <ul class="nav navbar-nav level0"> <li data-id="101" data-level="1"> <a class="" href="/qingdao2/index.php/it/" data-target="#">Home </a> </li> <li data-id="112" data-level="1"> <a class="" href="/qingdao2/index.php/it/contattaci" data-target="#">Contattaci </a> </li> <li data-id="114" data-level="1"> <a class="" href="/qingdao2/index.php/it/about-us" data-target="#">About us </a> </li> <li class="current active" data-id="115" data-level="1"> <a class="" href="/qingdao2/index.php/it/products" data-target="#">Products </a> </li> <li data-id="116" data-level="1"> <a class="" href="/qingdao2/index.php/it/request-catalogues" data-target="#">Request catalogues </a> </li> </ul> </div> </div> </div> </nav> <!-- //MAIN NAVIGATION --> <div id="t3-mainbody" class="container t3-mainbody"> <div class="row"> <!-- MAIN CONTENT --> <div id="t3-content" class="t3-content col-xs-12 col-sm-8 col-sm-push-4 col-md-9 col-md-push-3"> <div id="system-message-container"> </div> <!-- Start K2 Item Layout --> <span id="startOfPageId8"></span> <div id="k2Container" class="itemView"> <!-- Plugins: BeforeDisplay --> <!-- K2 Plugins: K2BeforeDisplay --> <div class="itemHeader"> <!-- Item title --> <h2 class="itemTitle"> Copy of Union Conical Melleable Pipe </h2> </div> <!-- Plugins: AfterDisplayTitle --> <!-- K2 Plugins: K2AfterDisplayTitle --> <div class="itemToolbar"> <ul> </ul> <div class="clr"></div> </div> <div class="itemBody"> <!-- Plugins: BeforeDisplayContent --> <!-- K2 Plugins: K2BeforeDisplayContent --> <!-- Item Image --> <div class="itemImageBlock"> <span class="itemImage"> <a class="modal" rel="{handler: 'image'}" href="/qingdao2/media/k2/items/cache/184b7cb84d7b456c96a0bdfbbeaa5f14_XL.jpg" title="Click to preview image"> <img src="/qingdao2/media/k2/items/cache/184b7cb84d7b456c96a0bdfbbeaa5f14_M.jpg" alt="Copy of Union Conical Melleable Pipe" style="width:400px; height:auto;" /> </a> </span> <div class="clr"></div> </div> <!-- Item text --> <div class="itemFullText"> <p>Union Conical Melleable Pipe</p> </div> <div class="clr"></div> <!-- Plugins: AfterDisplayContent --> <!-- K2 Plugins: K2AfterDisplayContent --> <div class="clr"></div> </div> <div class="itemLinks"> <div class="clr"></div> </div> <div class="clr"></div> <!-- Plugins: AfterDisplay --> <!-- K2 Plugins: K2AfterDisplay --> <div class="itemBackToTop"> <a class="k2Anchor" href="/qingdao2/index.php/it/products/item/8-union-conical-melleable-pipe#startOfPageId8"> back to top </a> </div> <div class="clr"></div> </div> <!-- End K2 Item Layout --> <!-- JoomlaWorks "K2" (v2.6.7) | Learn more about K2 at http://getk2.org --> </div> <!-- //MAIN CONTENT --> <!-- SIDEBAR LEFT --> <div class="t3-sidebar t3-sidebar-left col-xs-12 col-sm-4 col-sm-pull-8 col-md-3 col-md-pull-9 "> <div class="t3-module module " id="Mod16"><div class="module-inner"><h3 class="module-title "><span>Login</span></h3><div class="module-ct"> <form action="/qingdao2/index.php/it/products" method="post" id="login-form"> <fieldset class="userdata"> <div id="form-login-username" class="form-group"> <div class="input-group"> <span class="input-group-addon"> <i class="fa fa-user tip" title="Nome utente"></i> </span> <input id="modlgn-username" type="text" name="username" class="input form-control" tabindex="0" size="18" placeholder="Nome utente"/> </div> </div> <div id="form-login-password" class="form-group"> <div class="input-group"> <span class="input-group-addon"> <i class="fa fa-lock tip" title="Password"></i> </span> <input id="modlgn-passwd" type="password" name="password" class="input form-control" tabindex="0" size="18" placeholder="Password"/> </div> </div> <div id="form-login-remember" class="control-group"> <label for="modlgn-remember" class="checkbox"> <input id="modlgn-remember" type="checkbox" name="remember" class="input" value="yes"/> Ricordami </label> </div> <div class="control-group"> <input type="submit" name="Submit" class="btn btn-primary" value="Accedi"/> </div> <ul class="unstyled"> <li> <a href="/qingdao2/index.php/it/il-tuo-profilo?view=registration"> Registrati <span class="fa fa-arrow-right"></span></a> </li> <li> <a href="/qingdao2/index.php/it/il-tuo-profilo?view=remind"> Nome utente dimenticato?</a> </li> <li> <a href="/qingdao2/index.php/it/il-tuo-profilo?view=reset">Password dimenticata?</a> </li> </ul> <input type="hidden" name="option" value="com_users"/> <input type="hidden" name="task" value="user.login"/> <input type="hidden" name="return" value="aW5kZXgucGhwP29wdGlvbj1jb21fazImdmlldz1pdGVtJnRhc2s9ODp1bmlvbi1jb25pY2FsLW1lbGxlYWJsZS1waXBlJmlkPTg6dW5pb24tY29uaWNhbC1tZWxsZWFibGUtcGlwZSZJdGVtaWQ9MTE1"/> <input type="hidden" name="2e53b0acc3a76f1573d23ec0a5c4734d" value="1" /> </fieldset> </form> </div></div></div> </div> <!-- //SIDEBAR LEFT --> </div> </div> <!-- NAV HELPER --> <nav class="wrap t3-navhelper "> <div class="container"> <div id="k2ModuleBox100" class="k2BreadcrumbsBlock"> <span class="bcTitle">You are here:</span><a href="http://localhost/qingdao2/">Home</a><span class="bcSeparator">&raquo;</span><a href="/qingdao2/index.php/it/">Products</a><span class="bcSeparator">&raquo;</span><a href="/qingdao2/index.php/it/products/itemlist/category/2-packing">PACKING</a><span class="bcSeparator">&raquo;</span>Copy of Union Conical Melleable Pipe</div> </div> </nav> <!-- //NAV HELPER --> <!-- FOOTER --> <footer id="t3-footer" class="wrap t3-footer"> <section class="t3-copyright"> <div class="container"> <div class="row"> <div class="col-md-12 copyright "> <ul class="nav nav-pills nav-stacked "> <li class="item-101"><a href="/qingdao2/index.php/it/" >Home</a></li><li class="item-112"><a href="/qingdao2/index.php/it/contattaci" >Contattaci</a></li><li class="item-114"><a href="/qingdao2/index.php/it/about-us" >About us</a></li><li class="item-115 current active"><a href="/qingdao2/index.php/it/products" >Products</a></li><li class="item-116"><a href="/qingdao2/index.php/it/request-catalogues" >Request catalogues</a></li></ul> </div> </div> </div> </section> </footer> <!-- //FOOTER --> </div> </body> </html>
  • Krikor Boghossian
  • Krikor Boghossian's Avatar
30 Dec 2013 16:29
Replied by Krikor Boghossian on topic [SOLVED] K2 Tags - the weakest link

[SOLVED] K2 Tags - the weakest link

Category: English K2 Community

try inserting this in your template's css.
.k2TagCloudBlock a { padding: 4px; }
  • Krikor Boghossian
  • Krikor Boghossian's Avatar
30 Dec 2013 15:53
Replied by Krikor Boghossian on topic Menus (k2)

Menus (k2)

Category: English K2 Community

More than logical.

Multiple templates, different layouts and settings, different modules are only few of the advantages.
  • felipergueza
  • felipergueza's Avatar
30 Dec 2013 03:21 - 30 Dec 2013 03:25
Menus (k2) was created by felipergueza

Menus (k2)

Category: English K2 Community

I doubt if it is logical to use the component k2 for different menus, for example:


Menu News/ Menu Machinery/ Menu Directory/ Menu Real Estate/


What would be the advantage and disadvantage of using thus k2.
  • Gianluca
  • Gianluca's Avatar
29 Dec 2013 13:24
Waiting popup when uploading files was created by Gianluca

Waiting popup when uploading files

Category: English K2 Community

Hello everyone and merry christmas!

Simple question: I have a site that uses K2 to upload files to the server (in short: an article is a song and i have to upload mp3 within every article). Thing is: uploading can be slow, is there a way that when i click on "save" from the front-end a popup shows up saying "Wait! We are loading your file!".. i don't need a bar with percentage or something... just need a message that says to wait.

Thank you!
  • Sarah
  • Sarah's Avatar
29 Dec 2013 06:05
Replied by Sarah on topic [SOLVED] K2 Tags - the weakest link

[SOLVED] K2 Tags - the weakest link

Category: English K2 Community

Hi guys, i am wondering if you can help. So i loaded the k2 tools module and placed the tags on the left side of my page and this is what it looks like: prntscr.com/2es5s5

Is there any css that anyone can supply me that will make this look better?
thanks again
  • webloesung
  • webloesung's Avatar
27 Dec 2013 21:12
Replied by webloesung on topic [SOLVED] Order tags in Add Article Form

[SOLVED] Order tags in Add Article Form

Category: English K2 Community

after also trying the php sort function - without result..
i did a hack to K2 core file:
YOUR SITE/administrator/components/com_k2/models/item.php
in the function getAvailableTags
add $query .= " ORDER BY tags.name";


this is not a good solution, anyhow it is working..

However, it would be GREAT in some of future K2 versions to have the tags sorting function built into itemform.php....
  • ghandil
  • ghandil's Avatar
27 Dec 2013 18:20

Set certain category 2 post items in,via front-end

Category: English K2 Community

Krikor Boghossian wrote: You can disable almost all the elements through K2's parameters.
This way you don't have to remove any code from the itemform file.

Also I suggest you hide the select box using CSS since you have already defined a category and removed all the other options.

Hi Krikor, Merry Christmas :)
Thanks for your reply. I really appreciate your help

About disabling elements from K2 parameters, I already disabled all elements except EXtraFields, But content tab and top inputs (Featured, Published,tags, ...) still remain. (I showed them in the attached image)

And as you see in the image, even when the default category is selected in the menu link parameters, users are still forced to select it from drop down input,; even though other categories aren't selectable.

Regards
  • Krikor Boghossian
  • Krikor Boghossian's Avatar
27 Dec 2013 16:37
Replied by Krikor Boghossian on topic SEO issue - tags cloud links contains componentk2

SEO issue - tags cloud links contains componentk2

Category: English K2 Community

not really, 1 menu towards ALL categories.

You need a base menu item which renders all categories [/qoute]

If you want to map each tag to a menu item unfortunately you have to do it manually.

  • Krikor Boghossian
  • Krikor Boghossian's Avatar
27 Dec 2013 16:25
Replied by Krikor Boghossian on topic [SOLVED] k2 item page shows a ? question mark

[SOLVED] k2 item page shows a ? question mark

Category: English K2 Community

CSS4K2 is no longer supported indeed but i agree with Olsen.

You should check your template for unclosed tags.
Displaying 2921 - 2940 out of 6582 results.

Powered by Kunena Forum