Keyword

Advanced Search

Search Results (Searched for: k2 Tag)

  • Kiwee
  • Kiwee's Avatar
11 Jun 2014 15:43 - 11 Jun 2014 15:44
Module item by category AND tag was created by Kiwee

Module item by category AND tag

Category: English K2 Community

Hi !


I have a website to present products (items in the PRODUCTS category). I also have some recipes in that website (items in the category RECIPES). To "connect" product and recipes, I use the tag system.
For exemple, a product Y in the category PRODUCT, and a recipe Z in the category RECIPES with the tag Y

What I want, is to display in the sidebar (so using a module) the last 5 recipes for the product Y on the product page Y. But how to do that ? The K2 Content module allow filter items by category but not by tag, and the related items system allow to display items by tag but not by category, and I want both.
Is there a module which can do that ? Or some code ?

Thanks !

System :
- Joomla 3.3
- K2 v2.6.8
  • Lefteris
  • Lefteris's Avatar
11 Jun 2014 12:49
Replied by Lefteris on topic How to modify category search to include tags

How to modify category search to include tags

Category: English K2 Community

I didn't get the part with the "blank" results. In any case, since you need a custom solution you need to either build it on your own or hire a programmer to do it for you. The items are stored in the #__k2_items table. This table also contains the category id of the item. The connection with tags is being hold in #__k2_tags_xref table. This is a mapping between an item id and a tag id. Finally the actual tag data is stored in the #__k2_tags table.
  • Kiwee
  • Kiwee's Avatar
11 Jun 2014 12:16
Module item par catégorie ET tag was created by Kiwee

Module item par catégorie ET tag

Category: Communauté française K2

Bonjour,


Après avoir parcourus google dans tous les sens, impossible de trouver une solution à mon problème.

Je voudrais dans un module afficher des items K2, en fonction d'un tag et d'une catégorie. Je présente des produits (items dans la catégorie PRODUITS). J'ai d'autres items dans une catégorie RECETTES, et chaque recette est taggée avec le nom du(des) produit(s) auxquelle elle correspond (donc une recette peut correspondre à plusieurs produits).

Donc sur la page de chaque produits, je voudrais afficher les dernières recettes faisables avec ce produit. Donc sur la page du produit Y afficher les x derniers items de la catégorie RECETTE ayant pour tag Y.
Est-ce possible ? Si oui comment ? J'ai pas mal cherché, mais impossible de trouver un module qui me permette de croiser ces 2 informations en mode ET et pas OU.

Même si il me faut passer par du code pas de soucis, mais là je suis vraiment bloquée :/

Merci d'avance !
  • Shahjahan Siraj
  • Shahjahan Siraj's Avatar
10 Jun 2014 21:27
Error message was created by Shahjahan Siraj

Error message

Category: Simple Image Gallery PRO

Hello,

I got the following message
Notice
"There was a problem rendering your image gallery. Please make sure that the folder you are using in the Simple Image Gallery Pro plugin tags exists and contains valid image files. The plugin could not locate the folder: media/k2/galleries/1 "

When I click in detail item page.
However the image does not show ( although setting sowing ON )
machizo.com/brac2/research/hivmarch2012
But it show in category blog: machizo.com/brac2/research

How can I remove the error message and show image in detail page. ? Looking a support .

Best regards - Siraj/ Machizo
www.machizo.com
  • Xristoph cRad
  • Xristoph cRad's Avatar
10 Jun 2014 19:38
Replied by Xristoph cRad on topic K2 SEO issue - Can it be fixed?

K2 SEO issue - Can it be fixed?

Category: English K2 Community

I believe the solution has been resolved or is at least better than it was a time of op. I'm already using sh404SEF anyway, so it helps with the duplicate URLs by assigning one as conical and allowing you, the user, to modify which of the dupes should be the main link.

Again, as with many K2 work-arounds, creating a menu to items resolves issue. In this case, create 1 menu item for each tag which will allow for more control over display of content for respective tag, otherwise, disable tagging al together.
  • Lefteris
  • Lefteris's Avatar
10 Jun 2014 14:44
Replied by Lefteris on topic AllVideos not working in K2 article

AllVideos not working in K2 article

Category: Frontpage Slideshow

Hi. You need to take a look at the documentation at www.joomlaworks.net/support/docs/allvideos . There is no mperemote tag there is mpegremote .
  • Kannan Naidu Venugopal
  • Kannan Naidu Venugopal's Avatar
10 Jun 2014 05:57
Replied by Kannan Naidu Venugopal on topic Eliminate Item Image on Related Items by Tag

Eliminate Item Image on Related Items by Tag

Category: English K2 Community

