Keyword

Advanced Search

Search Results (Searched for: k2 Tag)

  • mattian
  • mattian's Avatar
10 May 2019 21:14
Replied by mattian on topic K2 and smart search plugin issues

K2 and smart search plugin issues

Category: English K2 Community

When I go to the K2 Search plugin there is a option to enable search in Tags or not:

Search - K2
search / k2
This plugin extends the default Joomla search functionality to K2 content.

Search Limit
50
Enable searching in tags

No
Yes

SO yes, this is a function in the K2 search plugin.

- Anne
  • JoomlaWorks
  • JoomlaWorks's Avatar
10 May 2019 20:15
Replied by JoomlaWorks on topic K2 and smart search plugin issues

K2 and smart search plugin issues

Category: English K2 Community

K2 does not have a separate plugin for tag searching. More over, K2 tags are not even referenced for indexing in the K2 Smart Search plugin. Your problem may lie elsewhere.
  • mattian
  • mattian's Avatar
10 May 2019 16:11
Replied by mattian on topic K2 and smart search plugin issues

K2 and smart search plugin issues

Category: English K2 Community

Hi,
seems the the problem is the tags and enabling the search in k2 tags. Finder does not check if the K2 item with that tag is enabled or disabled. I think this is a bug in the K2 search plugin. Can someone test this out please!

- Anne
  • Michael C. Creary
  • Michael C. Creary's Avatar
09 May 2019 18:30

By way of Simple Image Gallery Pro with K2 - Image thumbnails not showing at all

Category: Simple Image Gallery PRO

By way of an update, I have found a workaround for my problem.

Instead of using K2 I tried using a custom module to publish the gallery. This did not work but some progress was made. Instead of publishing the pictures it displayed the plugin tag (code), even though I did not use the editor (JCE).

The solution was to publish the gallery in an article which worked immediately using the exact same code which I copied and pasted.

I have no idea why K2 and the module did not work. If anyone can shed some light on this it would be greatly appreciated.

Below is a screenshot of the gallery page


How can I make the page wider eg. 5 columns?

Regards
  • Thomas Phillips
  • Thomas Phillips's Avatar
08 May 2019 23:51

media manager blank - plus cannot upload or browse for image

Category: English K2 Community

've uploaded the 2.9.1 dev version

this at least allows media manager to display

but still I cannot save images to items

after saving it displayed an unformulated page like this (with image details not saved)

Items
Categories
Tags
Comments
Users
User Groups
Extra Fields
Extra Field Groups
Media Manager
Information
K2 v2.9.1 [Dev Build]
Copyright © 2006-2019 JoomlaWorks Ltd.
  • mattian
  • mattian's Avatar
03 May 2019 17:05
K2 and smart search plugin issues was created by mattian

K2 and smart search plugin issues

Category: English K2 Community

Hi, I am trying to use the smart search, but having two issues:

1) Indexing does not go through and I keep getting this error:
An Error Has Occurred
The table '#__finder_tokens' is full

I have increased the limit to 2000000, so should be enough, but no matter what I do I get this same error.

2) Search shows also items that are not published. For example with seach-word keijut:
www.kuudesaisti.net/etsi?searchword=keijut&ordering=newest&searchphrase=all&limit=50
This brings out an article that has that word as a TAG, but when clicking the name, I get 404 since the item is not published.
www.kuudesaisti.net/component/k2/keijujen-valtakunta

Any suggestions? Is there a way to prevent unpublished items to show up in the search results?

How can I get the indexing through, without an error?

- Anne

p.s. Joomla 3.9.5. and K2 2.9.1.
  • JoomlaWorks
  • JoomlaWorks's Avatar
20 Apr 2019 10:38
Replied by JoomlaWorks on topic How to change K2 featured item icon

How to change K2 featured item icon

Category: English K2 Community

You don't add "<body class="isLang_<?php echo JFactory::getLanguage()->getTag(); ?>">" at the end of index.php. You change your current <body> tag into "<body class="isLang_<?php echo JFactory::getLanguage()->getTag(); ?>">". An HTML document can't have 2 <body> tags. This is HTML 101.

