Jay
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: diiferent catagories in different pagesYea I admit that was abit bland even for me. But I’m hyped on some energy drinks at the moment. Hahahaha
I had actually started on a tutorial, but to save my breath, I give you this: How To Create A Custom Page Template In WordPress
Once you understand what a custom page template is and how to use one, then you can begin coding your own. You’ll need to use the WP_Query like I stated above.
Example of a custom post page template
Since you’re wanting pages by categories, you’ll need to read up on the category parameters of the WP_Query class.
Forum: Fixing WordPress
In reply to: 2 problems – images & pages linksWell the answer you need is a custom menu, that would allow you to manually override page links, provided your theme will allow you to use a menu in that position of course.
Forum: Fixing WordPress
In reply to: Adding SectionsWell Red Bull and some Tudors helps a little 🙂
Forum: Fixing WordPress
In reply to: TwentyEleven CustomizingSet the width of the UL element, div.menu > ul then set it’s margin to 0 and auto.
div.menu ul{ width: 450px !important; margin: 0 auto !important; }The important may or may not be necessary depending on existing alterations.
Forum: Fixing WordPress
In reply to: Adding SectionsHaha, I’ve been gettin’ that a lot this morning 🙂
Forum: Fixing WordPress
In reply to: diiferent catagories in different pagesCreate a page, assign it a custom template with a customized WP_Query, that’s it.
Forum: Fixing WordPress
In reply to: 2 problems – images & pages linksOkay now I’m confused haha. So you are running a regular website in the root directory, and a blog in the blog directory?
You have created “pages” in the blog that should link to the main site, one level above the blogs directory? Am I hearing er… reading it right?
Forum: Fixing WordPress
In reply to: Accidently changed my role from admin to —Not a prob. Have a good day 🙂
Forum: Fixing WordPress
In reply to: Adding SectionsTwo words, custom pages!
Define your pages, rather it’s cars, music, etc… for each page, define a custom page template. Within each template, make a custom WP_Query for a specific category, taxonomy, etc… so the Page for Cars could be cars_template or whatever you want.
Forum: Fixing WordPress
In reply to: Accidently changed my role from admin to —That’s a little bit excessive, though should work also. Simple edit would be just to edit a specific user’s metadata based off of his/her user_id, which is default of 1 considering it’s the default administrator.
Forum: Fixing WordPress
In reply to: 2 problems – images & pages linksOkay backup your /blog directory first, then move everything from /blog to www_route, and I mean everything, even your .htaccess file. That will put your website in the root directory and you should be able to access it simply by typing in the URL minus the “blog” subdirectory.
Forum: Fixing WordPress
In reply to: Accidently changed my role from admin to —Okay, seems it’s been awhile since I’ve had to do this haha. Anyhow, in the wp_usermeta table change wp_capabilites to:
a:1:{s:13:"administrator";s:1:"1";}Also change wp_user_level to 10
That should do it, let me know.
Forum: Fixing WordPress
In reply to: 2 problems – images & pages linksWhat is the directory structure of www_route
Forum: Fixing WordPress
In reply to: Accidently changed my role from admin to —I don’t think it’s the user-meta data, let me go to my desktop and I’ll tell you exactly what to change. Worst case, I’ll do the same thing on my test server and fix it.
Forum: Fixing WordPress
In reply to: Progress Creating New Theme from Exisiting Site, But…Overall styling issue (CSS) the structure is solid, it’s just your css is mucked up.