svil4ok
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't access admin panel and want to upgradeIt will be better to update 2.7 -> 2.8 -> 2.9.2 -> 3.0.1
Forum: Fixing WordPress
In reply to: File SizePlace this in wp-config.php:
define(‘WP_MEMORY_LIMIT’, ’64M’);
Or this in .htaccess:
php_value memory_limit 64M
Forum: Fixing WordPress
In reply to: Replace a blog title with an imageYes, in /wp-content/themes/your-theme/header.php.
Forum: Fixing WordPress
In reply to: Display how many posts were published within last 24 hoursIf i understand you, you want to display number of the posts published within a day ? Here is example:
<?php $last_24 = $wpdb->get_var("SELECT COUNT(ID) FROM $wpdb->posts WHERE post_status = 'publish' AND TIMEDIFF(NOW(), post_date) < '24'"); echo $last_24; ?>
Forum: Fixing WordPress
In reply to: hide parent categoryFind me on gtalk (svil4ok[at]gmail.com) or skype (svil4ok) to help you.
Forum: Fixing WordPress
In reply to: hide parent categoryWell, find the function that lists the cats and give to me. I’ll try to fix it.
Forum: Fixing WordPress
In reply to: hide parent categoryHow do you list the categories ?
Forum: Fixing WordPress
In reply to: hide parent categoryStill using this plugin or something else?
Try to edit the code and exclude category:
https://codex.www.ads-software.com/Template_Tags/wp_list_categories#Include_or_Exclude_CategoriesForum: Plugins
In reply to: [Bottom Bar] [Plugin: Bottom Bar] Use my own popular posts pluginYou have to edit bottom-bar.php.
Find me on GTalk (svil4ok[at]gmail.com) or Skype (svil4ok).Forum: Fixing WordPress
In reply to: Replace a blog title with an imageYou can edit your theme header and put IMG tag. For example:
<h1><img src=”URL of an image” border=”0″/></h1>
Option 2 – edit your CSS:
1. Open style.css and find#container h1 {
font-size:30px;
font-weight:normal;
letter-spacing:-1px;
width:600px;
padding:32px 0 25px 0;
}2. Edit
#container h1 {
width: 600px;
height: 30px; // edit it
padding: 32px 0 25px 0;
background: url(“URL of an image”) no-repeat;
text-indent: -9999px
}Forum: Fixing WordPress
In reply to: Can't access admin panel and want to upgrade1) Backup your database
2) Install fresh copy of WordPress
3) Install plugins & themes you had
4) Import database
5) Upgrade– Backing Up Your Database
https://codex.www.ads-software.com/Backing_Up_Your_Database– Restoring Your Database From Backup
https://codex.www.ads-software.com/Restoring_Your_Database_From_BackupForum: Requests and Feedback
In reply to: Fix my plugin nameThanks!
Forum: Plugins
In reply to: [Plugin: Meta Keywords & Description] Meta Description for Tag pagesThanks! I’ll add this feature in version 0.5.
Forum: Plugins
In reply to: [Plugin: Meta Keywords & Description] Custom description for pages?Thanks! I’ll add this feature in version 0.5.
Forum: Fixing WordPress
In reply to: Post URL – changesSomeone?