rob1n
Forum Replies Created
-
Forum: Plugins
In reply to: [Smarter Archives] Take over pluginGreat, I’ll take a look in the next day or so!
Forum: Plugins
In reply to: [Smarter Archives] Take over pluginHey @jenolan — I’ve unarchived the GitHub repo, if you don’t mind submitting some pull requests with the changes you’ve made we can start there. I’m obviously not involved with anything WP anymore, so in the longer term it would be great if we can transition it over to you!
Forum: Plugins
In reply to: [Parsedown for WordPress] Corrupts shortcodes??Hi Hubert,
Thanks for taking the time to let me know. I’ve been pretty busy this week but I will take a look at this over the weekend. I suspect the shortcode filters may be firing after Markdown, which would lead to mass confusion all around.
Forum: Plugins
In reply to: [Parsedown for WordPress] Custom post types ?No plans for custom post types, unless people really want it. I originally wrote this plugin because a) I wanted to use the Parsedown library, and b) I didn’t want the 10,000 other features that Jetpack forces onto you.
Forum: Plugins
In reply to: [Smarter Archives] Configure according to https://robinadr.com/archivesHi Erik,
The code I use is here:
https://gist.github.com/robinadr/1e588fe0f14f8b6ae95c
Let me know if you have any other questions.
Robin
Forum: Plugins
In reply to: [Smarter Archives] complete month nameAnswered your other thread.
Forum: Plugins
In reply to: [Smarter Archives] complete month nameThere’s no option for that, but there’s a
smarter_archives_months
filter here:$month_names = array( '',
__( 'Jan', 'smarter-archives' ), __( 'Feb', 'smarter-archives' ), __( 'Mar', 'smarter-archives' ),
__( 'Apr', 'smarter-archives' ), __( 'May', 'smarter-archives' ), __( 'Jun', 'smarter-archives' ),
__( 'Jul', 'smarter-archives' ), __( 'Aug', 'smarter-archives' ), __( 'Sep', 'smarter-archives' ),
__( 'Oct', 'smarter-archives' ), __( 'Nov', 'smarter-archives' ), __( 'Dec', 'smarter-archives' )
);
unset( $month_names[0] );
$month_names = apply_filters( 'smarter_archives_months', $month_names );You can hook into this filter, for example in your theme’s functions.php.
Forum: Plugins
In reply to: [Smarter Archives] Archive does not work with a child themeGreat, I’m glad you got it worked out.
Forum: Plugins
In reply to: [Smarter Archives] Everything is on one line.I think that’s because each year isn’t enclosed in a
<tr>
tag, which appears to be a shortcoming in the plugin. I’m planning to rethink how the shortcode works for the next big release.As for how it’s done on my site, I actually do it in PHP using the
get_smarter_archives()
function. Here’s what the code looks like:Forum: Plugins
In reply to: [Smarter Archives] Archive does not work with a child themeI haven’t had any reports of this before and I also can’t think of anything that would stop it from working in a child theme.
I’ll try to reproduce this on my own this weekend. Are you using a publicly available parent and or child theme? I can try to reproduce it with exactly what you have going on.
Forum: Plugins
In reply to: [Hyper Cache] Cache Invalidation not working on HomepageYup. Whenever I update the plugin files, it has the “Some settings have changed, please save your settings” (or something like that) alert at the top of the page so I go ahead and do that.
Forum: Plugins
In reply to: [Hyper Cache] Cache Invalidation not working on HomepageI haven’t changed any settings in the process of installing the last few updates. Did the default behavior change?
Forum: Plugins
In reply to: [Parsedown for WordPress] Servers configuration?It works with a normal server running PHP. Anything that WordPress supports, this should support too.
Forum: Plugins
In reply to: [Move Login] Problem activating on wordpress site in subdirectoryJust installed it and tried it out; seems to work fine so far. I’ll let you know if I have any problems, but so far so good.
Thanks for taking the time to fix this.
Forum: Plugins
In reply to: [Move Login] Problem activating on wordpress site in subdirectoryYou’ll figure this out when you work on how to do this, but it just occurred to me that after getting the “/wp” part, you should strip the first slash and add a trailing slash to make it work with the rewrite rules.
Thanks for looking into this!