markezz
Forum Replies Created
-
Forum: Plugins
In reply to: Any change of a wordpress plug a la “Recommend this post”check this out: post-star-rating
Forum: Plugins
In reply to: New Problem With Gerbasi’s Extreme Video Plugin?!i am very sorry ross!
$flashStr .= "<object width='$wid' height='$hei'>";
$flashStr .= "<param name='movie' value='$url'/>";
$flashStr .= "<param name='wmode' value='transparent'/>";
$flashStr .= "<embed src='$url' type='application/x-shockwave-flash' wmode='transparent' width='$wid' height='$hei'></embed>";
$flashStr .= "</object>";
missed a quote and a semicolon.
Forum: Plugins
In reply to: New Problem With Gerbasi’s Extreme Video Plugin?!Well, you’re absolutely right. Didn’t see that a right click on the white border shows the flash menu (so its a flash prob). Theres a difference in the form of video integration.
In wp-ExtremeVideo.php edit the ‘gv_returnYTObject’ function to fit the following changes:
find:
$flashStr .= "<object style='width:$wid;height:$hei' type='application/x-shockwave-flash' data='$url'>";
$flashStr .= "<param name='movie' value='$url'/>";
$flashStr .= "<param name='scale' value='noScale' />";
$flashStr .= "<param name='wmode' value='window'/>";
$flashStr .= "<param name='salign' value='TL' />";
$flashStr .= "</object>";
change to:
$flashStr .= "<object width=$wid' height='$hei'>";
$flashStr .= "<param name='movie' value='$url'/>";
$flashStr .= "<param name='wmode' value='transparent'/>";
$flashStr .= "<embed src='$url' type='application/x-shockwave-flash' wmode='transparent' width='$wid' height='$hei'></embed>
$flashStr .= "</object>";
Forum: Plugins
In reply to: New Problem With Gerbasi’s Extreme Video Plugin?!In your themes stylesheet you’re using the following definition:
.googleVideo_holder, .yourTubeVideo_holder, .personalPlayerVideo_holder, .quickTimeVideo_holder{
text-align:center;
border: 1px solid #000000;
padding: 10px 10px 10px 10px;
background:rgb(000,000,000);
}maybe you can solve the problem by setting all the padding values to zero. (just a guess)
.googleVideo_holder, .yourTubeVideo_holder, .personalPlayerVideo_holder, .quickTimeVideo_holder{
text-align:center;
border: 1px solid #000000;
padding: 0px 0px 0px 0px;
background:rgb(000,000,000);
}Forum: Fixing WordPress
In reply to: I don’t want the pop up commentsDepends on your theme. Have a look at single.php and comments.php. According to the codex it can be in both (And every extra file that is using the loop or the comments loop).
Forum: Fixing WordPress
In reply to: I don’t want the pop up commentsor replace like (for backup issues)
<?php //comments_popup_link(something_inside_brackets); ?>
Forum: Fixing WordPress
In reply to: I don’t want the pop up commentsAre you familiar to the use of the templates system ? There must be something inside your template (inside the loop) like
<?php comments_popup_link(something_inside_brackets); ?>
Remove it.Forum: Fixing WordPress
In reply to: Needing help querying phpbb database to display on blog…There are some extensions for phpBB out there that can produce a RSS feed to syndicate the latest topics. These feeds can easily be displayed using the wordpress integrated feedreader. (eg. display on sidebar).
Forum: Plugins
In reply to: Need Help With Multi-Author Site and Author Photos (WILL PAY)If I understood you correctly you just need the author id. Instead of your line ‘if (is_author()) {‘ you could use ‘if($uid = is_author()) {‘. Then you get the user id of the author – even before the loop.
—
I know it’s not applicable in this context, but if you like please check out this plugin (its the widget solution for the problem above): mAuthorWidgetgreetings, markezz