lettergrade
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Hackers: CSS File with spy code?Heheh, good to hear.
Forum: Fixing WordPress
In reply to: proper way to add background image behind content?Yes, it does.
You may like this, if you don’t already use it: you can test things like this easily by using Firebug for Firefox. Super handy for testing things out on the fly. Here’s a tutorial.
Forum: Fixing WordPress
In reply to: The content in my posts is missing.Did you try switching to the default theme temporarily, to see if the posts display? That might at least narrow down your troubleshooting to theme-related ideas.
Forum: Fixing WordPress
In reply to: The wrong back up!Could you describe the process you used to put the wrong files in?
Do you have a backup of the right site? And what format is that backup in?
Forum: Fixing WordPress
In reply to: Hackers: CSS File with spy code?Looks like a copy-paste accident to me, but I’m interested to hear any other, broader conspiracy theories. 😉
Where did you find it?
Forum: Fixing WordPress
In reply to: Adding WordPress to OpencartHi Kite Gorilla! I do not have personal experience with it, but I was able to find a number of interesting threads in the support forums where people are dealing with similar questions. Have you checked them out to see if any apply to your situation? http://wordpress.org/search/opencart?forums=1
Forum: Plugins
In reply to: Audio playerDid you check out this tutorial, posted above? How to embed audio and video players in WordPress
Look through it and let us know if you have any more specific questions! Good luck.
Forum: Fixing WordPress
In reply to: Posts1. Go to your Dashboard > Posts > All Posts. Can you find those posts in the list? If so, can you check their Revisions to see if you can reset their content to a past autosaved version?
2. Check your Trash on the Posts page to see if the posts are in there.
3. Was anything else changed recently? New or updated plugins?
4. What happens when you add a new post? Is it appearing as it should?
Forum: Plugins
In reply to: Audio playerHi chaloupi, good news: if you’ve updated to WordPress 3.6, you have an audio player already that’s compatible with mobile devices: How to embed audio and video players in WordPress
There are lots more in the plugins directory, though, and the details for each should tell you if they have special mobile-compatibility: http://wordpress.org/plugins/search.php?q=audio+player
If you are looking for something compatible with a certain streaming service (soundcloud, etc), or you have more details you want to fulfill, let us know and maybe we can make more specialized suggestions.
Forum: Fixing WordPress
In reply to: Using rewind_posts for displaying multiple categoriesOoh, sorry, didn’t catch that you wanted them random and I put it out too quickly. Excellent that you have it working the way that you want!
Forum: Fixing WordPress
In reply to: home page slidersGreat, good luck!
Forum: Fixing WordPress
In reply to: Changed theme now inner links aren't workingGlad it was resolved!
Forum: Fixing WordPress
In reply to: Using rewind_posts for displaying multiple categoriesYour first loop is using the $original query, but every loop after that is only using the main query.
Here’s another option:
<?php $original = new WP_Query(); $original ->query('cat=12,13,14');?> <?php while ($original -> have_posts()) : $original ->the_post(); ?> <?php if ( in_category('12') ) { ?> <!--content--> <?php } elseif ( in_category('13') ) { ?> <!--content--> <?php } elseif ( in_category('14') ) { ?> <!--content--> <?php } ?> <?php } ?> <?php endwhile; ?>I haven’t tried it, but the loop should check all three conditions and behave accordingly with every post it goes through. No need for rewinding. Much simpler!
Forum: Themes and Templates
In reply to: [Prana] How to replace text navigation with an ImageFirst problem, the url for the image should be relative to the folder the style.css file is in. For css, your background would look like this:
background: url ( ‘images/lindy-loves-header.png’ ) no-repeat;
Was it not showing up as an image, or was it not taking up the appropriate space at all?
If that doesn’t fix the problem for you, paste the portion of your header.php child file that contains the div.
Forum: Everything else WordPress
In reply to: Gigantic project gone madFor me, those are two different steps: I make the html and css work, but I also have a blank theme of my own that I use as the starting point for integrating the two.