anabelle
Forum Replies Created
-
Forum: Plugins
In reply to: post from mail in different categoriesi want to know this too.
Forum: Fixing WordPress
In reply to: Show blogroll with pull-down menui would love to help but i don’t know what else to do, but remember that there is always the option to do it manually directly on your template, if you don’t have so many links.
just write:
<li class="blogroll"><h2>Blogroll:</h2>
<form action="" name="pulldown2">
<select name="mypulldown2" onchange="document.location=pulldown2.mypulldown2.options[selectedIndex].value">
<option value="">Select Blog</option>
<option value="https://blog1.com">blog1</option>
</select>
</form>
</li>and keep adding:
<option value="https://blog1.com">blog1</option>
replacing the values for each blogForum: Fixing WordPress
In reply to: Not Allowed Error (405)wich browser are you using?
Forum: Themes and Templates
In reply to: Editing header with imagelook for:
#headerblock in your template’s css (style.css) ad add:height:270px;
width:579px;between { and }
should look something like this:
#headerblock {
height:270px;
width:579px;}
besides other values that may be included.. but are different for each theme.
hope it helps
Forum: Everything else WordPress
In reply to: Browser dependant contentthank you VERY VERY much, but im still interested in the working browser tags for te if condition in wordpress.
Forum: Themes and Templates
In reply to: Changing Register, Login, Logout and Site Admin Linksyou need to edit the file template-functions-general.php, you can find it under your wp-includes folder
there, look for:
function wp_loginout() {
if ( ! is_user_logged_in() )
$link = '<a href="' . get_settings('siteurl') . '/wp-login.php">' . __('Login') . '</a>';
else
$link = '<a href="' . get_settings('siteurl') . '/wp-login.php?action=logout">' . __('Logout') . '</a>';
echo apply_filters('loginout', $link);
}
function wp_register( $before = '<li>', $after = '</li>' ) {
if ( ! is_user_logged_in() ) {
if ( get_settings('users_can_register') )
$link = $before . '<a href="' . get_settings('siteurl') . '/wp-register.php">' . __('Register') . '</a>' . $after;
else
$link = '';
} else {
$link = $before . '<a href="' . get_settings('siteurl') . '/wp-admin/">' . __('Site Admin') . '</a>' . $after;
}
echo apply_filters('register', $link);
}then, replace:
__(‘Register’)
__(‘Login’)
__(‘Logout’)and
__(‘Site Admin’)
with:
<img src="images/your_image.gif" width="" height="" border="0">
don’t forget to replace: images/your_image.gif with the actual path to your image. This path should be different in each case.
hope it helps
Forum: Fixing WordPress
In reply to: Picture in Heading of pageYes there is, but it depends on your theme, if you have experience with html, open the header.php file on your theme’s folder and add the code to the image after:
<h1><a href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
or something like that.Forum: Fixing WordPress
In reply to: Show blogroll with pull-down menuLoggin to the admin –> links —> link categories
edit the blogroll categorie.. and add in the fields:
Before link:
<option value="
Between link and description:">
After link:</option>
I don’t know if this will work and maybe it wont, but is worth the try, also if it works the text that will appear in the dropdown will be the description of the link, and not the link itself so you maybe will need to update your links descriptions.
I’m just guessing that code out so please let me know if it worked, that would make me real happy.
Good Luck
Forum: Everything else WordPress
In reply to: Blog other pages. How do they fit together?actually the pages in wordpress work like that, just create your pages, and assign them parents an sons. Should be easy
Forum: Everything else WordPress
In reply to: Blog Content Hijacking? Stop it?SUE THE BASTARDS!
Forum: Fixing WordPress
In reply to: Show blogroll with pull-down menudo you get the select blog title in the dropdown??
Forum: Everything else WordPress
In reply to: Browser dependant contentAnother question… just guessing does this work with safari?
<!–[if safari]>
blah blah blah
<![endif]–>wich browsers are detected and by wich tag? im seeing a lot of posibilities here.. thanks!
Forum: Everything else WordPress
In reply to: Browser dependant contentyoure right about targeting IE users, and Javascript, I will do it that way, and sorry i didn’t read but I swear i haven’t seen it… ? did you edit your post after? i think you did!
Forum: Fixing WordPress
In reply to: still shows ‘Register’ and ‘Login’ after I’m logged inIf you have the login and register links in the theme, they will always show up.
If they are written as static html fo course, but i dunno if this is the case, i cant understand the problem.
Forum: Everything else WordPress
In reply to: Browser dependant contentok, that’s IF ie, but im looking for “IF firefox: nothing, else: content”