Andrew
Forum Replies Created
-
I’ve read through the entries here, but I’m not sure I’ve done everything correctly. When I create a new event with AI1EC (Premium) I don’t see the box where I can normally check off the “Subscribe2 Notification Override.” That’s what I need.
Here’s what I did:
1. Create a folder called located at /wp-content/plugins/AI1EC-Subscribe2
2. Create a file inside that folder called my_post_types.php
3. Paste this code inside there:<?php /* Plugin Name: Subscribe2 AI1EC Filters Plugin URI: http://subscribe2.wordpress.com Description: Adds AI1EC custom post type and taxonomy to Subscribe2. Version: 1.0 Author: Matthew Robinson */ function my_post_types($types) { $types[] = 'ai1ec_event'; return $types; } add_filter('s2_post_types', 'my_post_types'); function my_taxonomy_types($taxonomies) { $taxonomies[] = 'events_tags'; $taxonomies[] = 'events_categories'; return $taxonomies; } add_filter('s2_taxonomies', 'my_taxonomy_types'); ?>Is that everything? Should I be adding custom post type info or taxonomy info to the TT Subscribe2 Frontend plugin (which I also have installed)? What am I missing?
Thanks in advance!!!
-Andrew
Is there a way to add featured images to the RSVP custom post types? And regular categories as well? Ideally I would like to be embed an RSVP form into any normal post, and then have the posts display in the calendar or listings shortcode. But if I could add normal categories and featured image that might be enough.
Also, I have the Subscribe2 plugin installed, and it normally shows me a box to check/uncheck for auto-sending an email to subscribers everytime a post or page is published. That box does not show up on the custom post type RSVP post page (even after checking in screen options). Any idea why?
Thanks,
AndrewHey Martin,
I couldn’t figure out why my widget wasn’t rotating (displayed one tweet, no jquery animation) until I disabled each plugin to find the conflict. It was http://wordpress.org/extend/plugins/cms-pack/. Perhaps you could add a list of known plugins that “don’t play nice” or that have “compatibility issues.” I imagine that would be helpful to lots of other users too. Thanks for the great support (and plugin!).
Forum: Plugins
In reply to: [Simple Popup Manager] [Plugin: Simple Popup Manager] Close button?Wow! Incredibly fast and effective response! Problem solved.
Thanks!!!
I have the exact same issue. I want to create a flipping book with over 300 pages, so the auto-sort absolutely needs to work properly.
Forum: Plugins
In reply to: How to make a mother page not-clickable?