The rest of the code I provided is CSS code. You don't just place that in index.php. You have to place it in your template's CSS file.

Ask your template provider WHERE and HOW to edit the template.

And you need a primer on web development. This link provides some helpful resources on that: css-tricks.com/where-do-you-learn-html-css-in-2019/
  • Harris DImoliatis
  • Harris DImoliatis's Avatar
19 Apr 2019 00:42
Replied by Harris DImoliatis on topic How to change K2 featured item icon

How to change K2 featured item icon

Category: English K2 Community

Not an expert. did not make it work.
I added the
<body class="isLang_<?php echo JFactory::getLanguage()->getTag(); ?>">
at the end of index.php from my templates folder
and
body.isLang_en-GB div.catItemIsFeatured:before,
body.isLang_en-GB div.userItemIsFeatured:before,
body.isLang_en-GB div.itemIsFeatured:before {background:url(../images/my_image.png) no-repeat 0 0;}
and
body.isLang_fr-FR div.catItemIsFeatured:before,
body.isLang_fr-FR div.userItemIsFeatured:before,
body.isLang_fr-FR div.itemIsFeatured:before {background:url(../images/other_image.png) no-repeat 0 0;}

but stll points to the degault image
  • Vladimir Penzin
  • Vladimir Penzin's Avatar
18 Apr 2019 13:59 - 18 Apr 2019 14:03
RSS feeds returns error was created by Vladimir Penzin

RSS feeds returns error

Category: English K2 Community

hi,
K2 2.9.1 Joomla 3.9.5 got error when tried to enable rss channel on site
Call to undefined method Joomla\CMS\Document\FeedDocument::addCustomTag()
In K2 settings tried to turn on show link and icon but can't make it work
the link I use: https://my_site/component/k2/itemlist?format=feed&type=rss
Help
Vladimir
  • JoomlaWorks
  • JoomlaWorks's Avatar
14 Apr 2019 20:02
Replied by JoomlaWorks on topic How to change K2 featured item icon

How to change K2 featured item icon

Category: English K2 Community

Use the current language tag (through <?php echo JFactory::getLanguage()->getTag(); ?> which would print something like "en-GB") in your template's index.php <body> tag. E.g.
<body class="isLang_<?php echo JFactory::getLanguage()->getTag(); ?>">

Then using CSS targeting do (for English):
body.isLang_en-GB div.catItemIsFeatured:before, body.isLang_en-GB div.userItemIsFeatured:before, body.isLang_en-GB div.itemIsFeatured:before {...}

or for French:
body.isLang_fr-FR div.catItemIsFeatured:before, body.isLang_fr-FR div.userItemIsFeatured:before, body.isLang_fr-FR div.itemIsFeatured:before {...}
...and so on.
  • JoomlaWorks
  • JoomlaWorks's Avatar
13 Apr 2019 13:32

