Julius0range
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Publishing a post with an image causes the image to disappear…and I forgot the image. Whoops!
I ended up replacing the admin post-new.php file with a new copy and it seems to have fixed the problem.
Very strange considering the file was unchanged, but hey.. it works!
Forum: Fixing WordPress
In reply to: Publishing a post with an image causes the image to disappearI can’t give you a link to the page without making you an admin to the live site. This occurs when creating a new post as an admin.
I could probably bandaid something to work by using the featured image instead. What I’d prefer is to just be able to create a post with an image (no text). The image appears on the front page like so:
Forum: Plugins
In reply to: ACF Values submitted via WSYWIG cause errorI have it working, but I had to replace the ACF native function
get_field()with the WP functionget_post_meta(). Works like a charm nowForum: Themes and Templates
In reply to: How do I modify the "links" module in the "redoable" themeI got it all sorted now. There was some obtuse scripting in there, but I figured it out. Thanks for the help nonetheless!
Forum: Fixing WordPress
In reply to: jQuery not workingGot it!
You were right, there were typos GALORE in my jQuery.
Thank you thank you!
Forum: Fixing WordPress
In reply to: jQuery not workingOk, now I know I’m not crazy. I bind to onmouseover and instead it invokes the function onload.
This is my code at this point:
jQuery("#categories_link").onmouseover(showSecMenu()); function showSecMenu() { alert('invoked'); jQuery("#sec_menu").css("display") = "block"; }Forum: Fixing WordPress
In reply to: jQuery not workingI know a fair bit about jQuery, but I agree I could learn more for sure.
As for the two libraries I’m not surprised. The more I dig into this template the more convoluted it seems to get. This is the first time I’ve had this problem in WP.
Thanks for the links and the personal care! I will try to get to the bottom of the issue with the links you provided. Thanks keesiemeijer!
Forum: Fixing WordPress
In reply to: jQuery not workingThis is back to where I started before I came to this site, unfortunately. I have the code in as described, but the error hasn’t changed.
It pulls in jQuery, but doesn’t allow me to actually USE it. Standard Javascript works just fine
Forum: Fixing WordPress
In reply to: jQuery not workingForum: Fixing WordPress
In reply to: jQuery not workingTried this solution (which I gotta say was pretty confusingly explained) and it didn’t work. I’m still getting the same error.
“Uncaught ReferenceError: Invalid left-hand side in assignment”