Hooch
Forum Replies Created
-
Forum: Plugins
In reply to: Fixing jQuery and posibli loading newest versionI will try to fix it.
But if you want I can give you access to ftp server.
Contact me via msn (maciej[the dot]kusnierz[aatttat]hoooooooootmail.coooooooooom)Forum: Plugins
In reply to: Fixing jQuery and posibli loading newest versionYes. In notepadd++ witch .css extension. I’m programmer. I know that.
Ok. I will ignore that child style thing. How to fix it so that plugins are not loading jquery multiple times? SHould I juest edit plugins files directly? But it will not survive updates? And what if plugins uses $ instead of jquery? I heard there is some problem with that too.Forum: Plugins
In reply to: Fixing jQuery and posibli loading newest versionYes. I saved it as style.css in Thames child directory.
Where is jquery loaded from then?Forum: Plugins
In reply to: Fixing jQuery and posibli loading newest versionOk.
I removed that hardcoded stuff.
I’m trying to create my template child but I can’t activate it.
I’m getting message in template selection that my child template is not complete. That is has missing teplate files.Here is my style.css from child template:
/* Theme Name: LightWord Child Theme URI: http://www.uksgrot.com Description: UKS Grot Edition of LightWord theme Author: Andrei Luca & Maciej Kusnierz Template: lightword Version: 0.0.0.1 */ @import url("../lightword/style.css");And to functions.php in child template I added:
<?php function add_jquery() { wp_enqueue_script('jquery', 'www.hl2.boo.pl/uksgrot/jquery-1.9.0.min.js'); } add_action('wp_enqueue_scripts', 'add_jquery'); // For use on the Front end (ie. Theme) function add_vslider_js () { wp_enqueue_script('vslider', plugins_uri() . '/js/vslider/vslider.js', array('jquery')); } add_action('wp_enqueue_scripts', 'add_vslider_js'); ?>It is not working now because I can’t load that child template at all.