ZEEN101
Forum Replies Created
-
Forum: Reviews
In reply to: [Leaky Paywall] Spent hours setting it up for nada…Hi and sorry you had trouble getting Leaky Paywall to work. We are available to troubleshoot at [email protected] if you need. As you probably know hosting (especially caching), themes and plugins sometimes interfere with e-commerce solutions. Paid customers do enjoy personal setup support as well as ongoing guidance on revenue generation.
Forum: Plugins
In reply to: [Leaky Paywall] Subscribers not receiving notificationsHi Estelle
Sorry about the lack of updates here… this forum is intended for user to user support. If you need official support please use our [email protected] address.
As far as emails not being sent, that is typically a hosting issue… check with your provider.
Thanks!
Forum: Plugins
In reply to: [IssueM] Issue as a normal categoryI’m not sure what you mean. We have a filter in the code that will include the IssueM Articles in a tag/category template if you’ve selected to use the default WordPress tags/categories for your Articles.
Forum: Plugins
In reply to: [IssueM] My IssueM articles are not counted as a post!Your theme is probably only pulling posts for the author page. You’ll need to modify your theme to pull articles as well. Something like this in your theme’s functions.php or a php file in the wp-content/mu-plugins directory should help:
function custom_post_author_archive( $query ) { if ( $query->is_author ) { $query->set( 'post_type', array( 'post', 'article' ) ); } } add_action( 'pre_get_posts', 'custom_post_author_archive' );Forum: Plugins
In reply to: [IssueM] Theme problems after installInteresting… we hadn’t heard of any issues with any of the caching plugins before. But caching plugins can be finicky sometimes. If/when you reactivate it, make try emptying the cache too.
Forum: Plugins
In reply to: [IssueM] Theme problems after installHello,
It sounds like your theme was broken before activating the plugin as well. Since the plugin doesn’t modify any themes files or settings directly. But I went to your site and it looks like you figured it out.
Forum: Plugins
In reply to: [IssueM] Only Displays Current IssueHi Kurt,
I seem to be seeing the 2013 issue without any problem – http://l3w.us/images/CvwrHhtw.png
Is this just when you’re logged in?
Thanks
Forum: Plugins
In reply to: [IssueM] Doesn't Display Anything when Logged InHi Kurt Eye,
Have you tested for a theme conflict? Switching back to a WordPress default theme to see if it’s something in your theme acting up? As with any test, make sure you backup your database first, just in case your current theme erases settings when it is deactivated.
Forum: Plugins
In reply to: [IssueM] Teasers for excerpts on archive pagesHi Justin,
The teaser is stored in post meta… you can get it with this command:
$teaser = get_post_meta( $post->ID, '_teaser_text', true );Hope that helps!
Forum: Plugins
In reply to: [IssueM] Insert Category Beneath Title?If you’re using the Issue Order field, it should be ordering them in descending order (5, 4, 3, 2, 1). We do this because issue numbers increment and the newest have the highest number. e.g. Issue #5 is newer than issue #4 and should come first.
Otherwise it orders them by the term ID.
Forum: Plugins
In reply to: [IssueM] Post templates are not showing upHmmm, the articles post type should support Post Formats. But I think you’re talking about something slightly different. Either way, we’re glad you found a solution that works!
Forum: Plugins
In reply to: [IssueM] Related posts not showing upYou’ll have to include the ‘article’ post type in the Query. Something like this should help:
'post_type' => array( 'post', 'article' )Forum: Plugins
In reply to: [IssueM] Insert Category Beneath Title?Hey jream,
This is more of a function of your theme. Probably the easiest thing you could do is copy whichever template file outputs your normal posts and save it as single-article.php. Then edit the file to include the IssueM categories, like this:
echo get_the_term_list( $post->ID, 'issuem_issue_categories', '', ', ', ' | ' );I hope that helps!
Forum: Plugins
In reply to: [IssueM] My IssueM articles are not counted as a post!Hey kmonitor,
We just pushed out an update that should fix this for you (v2.3.0). Thanks for letting us know!
Forum: Plugins
In reply to: [IssueM] Fatal error: [] operator not supported for strings in /……public_htmlHello,
What version of PHP and WordPress are you using?