achellios
Forum Replies Created
-
Unreal…sorry this didn’t help with your Flickr code situation. If you hit a brick wall, hit me up; I do development work on the side and could take a look for you.
On the off chance anyone else is still having trouble with this issue, I’ve posted an alternate workaround here:
Forum: Fixing WordPress
In reply to: Visual Editor WordPress 3.1On the off chance anyone else is still having trouble with this issue, I’ve posted an alternate workaround here:
Forum: Fixing WordPress
In reply to: Error when sharing post on facebookFacing the same problem. I’m building a custom Facebook button using the old share functionality (the new “Like” button seems to change frequently, and iframes are difficult to work with in tight spaces).
I’m running WP 3.1 on a LNMP setup (Nginx instead of Apache), using the following script:
<script> function fbs_click(u, t) { window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436'); return false;} </script>Here’s the actual link:
<a rel="nofollow" href="#" onclick="return fbs_click('<?php the_permalink(); ?>', '<?php the_title(); ?>')" target="_blank">Like <img src="<?php bloginfo('stylesheet_director y'); ?>/images/facebook_16.png" width="16" height="16" alt="Facebook Icon"></a>A handful of posts will share correctly, but by and large the output on Facebook looks like this:
(No Title)
http://http%3A%2F%2Fthewebsite.com.I’ve noticed that for a split second, the title and permalink display properly–but then immediately snap to the above display.
Any suggestions at all would be appreciated.
Forum: Alpha/Beta/RC
In reply to: Visit my site and it tries to download a GZ filehttp://www.wptavern.com/forum/troubleshooting/1489-visit-my-site-tries-download-gz-file.html
Fixed me right up–long story short, try Hyper Cache or W3 Cache instead.
Forum: Plugins
In reply to: Random users appearing in Tweet Blender outputArgh, spoke too soon–the problems started up again last night. I’m also noticing recurring trouble with the Twitter API–have you heard any updates on your end?
Forum: Plugins
In reply to: Random users appearing in Tweet Blender outputApologies for the double-post–I saw the Tweet Blender forums and thought I’d have a look there as well. I noticed this in a similar thread:
I activated the sidebar widget, edited the user list, saved, then removed the widget–that appears to have corrected the problem, once all the extra tweets are cleared out of the database.
It seems as though the widget’s user list is somehow being mingled with the hard-coded parameters (as you noted, a search for keyword “twitter” would certainly have this symptom).
Thanks for the quick reply!
Forum: Plugins
In reply to: [Plugin: Relative Links Fix] useless when wordpress is in subdirectorySeems painfully obvious, now that you point it out. 🙂 Plugin updated–thanks for the fix!
Forum: Plugins
In reply to: [Plugin: Simple Tags] Tags Not Saved When Editing PostIt’s a problem for WP 2.8.5 as well, so not just limited to WPMU. Disabling the plugin solves the problem. I’m picking the plugin apart now and will post back if I can find a way to fix it.
Forum: Plugins
In reply to: [Plugin: Subheading] breaks on punctuationGot it!
In panel.php, update the last line to:
<input type="text" autocomplete="off" id="wp_subheading" name="wpsh_value" value="<?=htmlentities(wpsh_value())?>" />It works for apostrophes and quotation marks in the string now.
Forum: Plugins
In reply to: Add an admin option for my PluginWere you able to find a solution that worked for you? I’m facing a similar problem–any info would be helpful.
Forum: Fixing WordPress
In reply to: filtering the_category@sbruner: This probably isn’t the best way to do it, but the following works:
<?php foreach((get_the_category()) as $category) { if ($category->cat_name != 'category1' && $category->cat_name != 'category2') { echo '<a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a> '; } } ?>Be sure to replace
&&with && when you implement your code (WP forums won’t let me use ampersand inside code tags).Forum: Fixing WordPress
In reply to: filtering the_category@nathanspike: actually, you’ll have to edit the code slightly to exclude categories by ID. Code is as follows:
<?php foreach((get_the_category()) as $category) { if ($category->cat_ID != '204') { echo '<a href="' . get_category_link( $category->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->name ) . '" ' . '>' . $category->name.'</a> '; } } ?>You need to change “cat_name” to “cat_ID” in order for it to exclude by ID #. I also changed cat_to_exclude to your ID # for ya. Hope that helps!