Try going to K2 parameters - > Layout & Views -> Layout & view options for tag listings - and set the Item Image to hide.
  • Mike Herring Productions Inc
  • Mike Herring Productions Inc's Avatar
10 Jun 2014 04:01
How to modify category search to include tags was created by Mike Herring Productions Inc

How to modify category search to include tags

Category: English K2 Community

I am looking to pull out items from a specific category that contain a specific tag. There does not seem to be anything out there to do this as a menu list so I am planning to modify something. Does anybody know where I can get documentation on supported $query terms for K2, I know the tags are in a separate table linked by item ID and that there seem to be helper functions to retrieve tags from a specific item ID but wonder if there are any query terms that will check for a specific tag for a given item ID?
Any help appreciated
  • Timothy Michel
  • Timothy Michel's Avatar
09 Jun 2014 22:33
Replied by Timothy Michel on topic Ability to Display Tags and Styles in Intro Text

Ability to Display Tags and Styles in Intro Text

Category: English K2 Community

I kept playing with this and this is what I finally settled on.

In "Item view options in category listings" I set "Introtext" to "Show" and "Introtext word limit" to 150. In "Item view options" I set "Introtext" to "Hide" and "Fulltext" to "Show." This has K2 stripping the Intro Text of all tags. The problem I had with this is that K2 is counting words and not characters which means that the word count is the same for each Item Intro, but the character count isn't. To remedy this I replaced <?php echo $this->item->introtext); ?> with <?php echo JHTML::_('string.truncate', ($this->item->introtext),640); ?> in category_item.php which counts out 640 characters from the stripped intro text and display that through the echo command. 640 characters is less than 150 words so an ellipsis get appended at the end and everything looks good. Now I have to have dedicating intro text at the beginning of the articles, and I still have to insert a read-more link after the intro text, but I get category views for items that follow a uniform grid pattern, though all tags are stripped, but I get the full text view of the items with all formatting applied including the Intro text if I duplicate that above and below the read-more link.

You can see the results here

By adding a dozen @media queries in K2.css I was able to get the item intro containers grid to remain uniform regardless of viewport resolution..
  • John Morris
  • John Morris's Avatar
09 Jun 2014 05:18 - 09 Jun 2014 05:24

Eliminate Item Image on Related Items by Tag

Category: English K2 Community

I have been trying to get rid of the item image for the related items feature.
When I click on a tag, the related items show up with a related item image, and the related item image is offset, it looks bad. I would like to get rid of the related item image all together, I have toggled the features to no end, only to see no change at all. Any help is greatly appreciated.

The category I am editing is the parent category, the K2 Item you will see at the link provided is a subcategory of the parent category using the parent features.

You can view one of the pages showing the related item offset, again I would like to just eliminate the related item image all together, thanks! Please see at 108.178.27.250/~thepatri/index.php/the-story-stick/woodworking-stories/home-furnishings/itemlist/tag/red%20oak

Please see 60second video below of my issue, thanks!
  • Diego Schmidt
  • Diego Schmidt's Avatar
07 Jun 2014 05:16
Mostrar extrafield en un módulo was created by Diego Schmidt

Mostrar extrafield en un módulo

Category: Comunidad hispana oficial de K2

Hola amigos, desde ya muchas gracias por su tiempo y por cualquier info que puedan darme. Estoy intentando crear un módulo que genere un google map en base un extrafield específico en los artículos, el extrafield en cuestión se va a llamar mapa y es para generar un tag de mapa del estilo {google}lugar{/google} usando otro plugin, todo esto para crear algo como "lugar de origen del artículo". ¿Podrían darme una idea de como hacer esto? intente con el mod k2 content y la opción de mostrar extrafield pero me muestra el mismo extrafield para todos los artículos, aunque la información sea distinta. De nuevo muchas gracias y quedo a la espera de cualquier ayuda.

P.D.: Estoy usando Joomla! 3.3.0 y K2 2.6.9
  • Mara
  • Mara's Avatar
07 Jun 2014 01:19 - 07 Jun 2014 01:44

Open Graph de facebook no es leido correctamente

Category: Comunidad hispana oficial de K2

Hola, tengo un problema con el Open Graph de facebook.

Actualice a la ultima version de k2.

En configuracion global de joomla: Search Engine Friendly URLs: SI

Al compartir un articulo facebook recoje el link que lleva al articulo pero no muestra el titulo del articulo sino la direccion del sitio,tampoco aparece la foto ni la descripcion.

Ya no se que hacerle. Revisando articulos aca respuestos probe miles de formas pero no pude solucionarlo.

Al pasar el link por developers.facebook.com/tools/debug/

