ontargetpro
Forum Replies Created
-
Forum: Plugins
In reply to: NextGEN Gallery Slideshow will not show, but image list and browser willFound my answer here
Hooray!
Forum: Themes and Templates
In reply to: Looking for a way to do an online auctionEnded up using Joomla with Auction Factory. Interesting experience. Would still like to find a WP solution.
Forum: Themes and Templates
In reply to: Looking for a way to do an online auctionProspress is a new plug-in, still in beta that is supposed to allow you to let others place items for sale on your site. You get paid for the listing, but I payment goes to the seller.
Forum: Plugins
In reply to: [Plugin: Page Links To] add rel attributeMe too. Open in new window will not work for me in WP 3
Forum: Fixing WordPress
In reply to: You do not have permission to preview draftsThanks, VirtualLee, that worked great for me.
Forum: Themes and Templates
In reply to: Problem with Page Template Using Suffusion ThemeIt should work because I am using a php include on the News page that shows the list of posts. The “News” page is a page. At the moment, yes, the News page has a sidebar. I can get one left sidebar, two left, one right or two right, but not the one left and one right option that is available.
Your secondly option? Yeah, that might work. I’ll try that, thanks.
Forum: Plugins
In reply to: Embed External Data into WordPress blog postIf you don’t mind iframes, you can add:
<iframe name=”” src=”http://www.thedomainname.com/p107776874″ width=”100%” height=”900px”></iframe>Otherwise, install a plug-in like Include It. Then create a php file with : <?php include(“http://www.thedomainname.com/p107776874”); ?> in it. Save it to the blog’s root directory and call it from the page or post with [include file=nameofyourphpfile.php]
Forum: Installing WordPress
In reply to: parse errorBeen reading about this error. Solution seems to be to start fresh. Unzip and reinstall has worked for some. I’m about to try it now.
Forum: Fixing WordPress
In reply to: Odd Permalink problem???I’m having the same problem with the extra / at the beginning of the URL. How did you fix it, Tawnyfrog?
Forum: Fixing WordPress
In reply to: Change Blog TitleThanks, riflum, that worked for me!
Forum: Installing WordPress
In reply to: WordPress API KeyI have an API key somewhere. I know this because my askimet is working and I had to get one for that. I installed another plug in WordPress.com stats and when I activated it I got an error message “WordPress.com Stats needs attention: please enter an API key or disable the plugin.” When I go to my profile, it just not there where it should be, above “Personal Options”. Where else can I find it?
Forum: Plugins
In reply to: Looking for a vertical scrolling pluginForum: Plugins
In reply to: Scrolling newsForum: Plugins
In reply to: Different header image (not random) for each category?I found this post when looking for how to insert an image on the page (not changing the header), depending on the category. I ended up reading about conditions and came up with this:
<?php if ( is_category(Baseball) ) { ;?>
<?
echo ‘<img src=”baseball image location here” width=”100″ height=”100″>’;
?>
<?php } elseif ( is_category(Football) ){ ;?>
<?
echo ‘<img src=”football image location here” width=”100″ height=”100″>’;
?>
<?php } elseif ( is_category(dance_team) ){ ;?>
<?
echo ‘<img src=”/dance teamimage location here” width=”100″ height=”100″ align=”left”>’;
?>
<?php } else { ;?><?php } ;?>
The only trouble I had was one category named “Dance Team”. It didn’t like the space, so I used the category slug “dance_team” instead.
Maybe this will help someone else.
Forum: Fixing WordPress
In reply to: Display the posts of one category in a Page SOLVED !!I found a plug-in that allows you to insert one post based on the tag. It is here: http://wordpress.org/extend/plugins/get-post/ . Not exactly the same, but it works… Still would be very grateful for assistance in getting the above code to work.