Daniel J. Lewis
Forum Replies Created
-
Forum: Plugins
In reply to: [Export Users to CSV] Use on Multi SiteHow did you get this working with Multisite? I keep getting a blank page.
Forum: Plugins
In reply to: [Custom Bulk/Quick Edit] Bulk-moving bbPress topics?Bulk-moving my bbPress posts is very important to me. I have a Once Upon a Time podcast and forums with spoiler sections for each episode. After the episode airs, I want to merge the spoilers with the regular episode discussion. This is a pain right now because I have to edit each post. But I would buy premium in a heartbeat if I knew it could do the job.
I’m already planning to buy your testimonials widget, too.
My bad. This is a conflict with Social Sharing Toolkit when OpenGraph is enabled. I wonder if this same conflict would occur with other OpenGraph plugins.
I would also like to know whether this is still being updated, but it looks like it isn’t.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Breaks bbPress 2.3 searchI’ve given Mikko access to one of my sites on which he can test.
Forum: Plugins
In reply to: [W3 Total Cache] 0.9.3 changelog?The update was updated and now I see a changelog. Thank you!
Forum: Plugins
In reply to: [W3 Total Cache] 0.93 Version with UPGRADE optionI would also like to know this. I saw Ad-Rotate cripple the free version as they moved features into a premium version.
Forum: Plugins
In reply to: [Responsive Video Embeds] Video can't go bigger than 500pxI have this same problem. “max-width:500px” is written as inline CSS to the containing div.
Even sweetandsound’s site still has this problem as you adjust browser size so the content area is larger than 500px.
So how do we remove the max-width being written onto the div?
Forum: Plugins
In reply to: [Resize images before upload] Allow custom resize without config.php edit?THANK YOU!
I also added an annotation to my video that featured your plugin among 5 plugins to speed up blogging and podcasting.
Forum: Plugins
In reply to: [Comments Evolved for WordPress] disable for a CPT possible?I’m sorry. I just realized that I mistook this post for being in the Disqus forum. My technique applies to just Disqus, but it sounds like Brandon is now inspired to incorporate a similar trick into Comments Evolved (which I will now check out).
Forum: Plugins
In reply to: [Comments Evolved for WordPress] disable for a CPT possible?Hi, guys! I figured out a way to do this because I had the same problem with Disqus blocking product reviews.
I documented the process in “how to disable Disqus on WordPress custom post types.”
The process works for the “product” post type, and I’m sure it would work for anything else, too.
(Last post from me.)
I documented this process more thoroughly: How to disable Disqus on WordPress custom post types
Forum: Plugins
In reply to: [WooCommerce] Review in Woocommerce after Disqus@thirdeyeblind82, if this is still an issue, I figured out how to disable Disqus on certain post types. In this case, I disabled it on “product” and now reviews work again!
Oops. My bad. That wasn’t the right code. That will show the reviews area, but will still prevent reviews from posting.
So add the following line instead of what I previously said to add:
if ( 'product' == get_post_type() ) { return false; }
GOT IT!
In Disqus version 2.74, open disqus.php and go to line 149. It currently has:
$replace = get_option('disqus_replace'); if ( is_feed() ) { return false; } if ( 'draft' == $post->post_status ) { return false; } if ( !get_option('disqus_forum_url') ) { return false; } else if ( 'all' == $replace ) { return true; }
Add the following new line before all of those “if” statements:
if ( is_singular('product') ) { return false; }
Save and re-upload the file and you can now leave reviews on products without disabling Disqus!