Keyword

Advanced Search

Search Results (Searched for: k2 Tag)

  • Jackson-Online
  • Jackson-Online's Avatar
26 Sep 2013 18:44
Error accessing k2items in admin was created by Jackson-Online

Error accessing k2items in admin

Category: English K2 Community

I have no problem accessing the other k2 tabs (cat, tags, etc) but when I click on k2 items I get a fatal error

Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 13704792 bytes) in /home/content/24/6542724/html/libraries/phputf8/mbstring/core.php on line 121

specs
joomla 2.5.14
k2 2.6.7

everything is updated and has been for couple months without this issue, it just started no new plugins added except rokbooster.
I have a very large amount of content within k2.
  • Aliyu Abubakar
  • Aliyu Abubakar's Avatar
26 Sep 2013 13:29
Replied by Aliyu Abubakar on topic K2 Editor not displaying in version 2.6.7

K2 Editor not displaying in version 2.6.7

Category: English K2 Community

Thank you for your support. But after carefully checking the editor option i noticed that editor whas set to joomla ck editor. But it still strips all html tags attached to a text unles inputed manually. kindly help me n this as it waste alot of my time when updating my website. because i have to indicate every paragraph, link, bold and so on manually to every article i am publishing.
  • ljk
  • ljk's Avatar
25 Sep 2013 19:17
Replied by ljk on topic Load SIG Pro in K2 template

Load SIG Pro in K2 template

Category: English K2 Community

Hi,

Unfortunately, what you suggested is not what I need. If I were to edit hundreds of items and add the {gallery} {/gallery} tags around the media folder then your suggestion will work.

What I would like is to have the template add the {gallery} {/gallery} tags around the media folder to display the image gallery.
  • Aliyu Abubakar
  • Aliyu Abubakar's Avatar
25 Sep 2013 17:25
Replied by Aliyu Abubakar on topic K2 Editor not displaying in version 2.6.7

K2 Editor not displaying in version 2.6.7

Category: English K2 Community

It strips all html tags attached with the text. and if i want any tag i have to manually input them into the text again.

and again i cant find the part where to either select the editor or no editor option.
  • Yiota
  • Yiota's Avatar
25 Sep 2013 16:07
Replied by Yiota on topic K2 Editor not displaying in version 2.6.7

K2 Editor not displaying in version 2.6.7

Category: English K2 Community

Does it strip your html tags when you have entered some text with them and then select the no editor option?

If that is not the case then I'm afraid that it isn't a problem with the editor. It is how it works. If you select the no editor option then you will have to put everything by hand. If not it keeps them as you enter it.
  • Yiota
  • Yiota's Avatar
25 Sep 2013 12:24
Replied by Yiota on topic K2 module box

K2 module box

Category: English K2 Community

Hello Kevin,

In the fourth item's introtext the two img tags are inside a p element. All others are not. You should remove that and it will work fine.
  • Aliyu Abubakar
  • Aliyu Abubakar's Avatar
25 Sep 2013 01:25
K2 Editor not displaying in version 2.6.7 was created by Aliyu Abubakar

K2 Editor not displaying in version 2.6.7

Category: English K2 Community

I have two sites with k2 installed and the k2 in site A has editor while the other one doesnot have editor attached to the k2. and it strips html tags. How can i corect the problem?
i attached the pictures below.
  • Dafydd Humphreys
  • Dafydd Humphreys's Avatar
23 Sep 2013 02:24

[SOLVED] help ie more than one article distorts site

Category: English K2 Community

If i have k2 catagories on the front page. One article ok. 2 articles breaks the format in explorer but ok in other browsers. One article duplicated ok. Any ideas please using nano3 yoothem?
  • Alberto Santini
  • Alberto Santini's Avatar
21 Sep 2013 12:35
Replied by Alberto Santini on topic [SOLVED] Bug: In joomla 3 Tag & Calendar

[SOLVED] Bug: In joomla 3 Tag & Calendar

Category: English K2 Community

Still there any solution.

The only way is to hide it via css adding this line

in the admin isis template.css

[code type=css
]#adminFormK2Sidebar {
display: none;
}[/code]
  • robert
  • robert's Avatar
19 Sep 2013 18:23 - 19 Sep 2013 18:27
Replied by robert on topic Removing Icons/Links from the Admin Module

