8 questions
1
vote
0
answers
71
views
Why am I receiving an invalid PHP type error?
I am trying to execute a PHP command async form original request.
While trying this I found php-enqueue for Symfony (6.4):
https://github.com/php-enqueue/enqueue-dev
https://php-enqueue.github.io/...
-1
votes
1
answer
299
views
WordPress enqueuing a CSS file using JavaScript inside Functions.php
I'm trying to load a CSS file just on mobile.
I made some research and found the the best way to do that is by using JS so here is the code I found:
$( document ).ready(function() {
var isMobile ...
0
votes
2
answers
64
views
Enqueuing style and script based on template not working
In WordPress, I have a template file called vertical-page.php.
When a page has this template applied, I want to load in a specific stylesheet and script.
I have tried to use is_page_template(), but it ...
0
votes
0
answers
218
views
Enqueue controller action process
Symfony 2.8
Using https://github.com/j-guyon/CommandSchedulerBundle to manage periodic Command executions.
Each of these Command executions invokes an specific Service based on the Command arguments.
...