wxwx
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: get_the_title external phpThanks MichaelH pointing me the wp-blog-header.php
Forum: Everything else WordPress
In reply to: shoutmix integrationOK got it work now ??
<?php global $user_ID, $user_identity ?> <?php function shoutmix($user_identity = '') { return htmlspecialchars( '&name='.rawurlencode($user_identity) .'&code='.md5($user_identity.'uniquecodehere')); } ?> <?php if ( $user_ID ) : ?> <iframe title="yourshoutmixid" src="https://www5.shoutmix.com/?yourshoutmixid<?=shoutmix($user_identity);?>" width="200" height="200" frameborder="0" scrolling="auto"> <a href="https://www5.shoutmix.com/?yourshoutmixid<?=shoutmix($user_identity);?>">View shoutbox</a> </iframe> <?php endif; ?>
Forum: Everything else WordPress
In reply to: shoutmix integrationOn the guide they give the php function like this
function shoutmix($name = '') { return htmlspecialchars( '&name='.rawurlencode($name) .'&code='.md5($name.'uniquecodehere')); }
…mix.com/?ourname< ? =shoutmix($name); ? >” width=”…
my question too how to combine the md5+current username registered on our blog
i found this code can be help
global $user_ID, $user_identity, $user_level
if ( $user_ID ) :Forum: Themes and Templates
In reply to: Problems with ‘line-height’hi. what theme you use?
try add this code to your css file.
.entry p { line-height:18px; padding-bottom:10px; }
Forum: Requests and Feedback
In reply to: _wp_unfiltered_html_comment causes warning in XHTML1.0 Stricthttps://www.w3.org/TR/html4/types.html#h-6.2
ID and NAME tokens must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]), hyphens (“-“), underscores (“_”), colons (“:”), and periods (“.”).
Forum: Fixing WordPress
In reply to: Uppercase to Lowercaseok got it. thanks ??
Forum: Themes and Templates
In reply to: Removing 3rd column for Grid-Focus themeadd
{border-right:1px solid #000;} to the mainCol
or
{border-left:1px solid #000;} to the midColForum: Themes and Templates
In reply to: Removing 3rd column for Grid-Focus themeindex.php and single.php remove
<?php include (TEMPLATEPATH . ‘/third.php’); ?>
style.css and resize the width for
/* main – middle content and columns */
#mid{}#mainCol{float:left;margin:26px 0 0 0;width:435px;}and
/* style individual sidebars */
#midCol{color:#444;float:left;margin:25px 0 0 33px;width:250px;line-height:1.3em;}Forum: Themes and Templates
In reply to: Stylesheet questionbody {
margin:0;
background:#B65D41 url(/background.jpg) repeat;
color:#B65D41;
font-size: 62.5%; /* Resets 1em to 10px */
font-family: ‘Lucida Grande’, Verdana, Arial, Sans-Serif;
text-align:center;
}Forum: Themes and Templates
In reply to: Where is widgettitle?create new widgettitle to the css ??
h2.widgettitle { font:bold 12px Verdana, Arial, Sans-Serif;}
Forum: Themes and Templates
In reply to: custom image header, wp defaultopen style.css and play around these lines
#header {
background: #73a0c5 url(‘images/kubrickheader.jpg’) no-repeat bottom center;
}#headerimg {
margin: 7px 9px 0;
height: 192px;
width: 740px;
}Forum: Themes and Templates
In reply to: <!–more–> Questions<?php the_content(); ?>
to
<?php the_content('More'); ?>
Forum: Themes and Templates
In reply to: Custom Field – ThumbnailsThanks Ivovic :P. you rock!
Forum: Fixing WordPress
In reply to: Script code into index and dashboard fileslook at your functions.php (in folder theme) and paste it to https://wordpress.pastebin.ca
Forum: Fixing WordPress
In reply to: Help with XHTML validationplease post your code at least before and after <div id=”subtop”>writing for local people</div>
maybe <div> inside <p>. so is not permitted.