banago
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Parse errorLet’s talk in private: banago at gmail.
Forum: Fixing WordPress
In reply to: Parse errorWould you like me to get on board to help you for a few bucks?
Forum: Themes and Templates
In reply to: Need Help Customising – The Morning After ThemeGo in your home.php file and show up the loop code. We need to see how it is done, so that we can suggest how to change it.
Normally
posts_per_page=10
Forum: Themes and Templates
In reply to: Merge ThemesWhat I do if I want to have new features, is just add the new features to the new theme. This is easies and best approach for me.
Forum: Themes and Templates
In reply to: How do you customize a purchased template?I think they are controlled through widgets, but this is just an assumption. It would be best if you could contact the theme author.
Forum: Fixing WordPress
In reply to: Parse errorYou’re just missing some files. Did you make the upgrade?
Forum: Fixing WordPress
In reply to: Retrieve posts by tags with spacesOK – now it makes sense. Follow these steps:
1. Put this code on your functions.php
// Give me a slug form title function sluggify( $url ) { # Prep string with some basic normalization $url = strtolower($url); $url = strip_tags($url); $url = stripslashes($url); $url = html_entity_decode($url); # Remove quotes (can't, etc.) $url = str_replace('\'', '', $url); # Replace non-alpha numeric with hyphens $match = '/[^a-z0-9]+/'; $replace = '-'; $url = preg_replace($match, $replace, $url); $url = trim($url, '-'); return $url; }
2. Use this query_post code:
query_posts( array( 'tag' => sluggify( get_the_title() );
Forum: Themes and Templates
In reply to: Garland right sidebar not showingMore info would be helpful.
Forum: Fixing WordPress
In reply to: Cropped Thumbnail won't appear as Featured ImageYou are using timthumbs script in the file and it does basically the same thing as the_post_thumbnail, but in a different way. You need to choose to go with one of the solutions. I recommend the built-in one.
Forum: Fixing WordPress
In reply to: Retrieve posts by tags with spacesYou should not use your post title as a tag. Tags are one or two word keywords. There are several ways to query posts by tags, but you need to explain better what you intend to do.
Forum: Fixing WordPress
In reply to: Parse errorThis function is not recognized:
wp();
This means your WP files are not complete. Try to do a manual upgrade of your blog: https://www.wplancer.com/upgrading-wordpress-in-ten-easy-steps/
Forum: Fixing WordPress
In reply to: Just completely lost my siteFTP is the solution ??
Forum: Fixing WordPress
In reply to: Parse errorMake a break at the top:
<?php/** *
Should be:
<?php /** *
Forum: Fixing WordPress
In reply to: crop images in media – doesn’t workOK, I fixed it. If you have Regenerate Thumbnails plugin activated, deactivated it. Also, note that the crop button activates after you make a selection, in case you have not yet made one.
Good luck!
Forum: Fixing WordPress
In reply to: crop images in media – doesn’t workThe same issue here. Any one stumbled upon a solution?