wpismypuppet
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: In-page dropdown list not linking to directed webpageHere is an answer to your situation:
http://stackoverflow.com/questions/6387572/go-to-different-url-on-clicking-button
However, I strongly advise against using this practice. You are, in essence, relying on JavaScript for your visitors to navigate through your databases. You should never rely on JavaScript for a critical function… you should only use it to enhance the visitor’s experience.
Think of it this way: if JavaScript was disabled for whatever reason (person using a browser that doesn’t support it, or a smartphone or maybe they just turned it off for security reasons) then this whole navigation you are setting up would become useless. Someone would click the Go button and nothing would ever happen.
Forum: Fixing WordPress
In reply to: Remove Post Thumbnail classesMine is still there… make sure you check your source code, and not just through Firebug or something… my Firebug leaves it off, but my source code shows it.
Forum: Fixing WordPress
In reply to: Remove Post Thumbnail classesYou are welcome…
Forum: Fixing WordPress
In reply to: wp-table reloaded altering row heightGive us a link to the page so we can see what’s going on. We should be able to see “drafts”.
Forum: Fixing WordPress
In reply to: Get rid of "[…]" in wordpress blogThis might be what you are looking for…
Forum: Fixing WordPress
In reply to: Remove Post Thumbnail classesIt’s the correct code, but an incorrect preg_replace. Use this… I tested and it works:
//remove class from the_post_thumbnail function the_post_thumbnail_remove_class($output) { $output = preg_replace('/class=".*?"/', '', $output); return $output; } add_filter('post_thumbnail_html', 'the_post_thumbnail_remove_class');Forum: Fixing WordPress
In reply to: Trouble widening width of pageJust give us a link to the site. We can see the CSS and we’ll be able to help you better.
Forum: Fixing WordPress
In reply to: Remove Post Thumbnail classesWhat’s the error?
Forum: Fixing WordPress
In reply to: Site and log-on disappearedHere are some tips to troubleshoot your issue. The most common cause of this is usually an incompatible plugin. Since you can’t log into WordPress’ admin area, you’ll most likely need the FTP approach:
http://www.ostraining.com/blog/wordpress/wordpress-white-screen-of-death/
Forum: Fixing WordPress
In reply to: Improt users from CSVHere is a link to a step-by-step:
http://perishablepress.com/importing-wordpress-users-via-csv-files/
Or you can try a plugin if you trust it:
Forum: Fixing WordPress
In reply to: Change Body Background Image for Different PagesPersonally I wouldn’t use a “theme” to change the background image of the body tag. I would use CSS. Are you familiar with CSS?
Every page has a unique ID, as you’ve already pointed out. The
<body>tag has a function calledbody_class()that pumps out a bunch of different “classes” for the<body>tag itself. One such class will always be page-id-#, where # is the id of the page you are looking for.In your style.css file, you can specify:
body { background: url('images/background.jpg'); }Then for any specific page you want to change the background on:
body.page-id-14 { background: url('images/newbackground.jpg'); }Instead of uploading your images through WordPress itself, just FTP them into the images folder on your server.
Forum: Fixing WordPress
In reply to: Displaying and Separating Custom Posts by TaxonomyThis isn’t tested, but it’s along the idea you are looking for…
$post_type = 'locations'; // Get all the taxonomies for this post type $taxonomies = get_object_taxonomies( (object) array( 'post_type' => $post_type ) ); foreach( $taxonomies as $taxonomy ) : // Gets every "category" (term) in this taxonomy to get the respective posts $terms = get_terms( $taxonomy->name ); foreach( $terms as $term ) : $posts = new WP_Query( array( 'taxonomy' => $taxonomy, 'term' => $term->slug, 'posts_per_page' => -1 ) ); if( $posts->have_posts() : while( $posts->have_posts() ) : $posts->the_post(); //Do you general query loop here endwhile; endif; endforeach; endforeach;Forum: Fixing WordPress
In reply to: Post text running into and through widgetsHmmm I’m still seeing line 411 showing “margin: 0 10% 0 0;” You are looking for a line that looks like:
@media screen and (-webkit-min-device-pixel-ratio:0){ #content { margin: 0 10% 0 0; } } /*end safari hack */You should know that this “issue” is only happening in Google Chrome. Other browsers render the issue proper. The style.css file is located in wp-content/themes/skirmish… so I think you are in the right file. There are a lot of weird “hacks” throughout your stylesheet which look to be the issue… but, who knows.
Look for that line with 10% right margin above and turn that to 22% and you should be all set.
Forum: Fixing WordPress
In reply to: Edit Page BlankOne of two methods…
1) Access your database and run a SQL query to delete them manually…
2) Use a plugin, such as http://wordpress.org/extend/plugins/better-delete-revision/Not sure this will solve your issue, but it sure will make your database a lot smaller in size 🙂
Forum: Fixing WordPress
In reply to: Post text running into and through widgetsGo into your style.css file, line 411, and change:
#content { margin: 0 10% 0 0; }to:
#content { margin: 0 22% 0 0; }