cosmicflowww
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Music Player in pop-up windowHi,
I wanted to have the pop up link on a static page or the sidebar.Forum: Fixing WordPress
In reply to: Music Player in pop-up windowPlease? I’m pretty helpless here. I tried the Grooveshark support too, but they didn’t know what to do.
I can design posters, icons, banners, whatever in return for some solution ?? Or write fanfiction, possibly.Forum: Fixing WordPress
In reply to: Music Player in pop-up windowSomebody know how it could work? Iframes, maybe?
Forum: Fixing WordPress
In reply to: [NSFW] Add a story in a different catagory and bannersHi,
it’s not so difficult if you know what to look for. Which categories should be excluded from showing up on the main page?If you want to show, say, stories on the main page and exclude the other two categories, you should add
<?php if ( is_home() ) { query_posts( 'cat=-1,-2' ); } ?>
in the index.php file, right before this code appears:
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
You also need to replace the numbers in the first code (1&2) with the correct category numbers, which can be found on the category page in your admin interface of wordpress.
Hope this helps a bit. If you’re still confused, I’ll try to explain it better ??
Forum: Fixing WordPress
In reply to: Music Player in pop-up windowHi,
thanks for the link, but the script I use works just fine in wordpress – if I use another embed code, like this one:
<a href="https://www.youtube.com/v/kVk1HOlkq_o?version=3&hl=de_DE" onclick="NewWindow(this.href,'Soundtrack','450','300','no','center');return false" onfocus="this.blur()">click to open player in pop up</a>
But I don’t know how to get the music player loaded into the pop up!
Forum: Fixing WordPress
In reply to: How to Change Footer in WordPressHi,
if you log into the admin interface, there should be a menu item called “Design” to your left. Click on it, then select “Footer” in the submenu that appears. There you go ??Forum: Fixing WordPress
In reply to: something wrong with menu hover/activeIt’s because you are using your menu links to display category pages instead of static sites ?? But I don’t know if there’s a fix for it, sorry.