Select Different Image for Social Sharing from the item`s Image

Category: English K2 Community

a) Create an extra field of image type to use as social sharing image. Use a descriptive extra field alias, e.g. "imgsocial".
b) Add some code in your item.php override to reset the meta tags associated with social sharing.

As an example:
<?php /** * @version 2.9.x * @package K2 * @author JoomlaWorks https://www.joomlaworks.net * @copyright Copyright (c) 2006 - 2019 JoomlaWorks Ltd. All rights reserved. * @license GNU/GPL license: http://www.gnu.org/copyleft/gpl.html */ // no direct access defined('_JEXEC') or die; // Get the extra field $imgSocial = $this->item->extraFields->imgsocial->value; // Notice "imgsocial" here which is the extra field alias // $imgSocial produces an entire <img> html element so we need to extract the src of the image preg_match("#src=\"(.*?)\"#i", $imgSocial, $src); $imgage = $src[1]; // Replace the meta tag with the new custom image $document = JFactory::getDocument(); $document->setMetaData('og:image', $image); $document->setMetaData('image', $image); // Generic meta
  • JoomlaWorks
  • JoomlaWorks's Avatar
13 Apr 2019 13:13
Replied by JoomlaWorks on topic No script is allowed to run on K2 items

No script is allowed to run on K2 items

Category: English K2 Community

K2 does not strip <script> tags unless you ask it to do so in the K2 Settings "Content" tab (cleanup section). If you have nothing there, then the stripping is automatically performed by the WYSIWYG editor you use in Joomla. An update to that editor probably caused the stripping when you open items to edit them.
  • JoomlaWorks
  • JoomlaWorks's Avatar
13 Apr 2019 13:05
  • PieterBum
  • PieterBum's Avatar
08 Apr 2019 11:27 - 08 Apr 2019 11:28
Replied by PieterBum on topic K2 data group for sub(sub) categories

K2 data group for sub(sub) categories

Category: English K2 Community

so if I want to place a subsubcategory under the subcategory, I would place
<ul><strong>Tools</strong>
<li class="force-css" data-group="Soda"><a href="#">Block 1</a></li>

but that doesn't do anything. What am I supposed to type there? Nothing seems to work...

In other words, how do you make a subsubcategory, and what do I type in its data-group tag?
Do I need to add php or js somewhere to make it work?
  • forty
  • forty's Avatar
03 Apr 2019 12:35
Replied by forty on topic K2 Extra Fields Image Tag Src Extract

K2 Extra Fields Image Tag Src Extract

Category: English K2 Community

Hi, i done it. Thanks!
  • Luis Saltos
  • Luis Saltos's Avatar
31 Mar 2019 11:22
Replied by Luis Saltos on topic K2 Item - Not showing formatting when published

K2 Item - Not showing formatting when published

Category: English K2 Community

Well I found it !!!! Thanks for the advice.
Yes it was in the following area:

K2 Categories -> Parameters
Then under the Content Tab - goto Content Cleanup Section
Introtext HTML cleanup (tag strip) - Was set to "YES" - I turned this to "NO" and my issue was resolved !!!
Would not have been about to do this without advise. Cheers :)
  • JoomlaWorks
  • JoomlaWorks's Avatar
31 Mar 2019 04:57
Replied by JoomlaWorks on topic Solved: Proteggere articolo con password

Solved: Proteggere articolo con password

Category: Comunità italiana K2

It is possible but it requires some workarounds...

- First off, you only need a single "Submissions" category for all users. Either way, when editing items, users will only ever see their own items only.
- The K2 User module already has a link to your user's page. So you can use that as a quick way for the user to visit their page.
- The only thing that is left to "hide" is the link to the category "Submissions" and tags (in case a common tag is used in items by other users). If you do that, it will be much harder for the user to navigate somewhere else, except their user page.
  • JoomlaWorks
  • JoomlaWorks's Avatar
31 Mar 2019 04:53
Replied by JoomlaWorks on topic K2 Item - Not showing formatting when published

K2 Item - Not showing formatting when published

Category: English K2 Community

K2 can strip HTML tags if you have the related filters enabled in the K2 Settings (backend) OR if you use a word limit in your category settings or in modules. The latter case requires that all tags are stripped because if the word limit is reached, it may leave unopened HTML tags and cause your entire site to break.
  • JoomlaWorks
  • JoomlaWorks's Avatar
23 Mar 2019 10:28
Replied by JoomlaWorks on topic Stop Generating Random Names for Uploaded Images

Stop Generating Random Names for Uploaded Images

Category: English K2 Community

For the alt and/or title attributes of the <img> tags. This info is sufficient for search engines to classify your images, even if the filename is not relevant to the actual image (a hash).

Keep in mind that K2 v2.10 (which is coming in the next few days) also features structured data definitions which further assist in content indexing from search engines.
  • JoomlaWorks
  • JoomlaWorks's Avatar
21 Mar 2019 17:51
Replied by JoomlaWorks on topic K2 Extra Fields Image Tag Src Extract

K2 Extra Fields Image Tag Src Extract

Category: English K2 Community

You need to be more specific.
Displaying 481 - 500 out of 6582 results.

Powered by Kunena Forum