Removing Icons/Links from the Admin Module

Category: English K2 Community

Well I guess I will try to break it down here and MAYBE someone with some expert PHP knowledge can confirm it will work.

As I mentioned above I followed the tutorial about making certain menu items available to SuperUsers and Staff Members.

SuperUsers are the site developers and Staff are the actual users of the site. We wanted to limit some items so that a Staff member cant install or change certain items that may break the site or worst may be vulnerable to hackers.

We do not use the standard Joomla article/category creation system instead we have opted to use K2. With that said we have hidden from Staff the any access to the standard joomla article/category creation, access to components, modules, plugins etc. but we have left access to the K2 admin module for creating and managment of articles, categories, comments etc.

Now, since the K2 admin panel offers access to Extend K2, Extra Fields, Extra field Groups and other items, we want to prevent staff members from access those items, while allowing SuperUsers access to add items if required.

So we see that the file /domain.com/administrator/modules/mod_k2_quickicons/tmpl/default.php is the file that shows the access point to K2 features we want to hide.

We have already created the override folder and file at /administrator/template/html//mod_k2_quickicons/default.php

Currently the file looks like...
 
  • Iwo
  • Iwo's Avatar
18 Sep 2013 09:50 - 18 Sep 2013 09:52

Edit itemform to send item to one category

Category: English K2 Community

Ok, to reply to myself:

Finally, I decided to not to do this with PHP but with JS instead.

