Jay
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Accidently changed my role from admin to —The only thing I can think of is to go into the database and change the user’s level. I can’t remember the table or column name for the life of me, but I know it’s there, I’ve had to do it myself once or twice.
Forum: Fixing WordPress
In reply to: 2 problems – images & pages linksFirstly I didn’t suggest you to change it, I only wanted to know if it was right… by “right” I meant was it actually looking in the correct directory for your blog’s url?
To change it back you’ll need to go into the database with phpmyadmin. It’s in the options table I believe.
To get what you want done, you’ll have to move the blog from the subdomain “blog” to the main domain’s directory, usually public_html or www. You can just do this instead of doing the database thing.
Forum: Fixing WordPress
In reply to: Dynamic menu highlighting with WordPress menusHmph, well that’s odd, though since it’s a WP issue I would imagine it’ll be fixed soon.
Forum: Fixing WordPress
In reply to: Edit Menu URLFirst question, are the menus dynamic, or are the URL’s manually entered?
Second question, does your “General Settings” reflect your database changes? (both the wordpress url, and the site url?)Forum: Fixing WordPress
In reply to: Auto image in multiple resolutions. Is there a plugin for this?What you’re breaking it down to now is simple theme creation. Unfortunately as much as I need cash right now lol, I don’t do designing, graphics isn’t my thing. A simple and cheaper solution would be to get a theme first, then tailor it to what you want. Which is what I did with “Jenzoo”, before I switched haha.
Anyhow, the reason I suggested using the wordpress API is that you would only have to upload one image per post, therefore decreasing the upload time on you. Though I have done the same thing with photoshop haha.
On the flip side if you can get a hold of a theme, or get one designed in a PSD (properlly layered of course) I can convert those into themes if need be. I dont’ want to sound like I’m advertising here on the forums so if you don’t mind just skype chat me so I can give you my email.
Skype: jjswebs
Forum: Fixing WordPress
In reply to: Dynamic menu highlighting with WordPress menusFor some reason your home page uses .current_page_ancestor but the product page uses .current-page-ancestor so I would just add the following to your style.css file, which is proven to work in chrome inspector.
.current-page-ancestor{font-weight:400;}
EDIT: notice the differences between hypens and underscores, I would look into fixing why that happened or you’ll be running into this issue quite frequently.
Forum: Fixing WordPress
In reply to: Auto image in multiple resolutions. Is there a plugin for this?Whoa, when did that come out >.> I didn’t know about that… ugh *facepalm*
Forum: Fixing WordPress
In reply to: Categories List broken by PermalinksCheck your original thread.
Forum: Fixing WordPress
In reply to: 2 problems – images & pages linksOkay, first off, what’s your site’s actual URL?
Second off, check your setting in the admin panel for problem (1). ie Settings tab, then General settings (/wp-admin/options-general.php) Make sure your WordPress Address is mypage.sk, along with your Site Address.
For issue #2, I believe it’s related to issue #1, so fix that first, then get back to me.
Forum: Fixing WordPress
In reply to: Categories List broken by PermalinksWow webstranka, you’re everywhere tonight 🙂
Forum: Fixing WordPress
In reply to: Auto image in multiple resolutions. Is there a plugin for this?@dickstar:
I understand your situation, it really depends on cost though. It’s a simple plugin, can actually be created in say a week max. Price depends on the individual, I’d say shop around on freelancer sites. Average web developer cost is anywhere from 10/hr – 30/hr (for good work). However, there are developers out there that charge based off the project, I’d ball park it around mid 200’s for the overall project, but that’s just me, and I’m hourly anyhow.Whatever you do, make sure you get everything in writing and never pay more than what they quote you!
@webstranka
How about we not hijack Dick’s thread, I’ll meet you in your thread okies.Forum: Fixing WordPress
In reply to: Categories List broken by Permalinksget_category_link() requires an ID, maybe try $category->ID because you’re just passing an object at this point.
<?php $args=array('orderby' => 'name','order' => 'ASC'); $categories=get_categories('taxonomy=works'); foreach($categories as $category) { echo '<p><a href="' . get_category_link( $category->ID) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a>: '; echo ''. $category->description . '</p>'; } ?>FYI I don’t know if ID is a valid object type but it’s worth a try, I haven’t dumped the $category variable yet.
Forum: Fixing WordPress
In reply to: Author In Page Title?Haha, I understand. Try developing a full real estate WordPress theme 🙂 Feel free to ask if you need anymore help.
Forum: Fixing WordPress
In reply to: Auto image in multiple resolutions. Is there a plugin for this?Well creating the page isn’t a small task, but from a programming point of view, yes of course it can be done. Without going too in depth and melting your brain, I’ll try to be brief.
Options page in the admin panel would allow you to of course define the sizes. Then it would store the actual dimensions within an array. The front page would pull that array and iterate through it with add_image_size. Once all image sizes are iterated through, you would then use wp_get_attachement_image to show just the thumbnail. Now below that, you would use a loop to generate the form option data that would then link to the newly re-sized image.
Hope that helps… I need more coffee.
Forum: Fixing WordPress
In reply to: Author In Page Title?Can I see the full author.php file.
(use pastebin please)