bruinkid
Forum Replies Created
-
Thank you very much for your answer.
Is there a way to test how many emails we can send to? We have 20,000 real members. I would rather not send testing email to real members’ email addresses.
(p.s. We have our own dedicated server so hosting is not an issue.)
Other than ‘tags’, can I segment users by membership level? For example, when the post is created, it got sent only to Gold member or Silver member?
Forum: Plugins
In reply to: [Gmedia Photo Gallery] Do you accept a set of IDs?Thank you so much for your answer. Do you know which slider plugin accept a set of media IDs?
(so that if we wrote a short code similar to WP short code like [gallery id=xx] or [gallery id=xx show=id sep","], then it works)
hi,
I also have this same issue. I upload images via Formidable Pro Form. It said ‘We cannot display this gallery’.
I use this shortcode in Formidable View: [nggallery ids=”[228 show=id sep=’,’]” html=1]
html=1 is used in Formidable when multiple images is uploaded. For example, [228 html=1] then I will see some image thumbnails.
I use short code like [gmedia id=2] and insert that into a page and it works pretty good. Does that mean I can use gmedia short code in Formidable?
I am using Formidable ‘section’ ‘repeatable’ ‘file upload’ to upload images.
In Formidable ‘view’, I put [gmedia ids=”[92 show=id sep=’,’]” html=1] but it doesn’t work. What should be correct shortcode?(92 is the field ID in the ‘file upload’)
p.s. [gallery ids=”[92 show=id sep=’,’]” html=1] does work OK.
Can I send the ‘blast’ post to employers by location at the time that post is created so that each user can choose his own customized location? Or the location is fixed at the backend, say it’s either California, or New York?
For example, in the ‘blast’ post, step 1: write experience, step 2: select location. step 3: submit.
Hi Matt,
So now assuming we can send the post to emails of ‘members’ by location. Is it possible to send the post to email address that we get from a form, which is a custom field in a post type ‘job’?
For example, I create a post type called ‘blast’. A job seeker can use this to create a post. Then I use Subscribe2 to send this post to the email address of the job which employer entered in the form of ‘job’ post type, not the email address of ’employers’, which is a member.
I actually want it to limit to same post type. For example, ‘related jobs’, or ‘related events’. (job’ is a post type; ‘event’ is a post type).
Can I get around with this by downloading this plugin, rename the file, so that it show up as another plugin name, and then I select a different post type in that new plugin?
(so that we have crp-job, crp-event two plugins. then I drag the crp-job widget to job sidebar, and drag the crp-event widget to event sidebar?)
Hi,
I activate this addon plugin that you suggested. However, “Fetch related posts only from” only shows taxonomy, not custom post type – although the plugin wording said ‘Limit the related posts only to the current categories, tags and/or custom post types’.Forum: Plugins
In reply to: [Delete Me] How to delete popup warning messageThanks a lot!
Forum: Plugins
In reply to: [WP Booking Calendar] Can this plugin be used just for availabilityHi, your pro version does not come with Stripe. If I want to use Stripe, can I use Gravity Stripe for this? I am really not a developer.
Forum: Themes and Templates
In reply to: How to remove 'leave a comment' link in search result pagehi i found solution. just delte <footer class=”entry-footer”>
<?php themename_entry_footer(); ?>
</footer><!– .entry-footer –>sorry, I mean ‘float’, not ‘flow’…
Hi,
Thank you very much. So if I want only ‘Level 1’ registered users to receive email notifications. This is what I would put in functions.php, right?
p.s. I include all of ‘plain fullcontent, htmlfllcontent’ etc so that I will just select that in global setting.
—————————-
function s2member_filter($subscribers, $post_id) {
// $subscribers is an array of subscriber email addresses
$args = array(
‘role’ => ‘s2member_level1’,
‘fields’ => array(‘user_email’)
);
$s2_level1 = get_users($args);$all_s2_members = array_merge($s2_level1, $s2_level2, $s2_level3);
foreach ($all_s2_members as $user) {
$s2members[] = $user->user_email;
}// we can do thins with the $postid also
// like amend the subscribers list of the post id is in a specific category
$categories = wp_get_post_categories($post_id);
if ( in_array(‘1’, $categories) ) {
//The post is in category 1 so do something different
}$filtered_subscribers = array_intersect($subscribers, $s2members);
} // end s2member_filter()add_filter(‘s2_send_plain_excerpt_subscribers’, ‘s2member_filter’, 10, 2);
add_filter(‘s2_send_plain_fullcontent_subscribers’, ‘s2member_filter’, 10, 2);
add_filter(‘s2_send_html_excerpt_subscribers’, ‘s2member_filter’, 10, 2);
add_filter(‘s2_send_html_fullcontent_subscribers’, ‘s2member_filter’, 10, 2);hi Thank you very much. I do have a User Management plugin and I can separate users into ‘Level 1’ and ‘Level 2’ user. Can you tell me specific how to remove one type of user from notifications in the Subscribe2 API?