So here is code which is works perfectly for me:
<script> window.onload = function() { var fastInternet = document.getElementById("catid"); for ( var i = 0; i < fastInternet.options.length; i++) { var value = fastInternet.options[i].value; if(value != '149' && value != '150' && value != '151'){ //need to hide this fastInternet.options[i].setAttribute("disabled", "disabled"); } //if you need it else if(value == 'myValue' || value == 'myValue'){ fastInternet.options[i].setAttribute("disabled", "disabled"); } } //hide disabled fo IE $K2('#catid option[disabled="disabled"]').remove(); };

Where:

fastInternet = just variable
catid = name of "select" tag, eg. in K2 "<select name="catid" id="catid">"
149,150,151 = id's of categories which I WANT to use

"$K2('#catid option[disabled="disabled"]').remove();" = hide disabled options in IE,it works without this for FF

With combination of Comparison Operators (eg. instead != you can use ==) you can get probably situation which is what you want.

This JS code is not mine (I wish I know JS that much! ;) ) , it is from here: JS code source

Line for IE I picked up somewhere on this forum.
  • Joel Wires
  • Joel Wires's Avatar
17 Sep 2013 22:42
Page load speed? was created by Joel Wires

Page load speed?

Category: English K2 Community

I am using K2 to power or employee directory. There are 152 active items in 1 category with 37 tags, and 23 extra fields. The server is a mid-level VPS running the latest PHP 5.3 and MySQL 5.

Our main directory page has all the items listed without images, by tag
  • It is averaging around 15 seconds loading time.
  • Memory Usage - 47.03 MB (49,312,488 Bytes)
  • 14.775 seconds (+14.465); 45.20 MB (+24.061) - beforeRender
  • less than a second for everything else
  • 1786 Queries Logged

Comments are completely disabled. Catalog mode is on (which helped speed things up alot). I am using template overides, but the default templates take twice the time to load.

Any thoughts? What other info would be needed to help diagnose a problem?

thanks,
Joel
  • Axel Kaczoreck
  • Axel Kaczoreck's Avatar
17 Sep 2013 20:16
Replied by Axel Kaczoreck on topic das "<" zeichen lässt sich nicht speichern

das "<" zeichen lässt sich nicht speichern

Category: Offizielle deutsche Gemeinschaft

Hallo Silvano,

Auf der Suche nach einer Lösung für ein Problem das ich habe, ist mir etwas aufgefallen, was evtl. mit Deiner Frage zu tun hat.

Wenn Du auf Komponenten klickst und anschliessend auf KS dann bekommst Du ja die Oberfläche von K2 mit all seinen Schaltflächen wie Artikel, Kategorie etc. Ganz rechs gibt es die Einstellungen Schaltfläche wo man so die Grundeinstellungen von K2 voreinstellen kann.

Klicke dort einmal auf Inhalt. Ein wenig weiter unten findest Du Inhalt aufräumen.

Dort kann man verschiedene Einstellungen vornehmen die alle etwas mit dem automatischem entfernen von HTML-Tags zu tun haben.

Schau Dir das mal an, evtl. wirst Du da ja fündig.

Schönen Abend noch.

Axel
  • Monia Chimienti
  • Monia Chimienti's Avatar
16 Sep 2013 23:27
Tags not working on frontend editing was created by Monia Chimienti

Tags not working on frontend editing

Category: English K2 Community

Hi all,
i set up the frontend editing on my k2, but, neither with my administrative profile, i can enter or add any tags.
in the backend i have no problem. when i click on a tag and clik on add button, i have no effect.

can you help me?
  • Luuk
  • Luuk's Avatar
16 Sep 2013 21:05
Item view customize positions was created by Luuk

Item view customize positions

Category: English K2 Community

Hello,

There is this thing that I tried for a long time.
In my K2 store in the 'Item View' of a product, i want to have the image 'medium' on the left and the 'add to cart' button, price, 2 custom fields and the image gallery next to it (on the right). The full description, tags and related items can be placed underneath the image and right column.

Ok so I want to know how to edit this. For sure, I need to edit
templates/template/html/com_k2/templates/default/item.php
Or is it just a k2.css issue?

I can't get the add to cart button on the side of the image and the full description 100% width underneath the image.

Can someone point me in the right direction?

Thanks

:)
  • Konstantinos Gourloumenos
  • Konstantinos Gourloumenos's Avatar
16 Sep 2013 15:09
Replied by Konstantinos Gourloumenos on topic Translating the "All" tag to Greek

Translating the "All" tag to Greek

Category: English K2 Community

Yes!
I found one by myself...

you go to templates/<your template>/html/com_k2/templates/portfolio/category.php

in line 42:
<a href="#" id="all" class="active_sort">All</a>
you change the second All with your language
i.e. <a href="#" id="all" class="active_sort">Όλα</a>

In my case I was using the portfolio k2 template, so if you use another one, then you have to go to..
templates/<your template>/html/com_k2/templates/<your k2 template>/category.php

I hope to help you too.

Thanks
  • Konstantinos Gourloumenos
  • Konstantinos Gourloumenos's Avatar
16 Sep 2013 14:25
K2 Tag cloud, how to limit results by category? was created by Konstantinos Gourloumenos

K2 Tag cloud, how to limit results by category?

Category: English K2 Community

Hello to everyone,
I have a question about tag cloud.
I am using this in some of my sites, so I can limit tags by specific category, but when I have the same tags to items that belong to different categories, then the results come from all the categories that have the same tags.

For example, I have two categories: videos & sites, and I use tags for the items that belong to them and for some items in both categories I use the same tag: tourism.

So when I am in category listing for videos and I use the k2 tool for tags (v2.6) I limit the tags from this category, but when I press the tag: tourism which, then I get results not only from Videos category but from Sites too.

Is there any way in order to limit the results of the tag cloud to specific categories? Not only the tags but the results too.

Thanks
  • fabio
  • fabio's Avatar
13 Sep 2013 12:56

campo aggiuntivo area di testo e perdita contenuti

Category: Comunità italiana K2

Salve sto riscontrando un problema con un campo aggiuntivo "area di testo" di k2.

tutto funziona bene ma mi sono reso conto che superata una certa lunghezza in caratteri (trattasi di testo formattato in html) , al salvataggio il contenuto di testo di tale campo viene perso, e trovo il campo vuoto.

La cosa è molto seria in quanto si rischia, superando tale limite di perdere parte del lavoro fatto, anche durante un semplice modifica del contenuto.

Qualcuno ha risolto?
  • Nikos
  • Nikos 's Avatar
13 Sep 2013 00:10
Replied by Nikos on topic Can't translate 'read more'

Can't translate 'read more'

Category: English K2 Community

hello !!!

i can't rename to greek language the tag "read more.." in k2 Blog..,...i install greek language backend is in greek language but when change the file in the language folder: en- GB.com_K2 (K2_READ_MORE="Read More" to greek) my shows to the frontend of the site this "�����������"

can help me?

thanks!!
  • Krikor Boghossian
  • Krikor Boghossian's Avatar
12 Sep 2013 15:33
Displaying 3181 - 3200 out of 6582 results.