Hi, im trying to add a “Posted on:” text before the job date, but i cant.
I have edited te “before” variable in “the_date” function, and edited, even deleted all about “get the date” and “the date functions” on “general-template.php”, “functions.php”, “index.php” but the date desnt change at all.
I dont know where else to look, im using a modified “gravida” theme
Here is an example, the red date is my problem
http://www.ccg.cl/wp/trabajos/tecnico-en-computacion/
Thak you
Thread Starter
pjdiaz
(@pjdiaz)
Well, i solved th issue. There’s a variable in the custom.js file that doesnt work:
var gravida_bowser_width = jQuery(window).width();
You have to change the part where it says:
var adjustMenu = function() {
if (gravida_bowser_width < 989) {
To:
var adjustMenu = function() {
if (jQuery(window).width() < 989) {
I really hope that this turns out to be useful for someone, took me about a week to figure it out alone.