Tirumal
Forum Replies Created
-
You can try resetting your password using your database. Follow instructions here.
Forum: Fixing WordPress
In reply to: File permission and upload problemThis is server issue, you could change ownership using chown. If it doesn’t work contact your Hosting company.
Forum: Fixing WordPress
In reply to: Private albums for specific usersYou may follow following tips to achieve above requirements.
- Create a category for your posts or you can create custom post type. Search on Google and you’ll get many. To create custom post type you can follow this link. A custom post type will let you create custom categories/ taxonomy for your album
- Make your post private from visibility option under Publish option of the page/post.
- You can also search plugins for the same at WordPress Plugin Repository
Refer WordPress Getting Started Documents if you are beginner. And don’t worry if you are new everyone is here to help you out. Welcome to wonderful world of WordPress.
Forum: Fixing WordPress
In reply to: SIte hoizontal scrollingYou are Welcome!
Forum: Fixing WordPress
In reply to: SIte hoizontal scrollingEdit following codes in style.css of your theme
Location of file in your case: http://www.wcorlando.com/wp-content/themes/wcorlando/style.css
.rht_head .top_menu { background: url("images/top_menuBg.gif") no-repeat scroll left top transparent; display: block; height: 39px; padding-left: 9px; width: 614px; } #footer { margin: 0 auto; overflow: hidden; padding-bottom: 10px; width: 100%; }Forum: Fixing WordPress
In reply to: Double Spacing Between Paragraphs Help?- Open up style.css for your current theme, it is located in wp-content/themes/’Your Current Theme Name’ and remove the bottom padding for ‘p’ tag also change the line-height if required.
- If you are facing problem in the editor than you can edit the tiny-mce’s or your current editor stylesheet.
If you don’t know CSS and want to learn than follow this tutorial at tizag.
Forum: Fixing WordPress
In reply to: How do I change the way my WP name appears across other websites?Let met guess, you are talking about the blog you have on wordpress.com.. well, to change the website name through out, you should change the name appearing inside your profile settings where you can manage multiple blogs in wordpress.com.
Here is a better solution to add place holder to contact form 7 without editing the plugin itself.
Forum: Fixing WordPress
In reply to: Problem with add_image_size ???Try changing the img68 name to something else.
You can try the following:
1. From the FTP access your .htaccess file and give it full permission 777 .
2. Now open the .htaccess file in notepad (gedit in linux) and insert the following code
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress3. Now, reupload the file to the root folder.
4. Now try changing the permalink.
The above is applicable for Linux hosting. If you are using windows hosting then install this plugin -> http://wordpress.org/extend/plugins/wp-htaccess-control/
Forum: Fixing WordPress
In reply to: I get Error 500 when I click on my Page menuTry disabling some plugins or remove recently entered functions or hooks in the functions.php.
Did you built your theme by yourself or you downloaded from somewhere, if you have downloaded it then try seeking help on their forum or by contacting them.
If you still facing the problem, then do the following
1. Disable the current theme and activate twenteleven (or any default theme you have) and see if the problem still exist. (if the problem exist do the step 3)
2. Disable all the plugins and check.
3. Re-upload wp-admin if nothing seems working.
Let me know if any of the above is working.
Forum: Fixing WordPress
In reply to: How to allow indexing on my pages?Go to > Settings > Reading > Uncheck Search Engine Visibility
OR,
Install this plugin: http://wordpress.org/extend/plugins/wp-robots-txt/
@goodlifeguide, remove the jquery library included in your header.php and include following code into your functions.php
if (!is_admin()) add_action("wp_enqueue_scripts", "my_jquery_enqueue", 11); function my_jquery_enqueue() { wp_deregister_script('jquery'); wp_register_script('jquery', "http" . ($_SERVER['SERVER_PORT'] == 443 ? "s" : "") . "://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js", false, null); wp_enqueue_script('jquery'); }Tell me if this doesn’t work..
Reference: http://css-tricks.com/snippets/wordpress/include-jquery-in-wordpress-theme/
Forum: Fixing WordPress
In reply to: category.php of custom post type pagination?Updated Link: Custom post type pagination
Forum: Fixing WordPress
In reply to: category.php of custom post type pagination?