Keyword

Advanced Search

Search Results (Searched for: k2 Tag)

  • James Garrett
  • James Garrett's Avatar
27 Mar 2014 04:45
Replied by James Garrett on topic "Items must have a title" msg after 2.6.8 update

"Items must have a title" msg after 2.6.8 update

Category: English K2 Community

Re the 'item must have a title' error

this is caused by the submit button function being triggered as the modal popup closes and opens when the title has no value - this can be changed or removed in the itemform.php template override. Clearly there is a script conflict somewhere but I cannot find it.

I 'fixed' it by wrapping the offending if statement in another if statement as below, so the alert could only trigger on save. Hope this helps figure out what the problem is...

$document->addScriptDeclaration("
Joomla.submitbutton = function(pressbutton){
if (pressbutton == 'cancel') {
submitform( pressbutton );
return;
}
if (pressbutton == 'save') { // HERE is the extra condition that I wrapped the offending condition in
if (\$K2.trim(\$K2('#title').val()) == '') {
alert( '".JText::_('K2_ITEM_MUST_HAVE_A_TITLE', true)."' );
}
else if (\$K2.trim(\$K2('#catid').val()) == '0') {
alert( '".JText::_('K2_PLEASE_SELECT_A_CATEGORY', true)."' );
}
else {
syncExtraFieldsEditor();
\$K2('#selectedTags option').attr('selected', 'selected');
submitform( pressbutton );
}
} // obviously close the extra if statement
}
");
  • James Garrett
  • James Garrett's Avatar
27 Mar 2014 04:19
Replied by James Garrett on topic Frontend Permissions Notice

Frontend Permissions Notice

Category: English K2 Community

Re the 'item must have a title' error

this is caused by the submit button function being triggered as the modal popup closes and opens when the title has no value - this can be changed or removed in the itemform.php template override.

$document->addScriptDeclaration("
Joomla.submitbutton = function(pressbutton){
if (pressbutton == 'cancel') {
submitform( pressbutton );
return;
}
if (pressbutton == 'save') { // HERE is the extra condition that I wrapped the offending condition in
if (\$K2.trim(\$K2('#title').val()) == '') {
alert( '".JText::_('K2_ITEM_MUST_HAVE_A_TITLE', true)."' );
}
else if (\$K2.trim(\$K2('#catid').val()) == '0') {
alert( '".JText::_('K2_PLEASE_SELECT_A_CATEGORY', true)."' );
}
else {
syncExtraFieldsEditor();
\$K2('#selectedTags option').attr('selected', 'selected');
submitform( pressbutton );
}
} // obviously close the extra if statement
}
");
  • Lefteris
  • Lefteris's Avatar
26 Mar 2014 15:40
Replied by Lefteris on topic Author meta tag not showing in pages...

Author meta tag not showing in pages...

Category: English K2 Community

Hi. It seems that there is an issue when author block is disabled. Can you please install the development version from getk2.org/assets/get and test? Let me know if your issue is resolved.
  • Lefteris
  • Lefteris's Avatar
26 Mar 2014 14:13
Replied by Lefteris on topic How to loop Tags within category view ?

How to loop Tags within category view ?

Category: English K2 Community

Hi. You can't. There is no such functionality in K2.
  • Lefteris
  • Lefteris's Avatar
26 Mar 2014 13:56
Replied by Lefteris on topic Performance Question (Categories vs Tags)

Performance Question (Categories vs Tags)

Category: English K2 Community

Hi. I think that 100 categories is a really big number even for large sites. Probably you need to think again the structure of your site. In any case you should use tools as they are designed to be used. Categories are different from tags. You should not worry about performance, K2 will make it fine no matter how many categories and tags you create.
  • Mike
  • Mike's Avatar
25 Mar 2014 16:15

Author meta tag not showing in pages...

Category: English K2 Community

Hello,

In my Global config, I have enabled the show author meta tag, however it is not showing up in my source code. I am using K2 items for the majority of my pages. I am using joomla 2.5.

url: www.vanguardspacesolutions.com

Any ideas? Thanks in advance
  • Micaela
  • Micaela's Avatar
24 Mar 2014 18:00
plugin search k2 was created by Micaela

plugin search k2

Category: Comunità italiana K2

Nella versione K2_v2.6.8 il plugin search plugins/search/k2/k2.php ha un errore alla riga 92, immagino che anziché $quoted ci debba essere la variabile $tagQuery altrimenti la ricerca restituisce errore 500

Ciao
  • matt
  • matt's Avatar
24 Mar 2014 17:43 - 24 Mar 2014 21:21
Replied by matt on topic k2 Category description search

k2 Category description search

Category: English K2 Community

Hi,

OK, am still not getting anything to show up. I changed the code in plugins/search/k2_category_search/k2cat.php to the following:

// no direct access
defined('_JEXEC') or die ;

jimport('joomla.plugin.plugin');
jimport('joomla.html.parameter');

class plgSearchK2 extends JPlugin
{

function onContentSearchAreas()
{
return $this->onSearchAreas();
}

function onContentSearch($text, $phrase = '', $ordering = '', $areas = null)
{
return $this->onSearch($text, $phrase, $ordering, $areas);
}

function onSearchAreas()
{
JPlugin::loadLanguage('plg_search_k2', JPATH_ADMINISTRATOR);
static $areas = array('k2' => 'K2_CATEGORIES');
return $areas;
}

function onSearch($text, $phrase = '', $ordering = '', $areas = null)
{
JPlugin::loadLanguage('plg_search_k2', JPATH_ADMINISTRATOR);
jimport('joomla.html.parameter');
$mainframe = JFactory::getApplication();
$db = JFactory::getDBO();
$jnow = JFactory::getDate();
$now = K2_JVERSION == '15' ? $jnow->toMySQL() : $jnow->toSql();

$nullDate = $db->getNullDate();
$user = JFactory::getUser();
if (K2_JVERSION != '15')
{
$accessCheck = " IN(".implode(',', $user->getAuthorisedViewLevels()).") ";
}
else
{
$aid = $user->get('aid');
$accessCheck = " <= {$aid} ";
}
$tagIDs = array();
$itemIDs = array();

require_once (JPATH_SITE.DS.'administrator'.DS.'components'.DS.'com_search'.DS.'helpers'.DS.'search.php');
require_once (JPATH_SITE.DS.'components'.DS.'com_k2'.DS.'helpers'.DS.'route.php');

$searchText = $text;
if (is_array($areas))
{
if (!array_intersect($areas, array_keys($this->onSearchAreas())))
{
return array();
}
}

$plugin = JPluginHelper::getPlugin('search', 'k2_Category_Search');
$pluginParams = class_exists('JParameter') ? new JParameter($plugin->params) : new JRegistry($plugin->params);

$limit = $pluginParams->def('search_limit', 50);

$text = JString::trim($text);
if ($text == '')
{
return array();
}

$rows = array();

if ($limit > 0)
{

if ($phrase == 'exact')
{
$text = JString::trim($text, '"');
$escaped = K2_JVERSION == '15' ? $db->getEscaped($text, true) : $db->escape($text, true);
$quoted = $db->Quote($escaped);
$where = " ( LOWER(c.name) = ".$quoted." OR LOWER(c.description) = ".$quoted.") ";
}
else
{
$escaped = K2_JVERSION == '15' ? $db->getEscaped($text, true) : $db->escape($text, true);
$quoted = $db->Quote('%'.$escaped.'%', false);
$where = " ( LOWER(c.name) LIKE ".$quoted." OR LOWER(c.description) LIKE ".$quoted.") ";
}

if ($pluginParams->get('search_tags') && count($itemIDs))
{
JArrayHelper::toInteger($itemIDs);
$where .= " OR c.id IN (".implode(',', $itemIDs);
}
$query = "
SELECT c.name AS title,
c.description AS text,
c.id
c.alias,
c.created,
CASE WHEN CHAR_LENGTH(c.alias) THEN CONCAT_WS(':', c.id, c.alias) ELSE c.id END as catslug
FROM #__k2_categories AS c
WHERE (".$where.")
AND c.published = 1
AND c.access {$accessCheck}
AND c.trash = 0
";
if (K2_JVERSION != '15' && $mainframe->isSite() && $mainframe->getLanguageFilter())
{
$languageTag = JFactory::getLanguage()->getTag();
$query .= " AND c.language IN (".$db->Quote($languageTag).", ".$db->Quote('*').")";
}
$query .= " GROUP BY c.id ";

switch ($ordering)
{
case 'oldest' :
$query .= 'ORDER BY c.created ASC';
break;


case 'alpha' :
$query .= 'ORDER BY c.name ASC';
break;


case 'newest' :
default :
$query .= 'ORDER BY c.created DESC';
break;
}

$db->setQuery($query, 0, $limit);
$list = $db->loadObjectList();
$limit -= count($list);
if (isset($list))
{
foreach ($list as $key => $item)
{
$list[$key]->href = JRoute::_(K2HelperRoute::getItemRoute($item->slug, $item->catslug));

}
}
$rows[] = $list;
}

$results = array();
if (count($rows))
{
foreach ($rows as $row)
{
$new_row = array();
foreach ($row as $key => $item)
{
$item->browsernav = '';
$item->tag = $searchText;
if (searchHelper::checkNoHTML($item, $searchText, array('text', 'title')))
{
$new_row[] = $item;
}
}
$results = array_merge($results, (array)$new_row);
}
}

return $results;
}

}
  • Krikor Boghossian
  • Krikor Boghossian's Avatar
24 Mar 2014 12:05
Replied by Krikor Boghossian on topic Monday first day on Schedule

Monday first day on Schedule

Category: Commercial Joomla Templates

Which schedule are you using?
If you are using the K2 content module, then simly recheck the settings of the module (item ordering.)

If you are using Radiojar's schedule then you need to alter it's code a bit. Locate the module (it's a K2 Tools module) remove the code and paste:
<div id="rj-schedule"> <ul class="tabs hide-for-xsmall"> <li><a href="javascript();">Sunday</a></li> <li><a href="javascript();">Monday</a></li> <li><a href="javascript();">Tuesday</a></li> <li><a href="javascript();">Wednesday</a></li> <li><a href="javascript();">Thursday</a></li> <li><a href="javascript();">Friday</a></li> <li><a href="javascript();">Saturday</a></li> </ul> <h2 class="hidden show-for-xsmall"><a href="#sunday">Sunday</a></h2> <div class="pane" id="sunday"> <div class="itemlist moduleItemBody scroll-pane"></div> </div> <h2 class="hidden show-for-xsmall"><a href="#monday">Monday</a></h2> <div class="pane" id="monday"> <div class="itemlist moduleItemBody scroll-pane"></div> </div> <h2 class="hidden show-for-xsmall"><a href="#tuesday">Tuesday</a></h2> <div class="pane" id="tuesday"> <div class="itemlist moduleItemBody scroll-pane"></div> </div> <h2 class="hidden show-for-xsmall"><a href="#wednesday">Wednesday</a></h2> <div class="pane" id="wednesday"> <div class="itemlist moduleItemBody scroll-pane"></div> </div> <h2 class="hidden show-for-xsmall"><a href="#thursday">Thursday</a></h2> <div class="pane" id="thursday"> <div class="itemlist moduleItemBody scroll-pane"></div> </div> <h2 class="hidden show-for-xsmall"><a href="#friday">Friday</a></h2> <div class="pane" id="friday"> <div class="itemlist moduleItemBody scroll-pane"></div> </div> <h2 class="hidden show-for-xsmall lastItem"><a href="#saturday">Saturday</a></h2> <div class="pane" id="saturday"> <div class="itemlist moduleItemBody scroll-pane"></div> </div> <script id="schedule_list_item" type="text/html"> <div class="item item-show item-small program" data-id="<%= sch.utc_from %>"> <div class="coverImage"> <img src="http://www.radiojar.com<%= sch.show_photo %>?resize=cover_small" /> </div> <div class="programBodyWrapper"> <div class="programBody"> <h4 class="extraFieldsHeader right"><span class="localize-time" data-date='<%= sch.utc_from %>'></span> - <span class='localize-time' data-date='<%= sch.utc_to %>'></span></h4> <span class="avatar"> <a href="<%= sch.dj_url %>" class="item-dj" title="<%= sch.dj_nickname %>"> <% if (sch.dj_photo.indexOf('image')!=-1) { %> <img src="<%= sch.dj_photo %>" /> <% } %> </a> </span> <div class="titleWrapper"> <a href="<%= sch.show_url %>"> <span class="title"><%= sch.show_title %></span> </a> <span class="tagline"><%= sch.show_tagline %></span> </div> <div class="clr"></div> </div> </div> </div> </script> </div>
  • Anatole
  • Anatole's Avatar
24 Mar 2014 11:34
Replied by Anatole on topic [SOLVED] K2 content module - Default length

[SOLVED] K2 content module - Default length

Category: English K2 Community

Anyone ? :(

If I set the "introtext word limit" in the module options it removes all html tags and that's not what I want. I just need to display the full text not truncated.
  • Mohamed Abdelaziz
  • Mohamed Abdelaziz's Avatar
23 Mar 2014 14:48
Replied by Mohamed Abdelaziz on topic [SOLVED] Show K2 Tags only from a certain category

[SOLVED] Show K2 Tags only from a certain category

Category: English K2 Community

Hi,

in this case of multiple categories, the code should be something like this:
$currentItem = K2Table::getInstance('K2Item', 'Table'); $currentItem->load($itemID); $itemCat = $currentItem->get('catid'); $includeCat = 0; if($itemCat == 1) $includeCat = '(2,3)'; elseif ($itemCat == 2) $includeCat = '(1.3)'; if($includeCat) $query .= " AND c.id IN {$includeCat} ";
  • fred
  • fred's Avatar
22 Mar 2014 22:25

How to loop Tags within category view ?

Category: English K2 Community

Hello,

I've been searching all over how to something really simple. I am making a custom k2 category template I want to display all the posts within a certain category but sorted by the tags on the posts in that category. How can i loop all tags on the posts in one specific category ? I'm using tags because multiple posts can have different tags.

the structure would be as follows:
CategoryA
- Tag1
-Posts with tag1 in categoryA
- Tag2
-Posts with tag2 in categoryA
-Tag3
- Posts with tag3 in categoryA
etc.

Thanks alot in advance for any answers!
  • Nauseous
  • Nauseous's Avatar
22 Mar 2014 20:55

Joomla 3.2.3 content to K2 v2.6.8 Fails every time

Category: English K2 Community

The error I get:
An error has occurred.

1064 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' 1136)' at line 1 SQL=INSERT INTO rrbyp_k2_tags_xref (`id`, `tagID`, `itemID`) VALUES (NULL, , 1136)

Read subject line for versions
1. Optimized Data
2. Cleaned database
3. All Orphans assets, no missing assets, no conflicts, and no missing assets

I followed the import information but still having issues. This seems to be an issue with K2 itself because I've never had any issues with imports until K2.

Help!
  • Lefteris
  • Lefteris's Avatar
21 Mar 2014 13:57
Replied by Lefteris on topic Related Items by Tag - Exclude Category

Related Items by Tag - Exclude Category

Category: English K2 Community

Hi. You need to hack K2 to do this which is not a good practice. The file that generates the related items query is components/com_k2/models/itemlist.php line 898.
  • Justin Thomas
  • Justin Thomas's Avatar
21 Mar 2014 09:02
Related Items by Tag - Exclude Category was created by Justin Thomas

Related Items by Tag - Exclude Category

Category: English K2 Community

I would like to be able to exclude a category from the related items one of my K2 templates. It doesn't have to be dynamic as it will always be the same category so I can happily use cat ID.

Does anybody have any code they have used for this or can anybody show me how this can be done.

Many thanks
  • Tom
  • Tom's Avatar
20 Mar 2014 17:35
Extra Fields - listings was created by Tom

Extra Fields - listings

Category: English K2 Community

Hi there.

Is it possible to set my extra fields as links to a layout where all K2 items with that extra field are displayed? Similar to the tag layout, I suppose.

Also, would it be possible to display a page (list) of all extra fields (perhaps with alphabetical categorisation)?

Many thanks in advance.
  • matt
  • matt's Avatar
20 Mar 2014 15:02
Replied by matt on topic k2 Category description search

k2 Category description search

Category: English K2 Community

I'm sorry. I should have been more specific and clarified. I modified your k2 search plugin and reinstalled it as a separate plugin. However I can not get the default Joomla search to search category titles, category description, or category image captions and I need it to. here's the modified php plugin:

Is it my query that's wrong?



<?php
/**
* @version $Id: k2.php 1812 2013-01-14 18:45:06Z lefteris.kavadas $
* @package K2
* @author JoomlaWorks www.joomlaworks.net
* @copyright Copyright (c) 2006 - 2013 JoomlaWorks Ltd. All rights reserved.
* @license GNU/GPL license: www.gnu.org/copyleft/gpl.html
* @modified Jeno Kovacs - Offlajn Store This email address is being protected from spambots. You need JavaScript enabled to view it.
*/

// no direct access
defined('_JEXEC') or die ;

jimport('joomla.plugin.plugin');
jimport('joomla.html.parameter');

class plgSearchK2Category extends JPlugin
{

function onContentSearchAreas()
{
return $this->onSearchAreas();
}

function onContentSearch($text, $phrase = '', $ordering = '', $areas = null)
{
return $this->onSearch($text, $phrase, $ordering, $areas);
}

function onSearchAreas()
{
JPlugin::loadLanguage('plg_search_k2', JPATH_ADMINISTRATOR);
static $areas = array('k2' => 'K2_ITEMS');
return $areas;
}

function onSearch($text, $phrase = '', $ordering = '', $areas = null)
{
JPlugin::loadLanguage('plg_search_k2', JPATH_ADMINISTRATOR);
jimport('joomla.html.parameter');
$mainframe = JFactory::getApplication();
$db = JFactory::getDBO();
$jnow = JFactory::getDate();
$now = K2_JVERSION == '15' ? $jnow->toMySQL() : $jnow->toSql();

$nullDate = $db->getNullDate();
$user = JFactory::getUser();
if (K2_JVERSION != '15')
{
$accessCheck = " IN(".implode(',', $user->getAuthorisedViewLevels()).") ";
}
else
{
$aid = $user->get('aid');
$accessCheck = " <= {$aid} ";
}
$tagIDs = array();
$catIDs = array();

require_once (JPATH_SITE.DS.'administrator'.DS.'components'.DS.'com_search'.DS.'helpers'.DS.'search.php');
require_once (JPATH_SITE.DS.'components'.DS.'com_k2'.DS.'helpers'.DS.'route.php');

$searchText = $text;
if (is_array($areas))
{
if (!array_intersect($areas, array_keys($this->onSearchAreas())))
{
return array();
}
}

$plugin = JPluginHelper::getPlugin('search', 'k2');
$pluginParams = class_exists('JParameter') ? new JParameter($plugin->params) : new JRegistry($plugin->params);

$limit = $pluginParams->def('search_limit', 50);

$text = JString::trim($text);
if ($text == '')
{
return array();
}

$rows = array();

if ($limit > 0)
{

if ($pluginParams->get('search_tags'))
{
$tagQuery = JString::str_ireplace('*', '', $text);
$words = explode(' ', $tagQuery);
for ($i = 0; $i < count($words); $i++)
{
$words[$i] .= '*';
}
$tagQuery = implode(' ', $words);
$escaped = K2_JVERSION == '15' ? $db->getEscaped($tagQuery, true) : $db->escape($tagQuery, true);
$tagQuery = $db->Quote($escaped, false);

$query = "SELECT id FROM #__k2_tags WHERE MATCH(name) AGAINST ({$tagQuery} IN BOOLEAN MODE) AND published=1";
$db->setQuery($query);
$tagIDs = K2_JVERSION == '30' ? $db->loadColumn() : $db->loadResultArray();

if (count($tagIDs))
{
JArrayHelper::toInteger($tagIDs);
$query = "SELECT itemID FROM #__k2_tags_xref WHERE tagID IN (".implode(',', $tagIDs).")";
$db->setQuery($query);
$catIDs = K2_JVERSION == '30' ? $db->loadColumn() : $db->loadResultArray();
}
}

if ($phrase == 'exact')
{
$text = JString::trim($text, '"');
$escaped = K2_JVERSION == '15' ? $db->getEscaped($text, true) : $db->escape($text, true);
$text = $db->Quote('"'.$db->getEscaped($text, true).'"', false);
}
else
{
$text = JString::str_ireplace('*', '', $text);
$words = explode(' ', $text);
for ($i = 0; $i < count($words); $i++)
{
if ($phrase == 'all')
$words[$i] = '+'.$words[$i];
$words[$i] .= '*';
}
$text = implode(' ', $words);
$escaped = K2_JVERSION == '15' ? $db->getEscaped($text, true) : $db->escape($text, true);
$text = $db->Quote($escaped, false);
}
//Category Exclusion Developed By: Offlajn Team
$categoryExc = "";
if ($pluginParams->get('excludecats')) {
$categoryExc = " AND i.catid NOT IN (".implode(",", $pluginParams->get('excludecats')).") ";
}

//Item Exclusion Developed By: Offlajn Team
$catExc = "";
if ($pluginParams->get('excludeitems')) {
$catExc = " AND i.id NOT IN (".$pluginParams->get('excludeitems').") ";
}

$query = "
SELECT c.id,c.title AS title,
c.name as section,
c.image_caption,
c.image_credits,
c.created,
c.description,
CASE WHEN CHAR_LENGTH(c.alias) THEN CONCAT_WS(':', c.id, c.alias) ELSE c.id END as catslug
FROM #__k2_categories AS c
INNER JOIN #__k2_categories AS c ON c.id=i.catid AND c.access {$accessCheck}
WHERE (";
if ($pluginParams->get('search_tags') && count($catIDs))
{
JArrayHelper::toInteger($catIDs);
$query .= " c.id IN (".implode(',', $catIDs).") OR ";
}



$query .= "MATCH(c.title, c.image_caption, c.image_credits, c.name, c.description) AGAINST ({$text} IN BOOLEAN MODE)
)
AND c.published = 1
AND c.access {$accessCheck}
AND c.trash = 0";
if (K2_JVERSION != '15' && $mainframe->isSite() && $mainframe->getLanguageFilter())
{
$languageTag = JFactory::getLanguage()->getTag();
$query .= " AND c.language IN (".$db->Quote($languageTag).", ".$db->Quote('*').") ";
}

$query .= $catExc; //Items Exclusion
$query .= $categoryExc; //Category Exclusion

$query .= " GROUP BY i.id ";

switch ($ordering)
{
case 'oldest' :
$query .= 'ORDER BY c.created ASC';
break;

case 'popular' :
$query .= 'ORDER BY c.hits DESC';
break;

case 'alpha' :
$query .= 'ORDER BY c.title ASC';
break;

case 'category' :
$query .= 'ORDER BY c.name ASC, c.title ASC';
break;

case 'newest' :
default :
$query .= 'ORDER BY c.created DESC';
break;
}


$db->setQuery($query, 0, $limit);
$list = $db->loadObjectList();
$limit -= count($list);
if (isset($list))
{
foreach ($list as $key => $cat)
{
$list[$key]->href = JRoute::_(K2HelperRoute::getItemRoute($cat->slug, $cat->catslug));

}
}
$rows[] = $list;
}

$results = array();
if (count($rows))
{
foreach ($rows as $row)
{
$new_row = array();
foreach ($row as $key => $cat)
{
if (JFile::exists(JPATH_SITE.DS.'media'.DS.'k2'.DS.'items'.DS.'cache'.DS.md5("Image".$cat->id).'_L.jpg')) {
$cat->image = 'media/k2/items/cache/'.md5("Image".$cat->id).'_L.jpg';
} else if(JFile::exists(JPATH_SITE.DS.'media'.DS.'k2'.DS.'items'.DS.'cache'.DS.md5("Image".$cat->id).'_L.png')) {
$cat->image = 'media/k2/items/cache/'.md5("Image".$cat->id).'_L.png';
}
$cat->browsernav = '';
$cat->tag = $searchText;
if (searchHelper::checkNoHTML($cat, $searchText, array('text', 'title')))
{
$new_row[] = $cat;
}
}
$results = array_merge($results, (array)$new_row);
}
}

return $results;
}

}
  • Elias Ek
  • Elias Ek's Avatar
20 Mar 2014 06:36
Replied by Elias Ek on topic Meta descr auto-gen even when manually entered

Meta descr auto-gen even when manually entered

Category: English K2 Community

follow-up

There are no auto-generated meta tags on Joomla articles.

So that would strengthen the argument that it is K2 that is auto-generating meta.

How to make K2 notice that I have already put in my own manual tags and don't need auto-generation?

Thanks,
Elias
  • Elias Ek
  • Elias Ek's Avatar
20 Mar 2014 06:12

Meta descr auto-gen even when manually entered

Category: English K2 Community

www.studyinsweden.tw
latest K2, latest Joomla 2.5

I think K2 is auto-generating the meta description and keywords even though I have manually written in meta content for each item and category.

I say "think" because maybe another component is doing it?

I installed JoomSEF but that did not solve the problem. JoomSEF can also auto-generate meta tags and when I set it to combine its own auto-genarated tags with the "original", the "original" is not the manually entered tags, but the auto-generated ones from before I installed JoomSEF.

So, is there a way to turn off k2 auto-generation? Anyone have an idea of what else could cause it? To my knowledge I have nothing else but k2 and JoomSEF installed that can auto-generate meta tags.

Any suggestions very much welcome!
  • Yongki Agustinus
  • Yongki Agustinus's Avatar
19 Mar 2014 15:39 - 19 Mar 2014 16:17
Show Rating in K2 Tag page was created by Yongki Agustinus

Show Rating in K2 Tag page

Category: English K2 Community

Hi, i have some problem,
i want to add the "Rating" on the K2 Tag page

im using joomla 3

i already changed my script into this