Forum Replies Created

Viewing 15 replies - 76 through 90 (of 496 total)
  • wpismypuppet

    (@wordpressismypuppet)

    If it’s blank, it might be a PHP error happening locally. Try looking at your LAMP error logs. Perhaps you don’t have your PHP’s ini file configured properly? Hard to tell… but a completely white screen, in my experience, means there’s a fatal PHP error and you have errors suppressed in your ini file so you aren’t seeing the error. The log will tell all.

    Forum: Fixing WordPress
    In reply to: Custom Mega Menu
    wpismypuppet

    (@wordpressismypuppet)

    You’ll probably need a more advanced custom walker… but before I continue, can you clarify a little more? What do you mean by “three equal submenus”? How do you want the final output to look and how is it currently looking? What does your WordPress menu look like in the admin area? The more details you provide (including a link if at all possible) the easier for us to answer quickly.

    wpismypuppet

    (@wordpressismypuppet)

    Hey victorfq… welcome to the world of WordPress. Hopefully the five hours you have vested are good ones with positive results. And it’s really great to have CSS and HTML under your belt. One other thing you’ll want to learn is PHP if you don’t already know it. It’s an OOP language and is the core of WordPress… it’s good to know if you are doing a lot of custom things!

    To answer your question, you are looking for get_posts. It’s a simple function that will, well, get posts according to a set of arguments you pass it. One parameter you’ll want to use is “posts_per_page” and set that to 5 to get the 5 latest posts. But you’ll see from it’s default usage that 5 is already the default… so chances are you’ll just need to use this line of code:

    $posts_array = get_posts( $args );

    After that, follow the example marked “Latest posts ordered by title” but of course customize the $args to fit your own needs. This example simply shows you how to “Loop” through your findings and display the results on the page.

    Let me know if you need some more help in setting this up!

    wpismypuppet

    (@wordpressismypuppet)

    That’s exactly what’s happening… your plugin is showing a 1×1 pixel white image and stretching it over the entire area. And it’s not being replaced by the images you want to show. However, since you’ve deactivated the plugin you still have issues because it looks as though the way the images were inserted is incorrect as well. You might have to re-insert each image? Not sure how the plugin worked originally…

    wpismypuppet

    (@wordpressismypuppet)

    The domain name IS changing… you are changing the name from http://12.345.678.999/~tempsite to your current domain name, so you’ll need to do something. The article I sent you shows ALL steps… if you aren’t physically moving files, then skip the steps that require you to copy/paste your website and database and just go down to “STOP RIGHT THERE!!!”

    Also, you can do these steps right before you pull the switch on DNS.

    @esmi… out of curiosity, isn’t it better to change the values in the database to reflect the correct domain rather than using PHP define variables? Isn’t that extra overhead on the server?

    wpismypuppet

    (@wordpressismypuppet)

    I wrote this blog for reasons such as this!!! 🙂

    http://www.designprinciples.com/how-to-migrate-a-wordpress-installation-to-another-domain/

    This explains in detail how to move your site. It’s long, but that’s because of all the details. The steps, when broken down, are super easy… and there are only a few of them. The problem you’re facing is your database has stored the URL to the old domain in a lot of areas and that’s causing all your issues. You need to change the database values, NOT your .htaccess files, and NOT defining new variables. Read my blog.

    wpismypuppet

    (@wordpressismypuppet)

    Use custom fields instead of tags.

    http://codex.wordpress.org/Custom_Fields

    There are many plugins that make using custom fields much easier, if you’re not the programming type.

    wpismypuppet

    (@wordpressismypuppet)

    What’s the link to your site? It might help if we could see if we duplicate your issue on our end.

    wpismypuppet

    (@wordpressismypuppet)

    You must be using a MAC. Typically the padding on a MAC differs from PC because of the “prettier” font MAC uses. 🙂

    Glad I could be of some help! You should mark this as resolved so others won’t try to help.

    wpismypuppet

    (@wordpressismypuppet)

    Do you log into the admin area with the same username/password your friend uses? If not, maybe something got messed up with your user data? Have your friend try to create a dummy admin account and you log in with that. Or log in with your friend’s credentials.

    wpismypuppet

    (@wordpressismypuppet)

    .sidebar select {
        width: 125px;
    }

    125 looks about right to me… any bigger and “Categories” goes onto another line.

    wpismypuppet

    (@wordpressismypuppet)

    Twenty Eleven does have a functions.php file. However, you shouldn’t edit it directly. Instead, create a child theme and create your functions.php file there. This way, when Twenty Eleven is updated, you won’t lose your work.

    If you can’t find the functions.php file, I would suggest getting a fresh copy of the Twenty Eleven theme is installing it.

    wpismypuppet

    (@wordpressismypuppet)

    Here is a blog I wrote all about your issue (because I’ve seen it so many times). It’s a bit lengthy, but that’s because it has a lot of detailed info on how (and why) things are done. When you strip it down to it’s basics, it’s super easy and only a few steps.

    http://www.designprinciples.com/how-to-migrate-a-wordpress-installation-to-another-domain/

    Velvet Blues is a great plugin for simple sites, but it doesn’t do everything.

    wpismypuppet

    (@wordpressismypuppet)

    If you have the money to go to a VPS, then spend the money and use these guys instead:

    http://wpengine.com/

    They are amazing and will do the WordPress upgrades for you if you want. They don’t update plugins, but they’ll update the core. They also notify you of flaws in your install (bad plugins that cause security problems). WELL worth the money… and lightning fast websites.

    Plus… you don’t need server admin skills. Though they do come in handy for many other reasons 🙂

    P.S. your error message sounds like a server connection problem, not a plugin issue. WordPress 3.6 implemented a much better way of auto saving your work. This message you see means that WordPress can’t auto save to the database, so it’s saving your work as a cookie in your browser to be accessible next time you connect to the server, so you don’t lose any work.

    wpismypuppet

    (@wordpressismypuppet)

    It’s because the Categories and Archives widget creates a <select> field for it’s drop down menus and by default a <select> field is set to display: inline. The Pages widget is wrapping it’s <select> field with a <form>, which by default is set to display: block.

    So, set a css style that says:

    .flexipages_widget form {
        display: inline;
    }

    and you’ll be in business!

Viewing 15 replies - 76 through 90 (of 496 total)