lai24luv
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem with WooThemes Original Premium News ImagesHas anyone found a solution that works? I’ve tried ALL of the suggestions posted here, and I still can’t get the image in the Featured section to work.
Thanks,
LaniForum: Plugins
In reply to: The plugin does not have a valid header.Has anyone found a solution to this problem, because I am having the same problem, only after I did an automatic update? Any help would be greatly appreciated.
Forum: Themes and Templates
In reply to: GoodTheme Lead – Placing 4 Square Ad in Sidebar?Correction – Under Editor I found the ads.php which looks like this:
<div class=”box”>
<h2>Ads</h2>
<div id=”rekla”>
<div class=”rekla”>-
<?php
$ban1 = get_option(‘pov_banner1’);
$url1 = get_option(‘pov_url1’);
?>
” rel=”bookmark” title=””><img src=”<?php echo ($ban1); ?>” alt=”” /> -
<?php
$ban2 = get_option(‘pov_banner2’);
$url2 = get_option(‘pov_url2’);
?>
” rel=”bookmark” title=””><img src=”<?php echo ($ban2); ?>” alt=”” /> -
<?php
$ban3 = get_option(‘pov_banner3’);
$url3 = get_option(‘pov_url3’);
?>
” rel=”bookmark” title=””><img src=”<?php echo ($ban3); ?>” alt=”” /> -
<?php
$ban4 = get_option(‘pov_banner4’);
$url4 = get_option(‘pov_url4’);
?>
” rel=”bookmark” title=””><img src=”<?php echo ($ban4); ?>” alt=”” />
</div>
</div>
</div>How do I edit to place little square images with my affiliate link?
Forum: Themes and Templates
In reply to: GoodTheme Lead – Placing 4 Square Ad in Sidebar?If this helps here is the Sidebar.php and where I would like the Ad Module placed.
?>
<!– BEGIN sidebar –>
<div id=”side”><?php if ($pov_distabs == “true”) { } else { ?>
<?php include(TEMPLATEPATH.”/tab.php”);?>
<?php } ?><div id=”sidebar”>
<!– begin search –>
<?php if ($pov_search == “true”) { } else { ?><div class=”box”>
<h2>Search</h2>
<div class=”sear”>
<?php include (TEMPLATEPATH . ‘/searchform.php’); ?>
</div>
</div><?php } ?>
<!– end search –>I WOULD LIKE THE AD MODULE PLACED HERE
<!– begin abut –>
<?php if ($pov_dispop == “true”) { } else { ?>
<div class=”box”>
<h2>About</h2><div id=”about”>
<?php
$img = get_option(‘pov_img’);
$about = get_option(‘pov_about’);
?>
<p class=”text”>
<!–<img src=”<?php echo ($img); ?>” class=”avatar” alt=”About Me!” />–>
<?php echo ($about); ?>
</p>
</div></div>
<?php } ?>
<!– end about –>Forum: Themes and Templates
In reply to: Displaying Ads.Hello,
Have you figured out how to get the Ads to display on the theme? I also would like to get the Ads module to appear on my blog. An example is shown here https://tutsearch.net/photoshop/best-of-2009-tutorial-lists (this is not my site).
Any information you have would be appreciated.
Thank you!
-
<?php