Riversatile
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Lost log-in page on WordPress. How do I find?Go to “Users”, then “Your Profile” and if it’s ticked, untick the box “Disable the visual editor…”
Forum: Fixing WordPress
In reply to: Lost log-in page on WordPress. How do I find?Hi,
No problem to find it, it’s here : http://ronlarsen.com/wp-login.phpOn certain themes, the login link is not displayed in the Home page.
It depends if you choose to display or not the ‘Meta’ widget in your sidebar.Forum: Fixing WordPress
In reply to: ThumbnailsOr you can try to find out where you clicked on your installed plugins that manage images/thumbnails.
Forum: Fixing WordPress
In reply to: ThumbnailsHi,
Make sure you don’t have ticked the box “Crop thumbnail to exact dimension” in your WordPress dashboard under the Media Settings :
http://www.seoyourblog.com/wp-content/uploads/2009/11/media-settings-wordpress1.pngRegards
Forum: Fixing WordPress
In reply to: Archives Widget ModificationsHi,
No problem… You’re right if you read this CODEX function reference : http://codex.wordpress.org/Function_Reference/wp_get_archives
I understand that you want to list posts post-by-post.
Do that :
<h3>Archives</h3> <div class="entry"> <h3>Posts :</h3> <div style="margin-left: 30px;"> <ul style="font-size: 15px;"> <?php wp_get_archives('type=postbypost'); ?> </ul> </div> </div>This will displays your posts (ordered by post date) using the post title.
Regards
Forum: Fixing WordPress
In reply to: content instead of excerptI found this topic :
http://wordpress.org/support/topic/shotneing-post-lenght-on-frontpage?replies=12As your custom-blog-page.php file call the content/excerpt by using
get_template_part('content','archive');instead of the_content or the_excerptYou have to make the change in your content.php file. For example, change :
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'twentyeleven' ) ); ?>
to:
<?php the_excerpt(); ?>Regards
Forum: Fixing WordPress
In reply to: plugin problemsHi,
You may try to post your issue here :
http://wordpress.org/support/plugin/gd-star-rating#postformOr downgrade the version with the previous version you had before :
http://wordpress.org/extend/plugins/gd-star-rating/developers/1.9.20 release
http://downloads.wordpress.org/plugin/gd-star-rating.1.9.20.zip1.9.18 release
http://downloads.wordpress.org/plugin/gd-star-rating.1.9.18.zip1.9.17 release
http://downloads.wordpress.org/plugin/gd-star-rating.1.9.17.zipForum: Fixing WordPress
In reply to: Cannot select featured image sizes – only original sizeI understand the issue… I had the same issue by the past when I did not understand I can’t do everything without a minimum setup for post thumbnail.
To understand, you should go here :
http://codex.wordpress.org/Function_Reference/set_post_thumbnail_sizeWhen you upload images, images are not cropped and crunched for a post thumbnail purpose. That’s why images look like this.
I saw that in your page, post thumbnails dimensions must be 280px for Width and 140px for Height.
So try to add this code in the Functions.php file :if ( function_exists( 'add_theme_support' ) ) { add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 280, 140, true ); add_image_size( 'post-thumb', 280, 140, true ); }Then save your Functions.php file and overwrite the file on your erver.
Then, to make this working, you have to remove and re-upload the images. They will be cropped and crunched to be used as post thumbnail in your the future.
Finally, reassign your new images to your gallery.
Before testing, don’t forget to clear your browser cache.
Forum: Fixing WordPress
In reply to: I Cant login to admin anymore but havent changed anything.Using your FTP browser, can you rename the http://www.willkay.com/wordpress/wp-content/ “Plugins” folder ? (for example : “Plugins.OLD”)
This will disable all your plugins, until you rename it “Plugins”Then try again to connect at http://www.willkay.com/wordpress/wp-login.php
Forum: Fixing WordPress
In reply to: I Cant login to admin anymore but havent changed anything.Wrong password ?
Try to change it by using the link ‘lostpassword’.Forum: Fixing WordPress
In reply to: Cannot select featured image sizes – only original sizeHi,
I think the custom image size in your WordPress is broken.
Check in your Functions.php if you have a function like this one :
(This is a sample of my Functions.php in which I created a custom image size for post thumbnail)if ( function_exists( 'add_theme_support' ) ) { add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 350, 150, true ); add_image_size( 'post-thumb', 350, 150, true ); }Check the file Function.php in your theme folder.
Looking for a line of code that concerns post thumbnail.
Has the modification date changed ?Forum: Fixing WordPress
In reply to: Parse error: syntax error, unexpected '}'And if you move back to a default theme like Twentyeleven ? What’s going on ?
Forum: Fixing WordPress
In reply to: Parse error: syntax error, unexpected '}'Whaw ! This is a huge Functions.php file !
Also, this theme not comes from http://wordpress.org/extend/plugins/.I do not see any error regarding ‘{‘ or ‘}’…
Forum: Fixing WordPress
In reply to: Parse error: syntax error, unexpected '}'If the theme comes from http://wordpress.org/extend/plugins/, it should be compliant. Otherwise not.