kylmorg
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Link images to postNo, I do not use/have a child theme. I know that it’s something I should do, but I haven’t yet. I edit my stylesheets and other files often so I’m familiar with how that all works.
Thanks.
Forum: Plugins
In reply to: [Easy Custom Auto Excerpt] Custom button placement & more…Thanks, but can you be a bit more specific on where I’m adding this bit of code? Is it my css stylesheet?
Also, I appreciate the reply but I’m just a bit confused by it.
Forum: Plugins
In reply to: [Social Media Share Buttons & Social Sharing Icons] OverlapThanks socialdude. I’ve noticed that it’s a bit better lately, perhaps I spaced out the margins and padding so that it doesn’t overlap with the other widgets anymore. Thanks again.
Forum: Plugins
In reply to: Adding widget area to headerCan anyone please help?
Forum: Fixing WordPress
In reply to: Site Content disappearedFixed it.
Forum: Fixing WordPress
In reply to: Moving the Nav Menu next to Header ImageWow so this code was almost perfect. I had to change a few things and I’m like an inch from having everything exactly how I want it. So here’s a preview of the changes:
So the only thing left that I want to do is move the nav bar up so that it’s sitting directly next to my circular logo. What bit of code do I need to make that final adjustment?
Also, I had to make one adjustment to the code you provided which is for the
.main-navigation
portion. Mine now looks like this so I could cater to my specific images:main-navigation { margin-left: 169px; }
Forum: Fixing WordPress
In reply to: "Older posts" missing…Okay can someone else give me a hand who doesn’t give the most general, one-word answers possible? I mean thanks for trying but jesus.
Forum: Fixing WordPress
In reply to: "Older posts" missing…Okay, but what code am I specifically looking for?
Forum: Fixing WordPress
In reply to: "Older posts" missing…I’ve edited it significantly…
Forum: Fixing WordPress
In reply to: "Older posts" missing…Twenty twelve.
Forum: Fixing WordPress
In reply to: JavaScript error effecting Visual/Text EditorHa jesus. Just did a re-install and everything’s working now. Had no idea it didn’t correctly upgrade. PROBLEM SOLVED.
Forum: Fixing WordPress
In reply to: JavaScript error effecting Visual/Text EditorHuh, weird. So how do I go about uploading a fresh version of 4.0?
I did this just recently based on another help thread I had started. I replaced the wp-admin & wp-includes directories completely and left my wp-content directory alone as I was instructed to. Also didn’t replace the wp-config.php file but replaced all other loose files sitting in my /wp/ directory.
Forum: Fixing WordPress
In reply to: JavaScript error effecting Visual/Text EditorYes and when I unpack the .gz the only file that is unpacked is wp-tinymce.js
Forum: Fixing WordPress
In reply to: JavaScript error effecting Visual/Text EditorThanks. I’ve uploaded a fresh version of that folder and it still doesn’t work. One of the problems is that the Java console says it’s looking for two specific files in that folder that just don’t exist.
1. tiny_mce.js
2. wp-tinymce-schema.jsForum: Fixing WordPress
In reply to: JavaScript error effecting Visual/Text EditorOkay so your first solution isn’t the issue. I’ve switched hosts recently and the problem was present on the old and new hosts. Now I’ve got the problem down to 1 issue and I’ve seen it on a ton of google searches.
There’s an issue with jquery in that tinymce is not defined. It reads as such:
ncaught ReferenceError: tinyMCE is not defined
So far from googling, the best answer I’ve found is the LAST answer on this post:
https://stackoverflow.com/questions/14352407/jquery-error-tinymce-is-not-defined-on-wordpress-admin-panelThe only problem for me is I don’t know what I’m supposed to change and where I’m supposed to make $compressed=0. The code mentioned in that article looks like this for me:
if ( $tmce_on ) { if ( $compressed ) { echo "<script type='text/javascript' src='{$baseurl}/wp-tinymce.php?c=1&$version'></script>\n"; } else { echo "<script type='text/javascript' src='{$baseurl}/tiny_mce.js?$version'></script>\n"; echo "<script type='text/javascript' src='{$baseurl}/wp-tinymce-schema.js?$version'></script>\n";