Forum Replies Created

Viewing 15 replies - 466 through 480 (of 496 total)
  • wpismypuppet

    (@wordpressismypuppet)

    a “Forbidden You don’t have permission to access /wp-admin/ on this server.” is usually in reference to being block via .htaccess or some other server related block. FTP in and go to the wp-admin folder. BACKUP any .htaccess file you find, but then delete it from the server. If there isn’t one in the wp-admin folder, go one level up and look there. After you remove the .htaccess files, try again.

    Forum: Fixing WordPress
    In reply to: Deleted Pages
    wpismypuppet

    (@wordpressismypuppet)

    That depends on you and/or your host. If you have been regularly backing up your database, then you can recover from a previous backup. If you don’t do that, then maybe your hosting company does backups. Who’s your host? What type of service do you have? Windows or Linux machine?

    We use Dreamhost and they regularly back up all SQL databases so recovering from a backup is as easy as clicking a button and waiting 10 minutes.

    wpismypuppet

    (@wordpressismypuppet)

    I don’t see an “entry-title” anywhere in the theme, but I do see:

    <?php $heading_tag = ( is_home() || is_front_page() ) ? 'h1' : 'div'; ?>
    				<<?php echo $heading_tag; ?> id="site-title">
    					<span>
    						<a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
    					</span>
    				</<?php echo $heading_tag; ?>>

    This seems to add an h1 to the home page of the site… if this is what you are referring to, then change it to this:

    <?php if( !is_home() || !is_front_page() ) : ?>
    				<div id="site-title">
    					<span>
    						<a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
    					</span>
    				</div><?php endif; ?>
    wpismypuppet

    (@wordpressismypuppet)

    If you need them integrated, or mixed in with the other posts… create your “Main Page” and get it’s id… then add that id (say 30 as you mentioned) into your existing query like so:

    query_posts($query_string . '&cat=-5,-15,-20,30');
    wpismypuppet

    (@wordpressismypuppet)

    Why don’t you just create a new category like “Main Page”, or “highlight”… then on your homepage, before or after your current query_posts, do a separate query_posts that just gets that “highlight” category. Put those in a special place on the site.

    Or do you need them integrated within your current loop? Mixed in with all the other posts on the homepage?

    wpismypuppet

    (@wordpressismypuppet)

    I’ve used this plugin on a lot of site we’ve created… it’s a good way to create different photo galleries manually.

    http://wordpress.org/extend/plugins/media-tags/

    You should be able to filter by these tags in the admin backend on both the media library and media popup. Let me know if it works for you.

    wpismypuppet

    (@wordpressismypuppet)

    First of all, people should NOT click this link. It’s not good for your PC. Second, conerofart, your site is compromised. You should contact your host and see if there are ways they can help you out. Otherwise, get on Google and see what you can do.

    Check your .htaccess files first to see if those were overwritten. Sometimes just cleaning that file out will fix the initial problem. But you need to figure out where the bug is and remove it.

    Forum: Fixing WordPress
    In reply to: Homepage issues
    wpismypuppet

    (@wordpressismypuppet)

    Maybe a permalink issue? Try going into settings->permalinks and just save the settings you have. You don’t have to change anything, just save it to cause a flush_rewrite. Maybe that might help…

    Forum: Fixing WordPress
    In reply to: Fatal Error
    wpismypuppet

    (@wordpressismypuppet)

    Well, I’m not sure why you are changing your theme. Your original request was due to a possible plugin issue. So log in through FTP… then go to the wp-content folder and look for a folder called plugins. Rename this folder to something like plugin-old. This will deactivate all the plugins, and also make WordPress think they don’t even exist. Some plugins, even when disabled, will still cause issues.

    Once this is done, you should hopefully be able to log in to the admin area and do what you need to do to fix any other issue. You can rename the plugins-old folder back to plugins and then activate your plugins one at a time, testing along the way to see which one might be the culprit. Let me know if this is helps.

    wpismypuppet

    (@wordpressismypuppet)

    To remove the formatting, simply click the “Remove Formatting” icon under the “Visual” tab. It’s the icon that looks like an eraser, in the middle of the second row of icons.

    If you don’t see a second row of icons, click the very last icon on the right of the first row… the one that says “Show/Hide Kitchen Sink” or press Alt+Shift+Z.

    You may still need to go through the html tab and remove some of the tags themselves as the “Remove Formatting” may only get rid of the “styles” attributes…

    Also, using Ctrl+Shift+V will paste content without formatting… in almost every program (Word, Powerpoint, Text Editors, etc). Or in WordPress, you can press the “Paste as Plain Text” icon. Its two icons to the left of the “Remove Formatting” icon.

    wpismypuppet

    (@wordpressismypuppet)

    Can you log into your control panel at Crystone? (ccp.crystone.net) If you can’t log into the control panel, then use the “forgot password” option on their control panel login, or CALL the company. No company will email or post login information without being able to verify the person they are giving it to. If you call, they’ll get you in over the phone, after they verify who you are.

    Once in the control panel, you should be able to view/create an ftp account to get your files. Again, customer support can help you get that information, but you have to call… too much liability putting that info in writing!

    Another note, you don’t HAVE to use the hosts WordPress install. You can use your own version once you can ftp. Using their service uses their files and databases that you don’t have access too, BAD idea… set your own up. Buy their Standard package for $10/month and you’ll have php + sql on a linux server. I know… it’s $3.75 more a month than you are paying… but at least you’ll save the $125 recover fee when this happens again!

    wpismypuppet

    (@wordpressismypuppet)

    If you are using ajax to load content onto the page, then use jQuery to add/remove the current-menu-item class from the menu item in question. Something like jQuery(‘#menu-item-8’).addClass(‘current-menu-item’). Don’t forget to use .removeClass() to take it off the “old” link…

    wpismypuppet

    (@wordpressismypuppet)

    It’s because you are closing your first if statement here:

    <?php if(strlen(get_the_excerpt()) > 120) : ?>...<?php endif; ?>

    and are not starting another if after that. So when it comes to your

    <?php else: ?>

    it’s throwing an error… There’s also more errors on that page then the simple if. You have an endwhile with no starting while… you have another endif with no opening if statement. You have a little work to do!

    wpismypuppet

    (@wordpressismypuppet)

    can you post a link so I can see better what you’re talking about?

    wpismypuppet

    (@wordpressismypuppet)

    No worries on the questions… that’s how we all learn.

    Using the default option would make your links look something like http://chocolatecoveredkatie.com/?p=12345&#8230; this typically isn’t very “user” friendly.

    For instance, one of your loyal followers would turn to their friend and say “hey, check out Chocolate Covered Katies’ new post about cupcakes… it’s at http://chocolatecoveredkatie.com/&#8230; what’s that weird number thing at the end?”

    And therefor it would be hard to have people go right to that post. Most people who install wordpress will use a custom structure of /%category%/%postname%/. This will show a pretty url such as http://chocolatecoveredkatie.com/cupcakes/dark-chocolate-brownie-batter-dip/&#8230; much easier for a user to remember and share with their friends.

    Even using the Day and Name might be a little confusing. You could always use the custom structure I just mentioned and see if that a) fixes your issue and b) makes things a little easier to manage on your end! Let me know if it works.

Viewing 15 replies - 466 through 480 (of 496 total)