La respuesta es la siguiente:


Critical Errors That Must Be Fixed

Bad Response Code URL returned a bad HTTP response code.

Errors That Must Be Fixed
Missing Required Property The 'og:type' property is required, but not present.

Open Graph Warnings That Should Be Fixed
Inferred Property The 'og:url' property should be explicitly provided, even if a value can be inferred from other tags.
Inferred Property The 'og:title' property should be explicitly provided, even if a value can be inferred from other tags.

Me pueden ayudar? dias y dias sin poder resolver, por favor chicos

saludos

PD. Despues de actualizar la hora al crear los articulos desaparecio.
  • Timothy Michel
  • Timothy Michel's Avatar
06 Jun 2014 05:21
Replied by Timothy Michel on topic Ability to Display Tags and Styles in Intro Text

Ability to Display Tags and Styles in Intro Text

Category: English K2 Community

Word limit is kind of cool when you have many editors and you want to maintain a nice two column grid with each item having uniform height. Will this be added in future versions of k2 so that tag stripping and be turned on an off, while still setting the intro text word count in category item view?
  • Lefteris
  • Lefteris's Avatar
05 Jun 2014 13:04

Ability to Display Tags and Styles in Intro Text

Category: English K2 Community

Hi. K2 strips all tags only when word limit is applied. We do this in order to avoid breaking your site. If you disable the word limit you will see that HTML will be displayed normally.
  • Timothy Michel
  • Timothy Michel's Avatar
05 Jun 2014 01:30
Ability to Display Tags and Styles in Intro Text was created by Timothy Michel

Ability to Display Tags and Styles in Intro Text

Category: English K2 Community

I noticed that K2 strips all tags and styles from intro text. Will there be the ability in the future to allow some styles and tags to survive the stripping process?

Take a look here: www.jsandbox.org/evidence/videos/videos-by-others/content/161-confronting-nist.html

I want <a href="">, <p>, <strong>, <b>, <i> and the styles applied to these tags to survive the tags and styles stripping process.
  • JoomlaWorks
  • JoomlaWorks's Avatar
04 Jun 2014 22:17
June 4th, 2014: AllVideos v4.6.1 was created by JoomlaWorks

June 4th, 2014: AllVideos v4.6.1

Category: Product Updates [Archive]

We have just released a minor update to AllVideos, version 4.6.1.

This is a bug fix release for AllVideos 4.6.0 and it patches plugin tag matching correctly. This means that {YouTube}someid{/YouTube} and {youtube}someid{/youtube} will now match as the same.

4.6.0 did not cause existing sites and videos inserted to break, but it caused new videos inserted under K2's video tab to not be rendered at all. 4.6.1 fixes this issue.


DOWNLOAD
You can download this version by visiting the product's page at: www.joomlaworks.net/allvideos/


UPGRADING
Just upload the new version and it will overwrite the old one. Visit the plugin parameters page, check if everything is OK and save the parameters.
  • Dan Rieck
  • Dan Rieck's Avatar
02 Jun 2014 18:50

Canonical URL on page different from Base URL

Category: English K2 Community

We have run XENU, a link checker against our site and are seeing it render 2 URL's for our K2 items for the same page.

www.exampledomain.com/our-news-category/10-our-news-category/sign-on-bonus
www.exampledomain.com/our-news-category/10-our-news-category/sign-on-bonus/78-sign-on-bonus

XENU shows these as 2 different valid URLs (one is in the base url, the other is in the canonical tag), but we want to make sure from an SEO standpoint this is not causing issue.

Does k2 generate these 2 URLS and if so, why are they different?
  • Lefteris
  • Lefteris's Avatar
02 Jun 2014 13:08
Replied by Lefteris on topic K2 menu tags

K2 menu tags

Category: English K2 Community

@Viktor

Hi. K2 gives you an option to create a menu link to items tagged by a specific tag. Just create a menu link of type "K2" -> "Tag". The "TZ Filter Items Css3" you are talking about is not part of K2. If you need help with that, ask it's developer for help.
  • Lefteris
  • Lefteris's Avatar
02 Jun 2014 12:37
Replied by Lefteris on topic K2 2.6.9 cannot load image, title, description

K2 2.6.9 cannot load image, title, description

Category: English K2 Community

Is there a link to your site to look at the page source? Also ensure that you don't have any other plugin installed to set the meta tags for Facebook.
  • matteo
  • matteo's Avatar
02 Jun 2014 05:34
Replied by matteo on topic K2 menu tags

K2 menu tags

Category: English K2 Community

me too still can"t get it to work,
Displaying 2521 - 2540 out of 6582 results.

Powered by Kunena Forum