deziiner
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Urgent! Random formatting causing page to screw up!Guys I really need help with this. Can anyone help?
Forum: Fixing WordPress
In reply to: Urgent! Random formatting causing page to screw up!Can anyone help with this?
Forum: Fixing WordPress
In reply to: Urgent! Random formatting causing page to screw up!Is there a reason why the plugin might be acting up? And sorry about the site latency, I’m working on switching servers.
Forum: Fixing WordPress
In reply to: Urgent! Only ten CPT are displaying when I need ALL!That worked terrific! Thanks so much for the help ??
Forum: Fixing WordPress
In reply to: Trying to add Javascript via ShortcodeHey thanks for your help! Turn out I had errors in my code, that’s why it wasn’t working! Apparently WordPress DOES allow Javascript to be passed through shortcodes.
Thanks though!
Forum: Hacks
In reply to: Help! Trying to list Custom Posts as list!I’ve tried to use the following:
$profiles = new WP_query(‘post_type=doubledance_bands’);
while ($profiles->have_posts()) { $profiles->the_post();
if($profiles->ID==get_option(‘optionArtistselect’)) { $selected = ‘ selected’; } else { $selected = ”; }
echo ‘<option value=”‘ . the_ID();
echo ‘”‘;
echo $selected;
echo ‘>’;
the_title();
echo ‘</option>’;
}… unfortunately it simply outputs all the options as ‘selected’! Any ideas?
Forum: Hacks
In reply to: Help! Trying to list Custom Posts as list!That worked brilliant! You wouldn’t have any idea on how to save the selected data, and then upon page reload, the selected artist is automatically the selected option?
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Redirect to a 404 page…My apologies for looking at the FAQ page first. Thanks guys!
Forum: Fixing WordPress
In reply to: How do I use a custom single.php template for my Custom Post Types?Help?
Forum: Fixing WordPress
In reply to: Posts under certain category not working. Help!I ended up deleting ALL of the posts and categories in my new theme backend/installation and re-importing theme. All works good now.
Thanks for your response!
Forum: Fixing WordPress
In reply to: Finding Images with just a link and make them the 'Featured Image'It works great!
Thanks! ??
Hey! Thanks that worked perfectly for what I needed; you can see below how I customized it to do what I need. But I have one problem: I have sections in my theme for one main feature, and 3 secondary posts. I’ve got the code for the main feature post working, but when I copy the code (and change the IDs, names, etc.) to the other 3 places where I need it, the code only works for the last chosen
<select>
box. Here’s the code I’m using…<p> <label for="dd_mainfeature_post_id"><strong>Choose the <strong>main feature</strong> post.</strong></label><br /> <select id="dd_mainfeature_post_id" name="dd_mainfeature_post_id"> <option value=""> <?php if(get_option('dd_mainfeature_post_id')) : ?><?php $showpost = new WP_query(); $showpost->query('p=' . get_option('dd_mainfeature_post_id')); ?><?php while ($showpost->have_posts()) : $showpost->the_post(); ?><?php the_title(); ?><?php endwhile; ?><?php else : echo 'Choose a Post! (Try to stay more recent)'; endif; ?> </option> <?php $pages = get_posts('numberposts=40'); foreach ($pages as $pagg) { $mfoption = '<option value="'.($pagg->ID).'"'.$selected.'>'; $mfoption .= $pagg->post_title; $mfoption .= '</option>'; echo $mfoption; } ?> </select> </p>
Think you or anyone could help with this?
??
No one can help? ??
Forum: Plugins
In reply to: Help! How do I convert stuff to HTML entities in custom theme admin panelNo one?
Forum: Fixing WordPress
In reply to: Redirecting to install pageHey manwanos!
Can you let me know how you fixed this issue, PLEASE? I’m having this same issue and I REALLY need it fixed, like NOW.
Please please please!
Jody