Nutrawee
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Hiding sub-pagesDetach send me a tip from about and try
<?php wp_list_pages('title_li=&depth=1&exclude=2832'); ?>
Forum: Themes and Templates
In reply to: function not run!1. If you use WP super cache, don’t forget to deactivate it.
2. Check that you properly pass correct lang value: fa or enIf you try
<div class="innertube">test<?php print 'test'; ?></div>
I think you will see ‘test’ on your page.
Forum: Fixing WordPress
In reply to: Help with upgradeIf automatic update doesn’t work, you should follow Three Step Manual Upgrade
Forum: Fixing WordPress
In reply to: Help with upgrade1. Download latest version, then extract it.
2. Use FTP client (firezilla) to login to your web server.
3. Follow this instruction.Forum: Plugins
In reply to: Using PHP generated JS in a pluginTry
bloginfo('url');
insteadForum: Fixing WordPress
In reply to: PHP Help – Turn Custom Field Template Text into a Link AutomagicallyI think
<?php // Show site URL if we have one if ($site_url != "") { echo '<a href="' .$site_url. '"><span class="breadcrumbs">' . $site_url . '</span></a>'; }
Forum: Themes and Templates
In reply to: Help with theme / setupI think “Top Header” should be changed
Forum: Themes and Templates
In reply to: Help with theme / setupCould you give for information such as the code that you add.
Forum: Fixing WordPress
In reply to: How to reference local blog address for link imagesForum: Fixing WordPress
In reply to: How to reference local blog address for link imagesIf “local” means your computer, it is impossible to do that.
You have to upload your picture to your web server, the easiest way is Media Library (WP-admin > Media > Add New). Then get the picture path and use it.Forum: Themes and Templates
In reply to: Help with theme / setupFor sub-section link, I think WP-dTree is your choice
Forum: Your WordPress
In reply to: Obb on the LeafThank you John.
Are you a chef?Forum: Themes and Templates
In reply to: function not run!I think that it has been run, but the image didn’t appear because the path is incorrect.
Forum: Fixing WordPress
In reply to: lost “log in” on our blog 2.8.4I don’t clearly understand your problem
If you want to access wp admin page, try this url
https://wsopne.org/wordpress/wp-admin
Forum: Fixing WordPress
In reply to: How can I make bigger the gravatar images in the comments1. Download WP-Gravatar and activate it
2. Disable Default Gravatar, WP-admin – Setting – Discussion
3. Go to WP-Gravatar configuration page, defind “Size of Gravatars” as you prefer
4. Edit gravatars.php @ wp-content/wp-gravatar/gravatars.phpfind this code
if($home_url == true && $comment_link != get_option('home')){ $s = "<a href='$comment_link' $follow_links>$comment_name</a><a href='$comment_link' $follow_links><img $gravatar_css_temp src='https://www.gravatar.com/avatar/$md5?rating=$gravatar_rating&default=$default' alt='No Gravatar' width=$gravatar_size height=$gravatar_size/></a>"; } else { if ($gravatar_use_url == true){ $s = "<a href='$comment_link' $follow_links>$comment_name</a><a href='$comment_link' $follow_links><img $gravatar_css_temp' src='https://www.gravatar.com/avatar/$md5?rating=$gravatar_rating&default=$default' alt='No Gravatar' width=$gravatar_size height=$gravatar_size/></a>"; }else{ $s = "$comment_name<img $gravatar_css_temp src='https://www.gravatar.com/avatar/$md5?rating=$gravatar_rating&default=$default' alt='No Gravatar' width=$gravatar_size height=$gravatar_size/>"; }}
replace it with this code
if($home_url == true && $comment_link != get_option('home')){ $s = "<a href='$comment_link' $follow_links>$comment_name</a><a href='$comment_link' $follow_links><img $gravatar_css_temp src='https://www.gravatar.com/avatar/$md5?rating=$gravatar_rating&default=$default&s=$gravatar_size' alt='No Gravatar' width=$gravatar_size height=$gravatar_size/></a>"; } else { if ($gravatar_use_url == true){ $s = "<a href='$comment_link' $follow_links>$comment_name</a><a href='$comment_link' $follow_links><img $gravatar_css_temp' src='https://www.gravatar.com/avatar/$md5?rating=$gravatar_rating&default=$default&s=$gravatar_size' alt='No Gravatar' width=$gravatar_size height=$gravatar_size/></a>"; }else{ $s = "$comment_name<img $gravatar_css_temp src='https://www.gravatar.com/avatar/$md5?rating=$gravatar_rating&default=$default&s=$gravatar_size' alt='No Gravatar' width=$gravatar_size height=$gravatar_size/>"; }}