hsatterwhite
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: No pages found.This isn’t very urgent for me, because it’s just a sandbox install, but I plan on putting it under a microscope later today and will post any findings/resolution.
Forum: Fixing WordPress
In reply to: No pages found.@esmi I’ve also tried that as well. Switched back to the default theme and disabled all plugins. Still getting hit with this error. Good idea though; never forget the basics.
Forum: Fixing WordPress
In reply to: No pages found.@sabinou This db isn’t even 1mb and my connection is just fine. I’ve tried it multiple times and each time it completes, fully populated, and gives me a successful import message in phpmyadmin.
Forum: Fixing WordPress
In reply to: No pages found.Nothing there. I’ve moved a million of these installs around, but I’ve never encountered this problem before.
Forum: Themes and Templates
In reply to: Neutica – Widget “foreground” color won’t changeHi Atrux,
I’m not sure if your problem has been resolved yet and I am also not seeing the “widget” you’re referring too. If you mean your page navigation in the top of your sidebar (Home, The Creative, etc..) then I would look for the following or some variation of it:
ul.sf-menu li a { background: #000; }
then change the background color to your color, but add !important to it, so it over rides any pre-defined CSS properties that are probably not allowing you to change the colors, like so:
ul.sf-menu li a { background: #cc000 !important; }Hope this helps!
Forum: Fixing WordPress
In reply to: mySQL to change parent categories@vtxyzzy Thanks for the link above. I used that and then figured out how to add some logic to only target categories in the taxonomy and how to exclude specific categories from being modified. Excluding a category from being modified prevents a category from becoming it’s own parent. It will still execute correctly and WordPress will load, but you will not get a list of categories, because it’s illogical.
UPDATE wp_term_taxonomy SET parent = 1115 WHERE taxonomy='category' AND term_id != 1115In the example above I’ve used 1115 as my category I want to exclude from the statement, which can be modified to target any category ID as well as multiple categories.
I hope this helps others as well.
Forum: Fixing WordPress
In reply to: mySQL to change parent categoriesIndeed that will help once I add in an exclude parameter! I’ll post my query here when I’m done. Thank you gain vtxyzzy!
Forum: Plugins
In reply to: Trouble using wp_enqueue_script@appsformcs and @songdogtech:
@anexis nailed it. In the original snippet of appsformacs’ code he’s missing a closing parenthesis and semicolon just before
?>This makes it seem like it’s a theme error only because that particular instance isn’t parsing correctly in slide.php
Forum: Fixing WordPress
In reply to: Page Jump / Same Page Anchor Link / Top of PageHey Everyone,
Thanks again for checking out this problem I had, but man did it turn out to be a problem more in concept then execution!
Page jumps are supposed to work with the natural flow of a website; vertically (duh i know). So make a page jump horizontally with out the aid of javascript works in the latest version of Firefox, Opera, and IE8 (as reported by esmi), but not so much in earlier version of IE and the most current versions of Safari and Chrome.
So, we need to find an alternative to manipulate and force the behavior, so that we can page jump horizontally. After doing separating myself from the website I researched other horizontal sites and found a simple solution: The Tiny Scrollings Javascript Solution
The horizontal page jumping information can be found towards the bottom of the page. Also here is a working demo of a site that really uses it: Dean Oakley’s Portfolio
Thanks again for all the help and I hope everyone finds this useful!
Forum: Fixing WordPress
In reply to: Page Jump / Same Page Anchor Link / Top of Page@t31os_ Thanks, I’ll be sure to let my buddy Dustin know you like his work 🙂
Forum: Fixing WordPress
In reply to: Page Jump / Same Page Anchor Link / Top of Page@t31os_ cool, thanks for giving me those details.. I’ve only been working on this site for a while and it still has a LONG way to go. I haven’t done any IE bug squashing yet 😉
Forum: Fixing WordPress
In reply to: Page Jump / Same Page Anchor Link / Top of PageHmmm I’ve done some more digging and I believe this is what will have to be done:
Link Jumps to More or Top of PageI’m going to try it out and see what I get. Thanks again for all the time and help guys!
Forum: Fixing WordPress
In reply to: Page Jump / Same Page Anchor Link / Top of Page@t31os_ my mistake on that 🙂 what version of IE?
Forum: Fixing WordPress
In reply to: Page Jump / Same Page Anchor Link / Top of PageForum: Fixing WordPress
In reply to: Page Jump / Same Page Anchor Link / Top of Page@t31os_ Since changing the permalinks, the links on the side and top nav do not work currently and the back button itself appears when you scroll right thanks to jQuery.