seblg
Forum Replies Created
-
Forum: Plugins
In reply to: [YAWPP (Yet Another Wordpress Petition Plugin)] English pleaseHi,
I just commit a new version that include English translation and some more option 😉
Forum: Hacks
In reply to: change urlHi,
You’re in the wrong section. Please ask your question in the plugin section.
Forum: Fixing WordPress
In reply to: How to get front page to only show front page posts?Hi,
What do you mean by “second page”?
By the way, it depends on the theme you’re using and more ever, the way it display home page posts.
Which theme are you using?
Forum: Fixing WordPress
In reply to: How to make custom links for static pages?Ok, I see your problem.
But what you are trying to do is not possible. If your want to use a number in a custom link, there could be a conflict with a page called “6” or with a 6 ID. So WordPress automatically change it.
Forum: Fixing WordPress
In reply to: em and strong tags don't workIt could be a missing css style definition… I cannot find your theme in the official theme gallery.
Forum: Fixing WordPress
In reply to: WordPress MenusHi,
When creating a menu I supposed you have checked the pages you want to add to your menu. Then they appear in the “menu box” (on the right) in your admin panel.
Try to drag and drop the child pages just under the parent page and a little bit on the right.
Forum: Fixing WordPress
In reply to: How to make custom links for static pages?? What do you mean by “is number of page”?
I don’t see what is your goal… I understand you have a 2 page. One is called “razdel” and you want the second one to be a child of the first in order to have an url like yoursite.com/razdel/your2ndpage/
Is that right?
Forum: Fixing WordPress
In reply to: Changes Post Font Style and SizeHi,
Your link is not working. Any way, you will probably need to modify the css stylesheet by yourself. It depends of your theme.
Forum: Fixing WordPress
In reply to: How to make custom links for static pages?Hello,
What is this 6 number? Is it the page ID or page title?
WordPress maybe change the link because of an existing page with a 6 ID.
Forum: Fixing WordPress
In reply to: Make page short by using scriptHi,
You need to modify your html code in your page as below :
<a href="#title1">Your link to the title</a> [...] <h4 id="title1">Your title</h4>Forum: Fixing WordPress
In reply to: Non-default permalink = no posts foundHi,
WordPress is using url re-writing to generate link with meta-information as http://mywebsite.com/mypost/ or /thedate/thepost/
When choosing an other option than default, WordPress try to create / write in the file .htaccess in your wordpress directory.
You need to add writing right to your directory / .htaccess file.
Forum: Themes and Templates
In reply to: images loaded onto home page come up too largeOk, I cannot know the reason the original images were around 1500 pixels but it is certainly the reason why it doesn’t work.
Try to upload larger images.
Forum: Themes and Templates
In reply to: images loaded onto home page come up too largeI just have a look on your web site..
The html/css code seems to be ok. It may be a bug in a plugin you friend used/created to show the home slider.
Or… did you manually modified the html code to change images?
Forum: Fixing WordPress
In reply to: Adding a Stylesheet to the HeaderYep,
The style.css link is generate by wp_head() function.
You should read about wp_enqueue_style().
But any way, if don’t want to read to much documentation you can just add you line in the header.php file.
Forum: Fixing WordPress
In reply to: Excluding a category from the homepageHi,
I don’t think you should re-write all the query parameters.
You just need to add
query_post('-'.$categoryID);
before the loop.By the way, what is this “exclude” field in your array?