Links a script file to the generated page at the right time according to the script dependencies, if the script has not been already included and if all the dependencies have been registered. You could either link a script with a handle previously registered using the wp_register_script() function, ...
1
vote
1answer
14 views
Where to call wp_enqueue_script in a plugin with custom template?
I am writing my first plugin and I have this code in the main plugin php to replace home page with custom template
add_filter( 'template_include', 'replace_home_page' );
function replace_home_page( ...
0
votes
0answers
20 views
Beginner having trouble loading custom Javascript [on hold]
I've been plugging away trying to get a simple custom JS to run all day and can't seem to home in on my problem. I'm running a simple script that validates a few form fields. It runs fine if I copy ...
0
votes
1answer
27 views
Enqueueing Scripts and Styles
I'm trying to enqueue my custom script and style with the block of codes, the scripts works but not the style. I don't know what I'm doing wrong.
function my_scripts_method() {
...
1
vote
3answers
29 views
Loading scripts to the Post Edit page only
I have added a few meta boxes for the posts and pages, so I want to load a js script only on the Create/Edit post and page. How can I do that?
Currently I'm using following but that loads the scripts ...
0
votes
0answers
14 views
Change Login CSS - Include instead of echo
I'm trying to figure out how to include a stylesheet instead of echo'ing <style> tags.
I'm currently using the following function:
// Custom Login Styles
function login_styles() {
echo ...
0
votes
0answers
22 views
Why can't I load JS script in a plugin?
I have this at the bottom of my plugin file, but while I can access the plugin, I can't see any reference in the code to jquery.chained.min.js in the source:
add_action( 'wp_enqueue_scripts', ...
2
votes
1answer
25 views
wp_enqueue_script : how to change loading order of scripts?
I would like to know how to list all scripts loaded on a page, ranked by order and change this order.
1
vote
1answer
34 views
Do we have to register JQuery if we want to use it in wp_enqueue_script()?
Or is it registered by default?
I am enqueuing a script with wp_enqueue_script()
wp_enqueue_script('validation', 'http://domain.com/wordpress/wp-content/themes/theme/js/validation.js', ...
0
votes
0answers
32 views
Adding javascript files to WordPress and jQuery version
I've been trying to use the recommended method of adding javascript files to WordPress, after reading this http://codex.wordpress.org/Function_Reference/wp_enqueue_script but I'm having a hard time ...
0
votes
0answers
18 views
using enqueue_script in a shortcode isn't working
I'm new to wordpress and I'm trying to get this to work by following the wordpress codex but I feel like I must be missing something obvious.
I have a child theme based off of a parent one, and I ...
0
votes
1answer
19 views
why the wp_register_script doesn't work for register_activation_hook
I want to register a script when my plugin is activated. So I wrote:
register_activation_hook(__FILE__, 'register_script');
function register_script(){
...
1
vote
1answer
26 views
Proper way to enqueue a generated script that isn't in a .js file?
What's the proper way for loading a script via WordPress that isn't in a .js file?
I'm generating some javascript on the fly based on some field options in a plugin. I want to load it into the page, ...
2
votes
2answers
74 views
Enqueue script in specific page
I am building a wordpress theme with a theme dashboard with options, but as I read somewhere, the enqueue script code I am using just enqueues it in the backend but it loads in every page in the ...
0
votes
0answers
37 views
Adding wp_enqueue_media(); causes problem
I want to add the media uploader in the theme options page. If I add following code in the options page, the media uploader works fine there, but it creates problem in the standard posts featured ...
0
votes
0answers
9 views
Gumby Framework - Enqueue Scripts
I am working with the Gumby Framework. I am enqueing scripts per usual in my functions file.
One issue I am running into is with the way Gumby handles its jQuery version. It checks to see what ...
0
votes
0answers
15 views
Use wp_enqueue_script for ie8 only? [duplicate]
I am trying to enqueue script for ie8 but it is not working as it should.
This is the code I am using:
function mytheme_add_init() {
if ( is_admin() ) {
$file_dir = ...
1
vote
1answer
31 views
Enqueueing Script to footer puts it at the very bottom
So I've got a bit of an issue, and not sure what the problem is. I'm trying to enqueue javascript in the footer of my Wordpress site. The footer looks like this:
</footer>
</div>
...
0
votes
1answer
55 views
Adding Colorpicker Field To Category
I want to add a custom field to my categories where the user can color code them. I've added the field but I want to use built in colorpicker (either tinyMCE or the farbtastic) to give the user an ...
0
votes
2answers
62 views
JS plugin script loading but not working
I am trying to create a theme using curtains.js but am having a few problems. I have both registered and enqueued the script and the part that would go in the footer like so:
...
0
votes
1answer
31 views
How to know what are the style sheets are available in wordpess?
I just like to use jquery-ui Style Sheet but i don't know whether it's pre-installed in WordPress or not b'coz without knowing that i think it will create a problem. what in case it is available in ...
1
vote
1answer
24 views
if file_exists not working with wp_enqueue_style
Inside a function I'm doing something like this:
$optional_css_exists = get_template_directory_uri() . "/css/optional.css";
if ( file_exists($optional_css_exists) ) {
...
0
votes
1answer
31 views
How to include php-generated javascript?
I've looked around and have found no great solution so far: I would like to add customized javascript from a widget using wp_enqueue_script, but Wordpress seems to be limiting scope to the javascript ...
-1
votes
1answer
39 views
jQuery issue and wp_enqueue_script
Actually i have one theme with enqueue for insert jquery code and reference for the core and also jquery iu
Bus happend things that i don´t understad, actually as i tell until i need insert code for ...
1
vote
3answers
158 views
Adding Additional Attributes in Script Tag for 3rd party JS
I ran into this when attempting to integrate Dropbox's drop in chooser API to a plugin I'm writing.
The API documentation instructs you to place the following script tag at the top of your file:
...
1
vote
1answer
45 views
How to undo deregister script and use local versions?
The WordPress theme I am using deregisters the jQuery and jQuery UI libraries and registers google-hosted versions instead of the libraries from wp-includes. Here is the code in `functions.
UPDATE:
...
0
votes
1answer
50 views
How to enqueue scripts in right way in a plugin?
I am developing a wordpress plugin and just came out with a problem with enqueue scripts.
I want to enqueue JQUERY UI (.js) and (.css) in my plugin.
Is it better to enqueue it from Google CDN or ...
0
votes
1answer
45 views
JavaScript Libraries in WordPress
I understand that in order to use a JavaScript library in WordPress, such as jQuery, we have to use the following code to prevent conflicts:
function my_scripts_method() {
wp_enqueue_script( ...
0
votes
1answer
31 views
wp_enqueue doesn't load dependencies
I'm trying to load style.css but rest.css should be included first.
I don't understand why reset.css is not included
function addMyScript() {
wp_register_style('style', ...
0
votes
1answer
126 views
In jquery use php variable to execute an enqueued jquery file
I am loading some jquery on a specific Wordpress admin page, the jquery loads and works fine but I need have this jquery only trigger if a php variable exists.
In php I would just write a function ...
0
votes
0answers
26 views
Using array page name together with page id to deregister script
If I use this:
if (is_page(array(blabla-test-page, 20726, 20720, 38881))) {wp_deregister_script( 'gdsr_script' );
}
the blabla-test-page looks like it overrides different pages, even if certain ...
0
votes
2answers
60 views
Loading Scripts For Specific Template
I'm attempting to load a couple of scripts based on the template in use. However, the is_page_template is not activating.
From my functions.php in the child theme I have:
function sectionDescription ...
0
votes
1answer
67 views
How to add stylesheets only to pages with specific shortcode?
I'm running a function on pages where the shortcode [make-me-a-map] is used. It enqueues javascript to the page and makes a map. That part works fine (woot!) but I'm having trouble with adding the ...
1
vote
2answers
212 views
How to load JQuery easing script in wordpress?
Ok, first of all, I know how to do this manually.
I could just download easing, place it in my plugin folder and load it using wp_enqueue_script. However, I want to load my script in a long-term way, ...
0
votes
1answer
76 views
Only let plugin add actions to wp_head & wp_footer on single posts
I'm using a a plugin (Comments Evolved) on a recently built site.
The issue I'm having is that this plugin globally enqueueing and adding actions to the head and footer of all pages. I'd like to ...
0
votes
1answer
24 views
Checking for 'gallery' shortcode using strpos always returns false
I want to conditionally enqueue a script and stylesheet depending on whether the [gallery] shortcode is used in posts. Here is how I am doing it (based on):
function doraemon_scripts() {
if( ...
0
votes
1answer
56 views
enqueue script if page is not equal to
I'm registering some js scripts in my function.php, I have 2 versions of one js file, one FOR the homepage, and one for every other page.
I've managed to get this to work to register the homepage ...
0
votes
1answer
51 views
wp_localize_script not create variable in head section
I try to make an ajax function in wordpress and I enqueued my script and declared my variables like this in functions.php:
function my_enqueue_scripts() {
wp_enqueue_script(
'load_post',
...
2
votes
3answers
91 views
How to detect if a function has been fired on any page so scripts/styles can be loaded conditionally
I'm building a small gallery plugin and I'd like to only load scripts/styles onto the page IF the gallery has been loaded via the template tag. The template tag can take a post ID parameter when used ...
1
vote
0answers
40 views
Getting jquery to work with custom theme
I am trying to get some jquery plugins to work with my custom theme.
Up until now I was doing this:
function my_scripts_method() {
wp_deregister_script( 'jquery' );
wp_register_script( 'jquery', ...
1
vote
1answer
66 views
When is it too late to call the action wp_enqueue_scripts?
I'm creating a plugin that always enqueues a script in the footer. I also have a function that if called would enqueue an additional script that depends on the other one. Here is the basic format of ...
1
vote
1answer
237 views
jquery-ui-autocomplete is not loaded with wp_enqueue_script
when I load the default jquery-ui-autocomplete script from wordpress via
wp_enqueue_script( 'jquery-ui-autocomplete', '', array( 'jquery-ui-widget', 'jquery-ui-position' ), '1.8.6' );
it is ...
0
votes
0answers
44 views
Javascript not defined but included
I am attempting to implement a javascript function within a page. It is implemented correctly in the header and loads correctly:
<?php function forceNumber2() {
wp_enqueue_script( ...
0
votes
1answer
118 views
wp_localize_script is not adding a global variable for javascript
So I've read a few tutorials on ajax and the codex documentation on it and I think I understand now how it is supposed to work, however it appears that wp_localize_script is not doing anything at all. ...
1
vote
1answer
31 views
Prioritizing wp enqueue scripts error
I wanted to load the following two scripts before any other script so I added priority 1 and 2, however I am getting an error. I read it on a tutorial that this is how to prioritize
...
1
vote
1answer
30 views
Overriding a function in wordpress
A theme that I bought is adding unnecessary inline JS code that is not needed in the front page.
/* Scripts - dynamic css */
add_action('wp_footer', 'upme_custom_scripts');
function ...
0
votes
1answer
60 views
Javascript on Registration Page
I've been trying to figure out how to implement javascript on my registration page with no luck. I've read the documentation on wordpress about properly including js, have searched for relevant ...
0
votes
0answers
18 views
wp_enqueue_script Best Practice [duplicate]
I have this script:
function my_scripts() {
wp_enqueue_script('commonfunctions', child_template_directory . '/script/commonfunctions.js', array('jquery', 'jquery-ui-draggable'), '1.0', true);
if( ...
-2
votes
1answer
24 views
Which jQueryUI handles are predefined in wordpress?
In section 4 of this blog entry jQueryUI is loaded by
wp_enqueue_script('jquery');
wp_enqueue_script('jquery-ui-core');
wp_enqueue_script('jquery-ui-datepicker', $pluginfolder . ...
0
votes
1answer
57 views
Child Theme - what is the scope of overwriting files?
I noticed that creating twentythirteen-child/archive.php overwrites twentythirteen/archive.php but creating twentythirteen-child/shortcodes/drop-cap/drop-cap.php does not overwrite ...
0
votes
1answer
46 views
Modular CSS and JS in Child Themes
Let's assume that twentythirteen/shortcodes/ exists and inside are folders with shortcodes. 1 folder = 1 shortcode. Each shortcode has: 1 PHP file, 1 CSS file, 1 JS file.
...