- Posts: 4
COMMUNITY FORUM
How to unset "k2.js"
- irmax
-
Topic Author
- Offline
- New Member
unset($this->_scripts[$this->baseurl .'/components/com_k2/js/k2.js']);
But now, after upgrading to version 2.6.7, that doesn't work anymore. That's certainly because the js file is called with a new path:
/components/com_k2/js/k2.js?v2.6.7&sitepath=/
So I have two different question:
1. How should I unset the k2.js file? (Probably with preg_match_all)
2. From where the k2.js is declared? I mean, where is the code that add k2.js to the header?
Thanks in advance
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
The script is loaded like this:
$document->addScript(JURI::root(true).'/media/k2/assets/js/k2.js?v=2.6.7&sitepath='.JURI::root(true).'/');
You can modify the unset rule to match the loading
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- irmax
-
Topic Author
- Offline
- New Member
- Posts: 4
unset($this->_scripts[JURI::root(true).'/components/com_k2/js/k2.js?v2.6.7&sitepath='.JURI::root(true).'/']);
And also, would you please answer my second quesion, repeated below:
From where the k2.js is declared? I mean, where is the code that add k2.js to the header?
Please Log in or Create an account to join the conversation.
- thongtran
-
- Offline
- New Member
- CEO at foobla.com
Hope that helps.
Please Log in or Create an account to join the conversation.
- Robert J. Hantson
-
- Offline
- New Member
- Posts: 1
I'm about to trash this componant on all our sites and find a different solution - this is a problem that has been in place with this version since last year, and noone seems to have a real answer on how to actually stop it from occurring?
RH
Please Log in or Create an account to join the conversation.
- Kelsey Brookes
-
- Offline
- Elite Member
It's not necessary to do this to run k2 - it's only necessary if you don't want to use k2's javascript file.
Please Log in or Create an account to join the conversation.
- eaweb
-
- Offline
- New Member
- Posts: 1
$document->addScript(JURI::root(true).'/media/k2/assets/js/k2.frontend.js?v2.7.1&sitepath='.JURI::root(true).'/');
Please Log in or Create an account to join the conversation.
- Kelsey Brookes
-
- Offline
- Elite Member
But then I realised the current method of overriding in the template index file also breaks with every single update.
This is because the unset command needs to include the version number, which make this whole exercise a bit painful.
So I'm wondering if there's a way of getting the current version number so we can dynamically include it:
unset($this->_scripts[JURI::root(true).'/media/k2/assets/js/k2.frontend.js?'.echo $k2version.'&sitepath='.JURI::root(true).'/']);
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Kelsey Brookes
-
- Offline
- Elite Member
I've had a look in the language overrides and can't find 2.7.2 (which is the version number that appears in my K2 install) there.
Any clues on how I'd get started here?
Please Log in or Create an account to join the conversation.
- Joe Campbell
-
- Offline
- Platinum Member
- Posts: 438
Below is the code to use in the search field (leave replace field empty)
Remove K2 JS (Only):
<script src="/media/k2/assets/js/k2.frontend.js(.*?)><\/script>
Remove K2 CSS & JS:
<script src="/media/k2/assets/(.*?)><\/script>
You MUST enable to Regular Expressions parameter for it to work:
Please Log in or Create an account to join the conversation.
- Kelsey Brookes
-
- Offline
- Elite Member
Please Log in or Create an account to join the conversation.
- Joe Campbell
-
- Offline
- Platinum Member
- Posts: 438
Special thanks to @sanderpotjer from Perfect Web Team (I used his Joomla! template code as a reference):
gist.github.com/heyjoecampbell/ecd68c7447fa8c55a82ac8bfc83cdb93
Please Log in or Create an account to join the conversation.