piratescott
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comments no longer work.Fixed it, had to remove jetpack comments.
Forum: Fixing WordPress
In reply to: Comments no longer work.I went and did all of this except the last bit since I wasn’t sure what it meant, and I still couldn’t comment
I second both of those, it doesn’t redirect or show a message either would be nice. Great plugin though thank you for creating it.
Forum: Plugins
In reply to: [liveTV Bundle] Major HelpActually scratch that, even if you do the plugin no longer works. Just saying to let people know.
Forum: Plugins
In reply to: Are there any Vote to Publish plugins?OK well there are none out there but atm I’m making one myself (not a plugin just the code) if anybody want’s to turn it into a plugin afterwards let me know I’ll give you the code from all the parts I’ve done.
Forum: Hacks
In reply to: Showing 3 titles for each imageYep cheers.
<?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; $args = array( 'post_status' => 'pending', 'posts_per_page' => 20, 'paged'=>$paged); $recent_posts = new WP_Query( $args ); ?> <?php while ( $recent_posts->have_posts()) { $recent_posts->the_post(); echo '<div id="votes"><li id="voteimage"><a href="' . get_permalink() . '" title="' . esc_attr( $recent["post_title"] ) . '">'; echo get_the_post_thumbnail($recent["ID"], 'thumbnail'); echo '</li></a>'; echo '<li class="vote-title"><a href="' . get_permalink() . '" title="Look '.esc_attr($recent["post_title"]).'" >' . get_the_title() .'</a> </li>'; echo '<li class="vote-desc"><a href="' . get_permalink() . '">' . get_the_excerpt(10) . '</a> </li>'; echo '<ul class="vote-footer"><li>Author: <a href="http://streakingpirates.com/forum/users/' . get_the_author() . '">' . get_the_author() . '</a></li></ul>'; echo '</div>'; } ?> <div id="vote-pages"> <div id="vote-older"> <?php next_posts_link( '« Older Posts' , $recent_posts->max_num_pages ); ?> </div> <div id="vote-newer"> <?php previous_posts_link('Newer Posts »'); ?> </div> </div>Is the code for it incase anybody ever needs it and finds this.
Forum: Hacks
In reply to: Adding div above the Pending Review post typeI’m using a plugin called Post Layout (https://wordpress.org/plugins/post-layout/) which seems to do the trick if I use the get_post_status in it like you already mentioned. But I might try your way instead so I don’t have to rely on a plugin just for the div. Thanks!
Solution found. I went into the post.php and changed the property of the ‘pending’ type post from protected to public. Problem is, if I upfate wordpress this may be undone, is there a way to make this permanent through a non-wordpress file?
Forum: Fixing WordPress
In reply to: Hidden blog: it's only visible in the mobile version.http://mikaelcreative.com/blog/wp-admin to get to your admin panel
Forum: Fixing WordPress
In reply to: Hidden blog: it's only visible in the mobile version.is the admin side of the website still working?
Forum: Fixing WordPress
In reply to: Allow users to see pending approval postsBumping because I’ve had no responses and kind of need to get this sorted, couldnt seem to find any php functions for allowing users to see pending post types
Forum: Fixing WordPress
In reply to: New installation unresponsiveOh so the theme customisation page is broken, I thought that was usually template related. If you can’t use that though there’s other ways to edit everything you need, the customisation part is only a small bit.
Do you have this setting in the admin panel? appearance -> theme options?
Forum: Fixing WordPress
In reply to: Disabling h1 Headersnp, once you get the gist of some css the rest is easy so you’ll know how to tweak other things you need to aswell
Forum: Fixing WordPress
In reply to: Disabling h1 Headersyeh its font-weight:100; (if 100 is too think try 200 and so on) put it under the font-size:whatever-px; bit
Forum: Fixing WordPress
In reply to: New installation unresponsiveClick on what customize? Something through musicvideodeejay.com/wp-admin ?