Chris Montgomery
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Excerpt] Installed plugin, no effect on excerptsI’ve been having this issue too, in some cases, and Chris’ solution using
the_advanced_excerpt()
fixed the problem for me. I’m not sure why this would be the case though – why isn’tthe_excerpt()
being filtered even when I have it checked in settings?Also: if you use
the_advanced_excerpt()
, I strongly suggest checking to see if the function exists first so it doesn’t break your theme if the plugin is deactivated:if (function_exists('the_advanced_excerpt')) { the_advanced_excerpt(); } else { the_excerpt(); }
Or, if you prefer the ternary syntax:
(function_exists('the_advanced_excerpt')) ? the_advanced_excerpt() : the_excerpt();
Forum: Plugins
In reply to: [issuupress] Restrict the list by tagI may be wrong, but it seems issuu has removed support for tags. I can’t find the option to include tags anywhere in the new interface. I’m also getting an error message on my site.
Here’s another issue I opened on the subject:
https://www.ads-software.com/support/topic/issuu-removed-support-for-tags
Forum: Plugins
In reply to: [Yoast SEO] New WordPress SEO update, can't edit SEO TitleNone of these suggestions really seem to address the problem. I don’t want to clear the field. I’d like to edit the grayed-out title. No others appear when I click.
To me, this plugin has still lost some of its ease of use.
Forum: Plugins
In reply to: [Yoast SEO] New WordPress SEO update, can't edit SEO TitleI too am frustrated with this new behavior. It seems counterintuitive to disable the ability to directly edit the SEO Title. My articles’ SEO Titles are generated by <title> – <post type> – <site name> and so it’s time consuming to reconstruct this title should it be too long by default. Having the option to select the old behavior would be very helpful.
Thanks Sjobidoo — I was having the same problem on my multisite install and this fixed the issue for me too.
Forum: Plugins
In reply to: [New User Approve] [Plugin: New User Approve] no email notification for adminI’m not getting emails either, but I do get other emails from my site.
The first solution worked fine for me.
The second one did not.
Nevermind. It turned out it was a space that I missed in functions.php
Also, this happens when I try and crop normally. It looks like the crop is going beyond the edge of the image.
I too am finding myself frustrated with the lack of documentation. Though the plugin is working fine for me on a basic level, there are some things about its behavior that I don’t understand. For this, documentation would be useful since I can’t find my answer in the forums.
Forum: Plugins
In reply to: [Gallery to Slideshow] Using Gallery to Slideshow in a widget area?I’m curious about this as well.
Forum: Plugins
In reply to: [Perfect Images] [Plugin: WP Retina 2x] Nothing happens when I click generateYa, 3.4 is pretty colorful!
Yeah, the Zombie sizes are custom sizes for the theme I’m working on. So you’re saying the plugin should show a different icon to let me know more about what’s happening?
If it’s having trouble finding the file then it’s probably relating to the network thing. I’m not totally sure how to clear it up — like I said, I’m still learning my way around WP — but I get the sense it shouldn’t be too difficult.
I’m definitely willing to help out — though there’s not too many users this seems like it could be a really great plugin! I’m looking forward to using it. But right now I need to get to bed — it’s 3am here. I’ll be back online in the ‘morning.’
Forum: Plugins
In reply to: [Perfect Images] [Plugin: WP Retina 2x] Nothing happens when I click generateOkay — I was just guessing, I’m no professional developer or anything. ??
Forum: Plugins
In reply to: [Perfect Images] [Plugin: WP Retina 2x] Nothing happens when I click generateI’m wondering if maybe this too has to do with my network installation? Instead of the default “wp-content/files” directory it’s “wp-content/blogs.dir/n/files” where “n” is a number representing a particular “site”.
Forum: Plugins
In reply to: [Perfect Images] [Plugin: WP Retina 2x] Nothing happens when I click generateThis happens when I’m in the retina dashboard. If I’m in the media library and I click generate, it takes about the same amount of time – a split second – and displays the tick marker. But going back to the dash to verify this, it shows nothing different. I go back to the media library and sure enough, the tick is gone again.