luckdragon
Forum Replies Created
-
easiest way I can think to do that is to create a page template, and design it how you want, then create a page and tell it to use the template you created.
Forum: Fixing WordPress
In reply to: My site url always has always a homepage namecheck your settings in
Settings -> Reading
it sounds like you have the “home” page set as the default page
Forum: Plugins
In reply to: [Plugin: Mad Libs] Suggestionsthe lite version is complete, you can see a demo at: http://luckdragon.com/wp/mad-libs/
Forum: Hacks
In reply to: How to make a READ-ONLY field in User Profile? (here's my original code)don’t they already have a “registration number” that’s built in and read only? i.e. $current_user->ID
Forum: Fixing WordPress
In reply to: Evolve theme – slider positioning help pleasenormally if it is a commercial theme issue, they tell you to contact the theme creator for assistance
Forum: Fixing WordPress
In reply to: get_option and php tagsI believe there’s a plugin that allows you to have php code but by default, I don’t believe you can do it
Forum: Fixing WordPress
In reply to: 404 on all WordPress pagesdid you accidentally change the way your permalink structure is setup? or maybe you just need to set the permalink structure.. sometimes turning it off and then back on fixes the 404 issues
Forum: Fixing WordPress
In reply to: Wordpess update login issueswell, first off, the reason your page is messed up, is because the style.css file is missing (or you are pointing to the wrong one) as for can’t log in, did you change the url recently? (i.e. is it pointing to .co.uk when previously it was pointing to /wp), is it giving you an error when you try to login? what exactly is the problem you are encountering?
Forum: Fixing WordPress
In reply to: how do i get the right post on the right page?are you defining it into categories? and then displaying the category on the specific page you’re referring to? or moreso, just going to the category page for that post?
Forum: Fixing WordPress
In reply to: Permalinks Structure not working after upgrading to wordpress 3.4actually, it looks like it’s working right now, and that it wasn’t before.. since /emp/2 would designate a category of emp and 2 would designate the postname, it sounds like emp needs to be defined in a category, or you need to change your permalink structure (I could be wrong, but from a logic standpoint, it makes sense)
Forum: Fixing WordPress
In reply to: Main page as home page?Settings -> Reading
you can change the home page there
Forum: Fixing WordPress
In reply to: Only display theme option if entry is present?what are you trying to do? I mean, if you’re doing
<? $this = get_option('option_name'); if ($this) : ?> put html to display here <? endif; ?>that will only display the text if the option actually returns a result, if it doesn’t, then $this would be equivalent to “” or null, so it’ll be ignored.
Forum: Fixing WordPress
In reply to: Change posts to pages on index pageyou should just be able to:
$wp_query->query(‘post_type=page’.’&showposts=3′.’&paged=’.$paged);
Forum: Fixing WordPress
In reply to: Menu custom link using shortcode?this is the best answer I found for you:
http://manisanjai.wordpress.com/2012/03/17/how-to-add-a-shortcode-for-custom-menu-item-in-wordpress/
this might help.. don’t know for sure
http://www.kriesi.at/archives/improve-your-wordpress-navigation-menu-output/
or this: http://wordpress.org/support/topic/shortcode-support-for-custom-menus-in-wordpress-30?replies=3
Forum: Fixing WordPress
In reply to: WordPress URl and Site URL mismatch – site frozeyou have no ftp access? or direct access to the database? no site control panel from your hosting company?