Lew Ayotte
Forum Replies Created
-
Forum: Reviews
In reply to: [Advanced Comment Control] Works on WP 4.4.2Hi Ashod, I didn’t get a notice of your post. Sorry for the late reply. I’ve been using this plugin on my site since I created it, and haven’t had any problems with it not working. I did just release a the fix for the “bool(true)” thing. I had it fixed in my version and somehow that didn’t get put in the official release until someone contacted me to let me know. Sorry about that.
But I’m concerned about what you said, “It overrides the WP settings on comments and disabling comments in a post had no effect and the comments were still enabled for the users.”
Can you describe in more detail what you were seeing? If you’re still using the plugin, of course. As an example, this is what I have on my site – http://l3w.us/images/b_Goxi2f.png – and it seems to be working perfect for me.
Thanks for the feedback!
Forum: Plugins
In reply to: [IssueM] Category selectionHi pathuri,
It looks like there was a bug in the widget when using the default WordPress taxonomies. I just pushed out a fix, you should see an update in your WordPress dashboard momentarily.
Thanks!
Forum: Plugins
In reply to: [IssueM] Page not foundHi FloorballMedia,
Try going to Settings -> Permalinks which will automatically clear your permalink cache. Usually that clears up those 404 errors.
Thanks.
Forum: Plugins
In reply to: [IssueM] Archive links don't work after upgrade to 2.0In the IssueM Settings, do you have this checked?
“Use Taxonomical links instead of shortcode based links for Issues”
Might need to try that. Let me know if that doesn’t help.
Thanks.
Forum: Plugins
In reply to: [IssueM] Default Issue image Bug in multisiteThanks for reporting this. We’ll be looking into both of these bugs!
Forum: Plugins
In reply to: [IssueM] Byline LinkHi Steven,
The output for the author is usually determined by your theme’s templates. You’ll probably want to copy the single.php file and create a new file single-article.php in your theme folder. Then modify the line that outputs the Author information. You can use the function get_issuem_author_name( $post ) to get the Author name from the text field. And then output it appropriately.
I hope this helps.
LewForum: Plugins
In reply to: [IssueM] WordPress 4There are a lot of users who are using IssueM on WP4, including our own development and demo sites. I haven’t heard of anyone having trouble after upgrading.
Forum: Plugins
In reply to: [IssueM] Not a link for issuem_issuesget_the_terms returns an array of objects. So you should be doing something like:
<?php $terms = get_the_terms( $post->ID, 'issuem_issue' ); ?>And then looping through the terms to get what you want.
Forum: Plugins
In reply to: [IssueM] Make Slug 'Issue #', not 'article'That’s just how WordPress handles post types and taxonomies. You can probably write your own custom rewrite rules to customize this though.
Forum: Plugins
In reply to: [IssueM] Prevent navigation from scrolling to previous issueSet the in_same_term and taxonomy arguments in the get_previous_post and get_next_post calls.
get_previous_post(true, '', 'issuem_issue');
get_next_post(true, '', 'issuem_issue');Forum: Plugins
In reply to: [IssueM] Not a link for issuem_issuesYou could use get_the_terms.
Forum: Plugins
In reply to: [IssueM] Putting in a separator on article pageThat’s right… you could also try <hr class=”issuem_article_divider”/> or any number of things :).
Forum: Plugins
In reply to: [IssueM] Putting in a separator on article pageEverything is being moved over to the new zeen101 branding.
That’d probably be a special project.
Lew
Forum: Plugins
In reply to: [IssueM] Putting in a separator on article pageHello,
Not entirely “paid only”… just paid priority :).
You could add a separator to your child theme and/or by modifying the Article Format in the IssueM Settings (adding some HTML DIVs or HRs) and then modifying your theme’s style.css appropriately.
Lew
Forum: Plugins
In reply to: [IssueM] Annoying problems after updating Issue-MHey Peter,
Do you remember which version you were on previously? Have you made any other changes/updates to your site? It sounds like a CSS Styling issue.