Modestas
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Search not workingfound the answer:
http://ww.wp.xz.cn/support/topic/how-to-search-phrases?replies=15Forum: Fixing WordPress
In reply to: twenty eleven – how to delete/prevent "recent posts"Open your wordpress admin page –> Appearence –> widgets. Remove “Recent posts” from the right side.
If that’s not the case – go to your wordpress installation to the following folder:
%wordpress%\wp-content\themes\twenty-eleven\single.php
Open it with notepad or some other text editor and remove what’s not needed. To get rid of these “next post” and “previous post” – simply comment out the lines that says: “<span> …previous_post_link… </span>” and
“<span> …next_post_link… </span>”
That should help.Having the same issue… PHP Version 5.3.6… tested on all wordpress versions – still fatal error. Recreated database (set to new blank) – still fatal error…
Have you been playing with PHP files?
If so – redownload template and reactivate it.Forum: Fixing WordPress
In reply to: Translating the Search widgetit depends on your template.
Your template might have serch button as a picture so you might need to alter the picture. Otherwise – look in your template directory and look for search.php and examine it a bit.Forum: Fixing WordPress
In reply to: change title colorcreate a .header class and define it using css.
like this:
.header
{
text-color: green;
}Forum: Fixing WordPress
In reply to: WordPress security issue?I had the same issue before. The very good way of protecting your site is managing permissions to read_only. Set the whole public_html dir on your server to be read_only and allow admins to change permissions during the time they do modifications. This will only be vulnerable during that administration time. This really worked for me.
The drawback is that you need to have clever admins who don’t forget to restrict access to public_html once they finish administering.Forum: Fixing WordPress
In reply to: LIMITING the total number of posts returnedOpen your http://dadada/wp-admin
go to settings –> reading and limit it over there.If you’re using archive to display the post – user the following:
<?php wp_get_archives(‘type=postbypost&limit=10’); ?>Enjoy the rest!
Forum: Fixing WordPress
In reply to: Click Image to view next Image – HEEEELP!!`<a href =”link to full post”>red more… </a>
change it to:
<a href =”link to full post”><img src=”path to the picture”></a>Forum: Fixing WordPress
In reply to: Click Image to view next Image – HEEEELP!!Yes – it is very easy to do. Just look in your template directory. Open the template folder that is set as active in your site. Then look for the keywords in PHP files.
Whne you find the link replace it with the code:
This is your default look:
read more…
This how you should change it:
<img src= “path to your image thet will be displayed instead of read more text”>Forum: Plugins
In reply to: hiding post teaser from the main post.I got this fixed by using <!–noteaser–> just after <!–readmore–>
Forum: Fixing WordPress
In reply to: Custom archive, index like pageMy site is turned off as I have borrowed my PC to a friend so it will not be accessible for a while.
To be more clear about the issue:
I have one menu line. There are 2 available choices under menu. Chose #1 is Main and choice #2 is Additional. I need to find a way that “Main” would only display post of category “Public stuff” and Additional would only display categories “Private stuff”. The post in these pages should look the same with Title, short description and “read more” button.
I could use any plug-in or template if any1 has it.
Hope that’s a bit more clearer.