Tagged Questions
0
votes
1answer
113 views
plugin's script and style enqueing not working on Thesis
I've published a plugin on WP repository that allows some theming for Gravity Forms.
This plugin as been tested with Twenty Ten, and Twenty Eleven.
When I've tried to test it in a site that uses ...
1
vote
3answers
659 views
How do I force wp_enqueue_scripts to load at the END of <head>?
I am loading scripts via wp_enqueue_scripts in my child theme.
The only problem is that my style.css script get loaded BEFORE plugin scripts, yet I need to override the css in the plugins with my ...
1
vote
2answers
88 views
Making a plugin only available on the front-end for the logged in super admin
I made a little plugin that enqueues 1 .js file and 1 .css file into a theme's front-end. All it does it load a grid on top of the theme so I can visualise the design.
If this plugin was activated ...
0
votes
1answer
425 views
wp_enqueue_style in Plugin [duplicate]
Possible Duplicate:
Where is the right place to register/enqueue scripts & styles
When I enqueue a css style in a plugin like so:
function add_my_stylesheet()
{
wp_enqueue_style( ...
0
votes
2answers
332 views
wp_enqueue_style for plugin options page
I'm trying to add a stylesheet to the options page for my plugin - code looks like this:
add_action( 'admin_print_styles-rps-paypal', 'rps_paypal_add_css' );
function rps_paypal_add_css() {
...