MembershipWorks
Forum Replies Created
-
Thank you for the review and feedback! We are glad that MemberFindMe has been a good fit for your group!
Multiple administrative logins is on our roadmap for later this year. The daily digest is a great idea! We will add that for consideration as a future feature.
Unfortunately the current state of emails and spam filters make it impossible to always guarantee delivery of emails to the member’s inbox, but we will continually apply best current practices to improve the deliverability of our emails.
Thanks again for posting, we appreciate all our customer feedback in helping us make MemberFindMe better!
Forum: Plugins
In reply to: [Redirect List] Sorting or Exporting?Ah I misunderstood you on sorting, I thought you meant some automatic (alphabetic) sorting ?? The import/export feature should let you make quick changes now, note that after you click Import you still need to Save Changes for the list to be saved to the database.
Forum: Plugins
In reply to: [Constant Contact Widget] Sign Up Field in FooterSorry, wasn’t thinking correctly and placed the PHP tags in wrong order, it should be:
<?php the_widget(‘sf_widget_constantcontact’,’grp=Jay%20Michael%20-%20website&btn=SUBMIT&msg=https://www.jaymichael.co/thank-you.com’); ?>
Forum: Plugins
In reply to: [Constant Contact Widget] Sign Up Field in Footer1) Simply url escape the group name, like this:
the_widget(‘sf_widget_constantcontact’,’grp=Jay%20Michael%20-%20website&btn=SUBMIT&msg=Thanks!’);
2) Yes, you can also apply css rules to the subscribe button in the footer (the same rule for the widget will probably apply, if you need it different you should target the footer_box class).
3) Right, for example:
the_widget(‘sf_widget_constantcontact’,’grp=Jay%20Michael%20-%20website&btn=SUBMIT&msg=https://thankyoupage.com’);
ps) You probably need to escape out of PHP mode, by wrapping the code with the PHP tags:
?>the_widget(‘sf_widget_constantcontact’,’grp=Jay%20Michael%20-%20website&btn=SUBMIT&msg=https://thankyoupage.com’);<?php
If this plugin works for you, a review would be much appreciated ??
Forum: Plugins
In reply to: [Redirect List] Sorting or Exporting?Finally had some time to add the requested features for import/export. To keep the plugin PHP lightweight, the import/export is done through a textarea using javascript, so there would be no impact on PHP performance.
Note: sorting is not added because the order in which the urls appear is the order in which the redirects are processed, and you may need some redirects to take priority over others.
Forum: Plugins
In reply to: [Constant Contact Widget] Thank You Page RedirectVersion 1.5 now lets you put in a url to redirect to. Under the success message/url, instead of entering a message, you can now enter a url (include the https:// https:// or // to identify it as an url).
Forum: Plugins
In reply to: [Constant Contact Widget] Sign Up Field in FooterHi, you can add the following PHP to the footer section of your theme (replace grp with the appropriate Constant Contact list, btn with the text of the button, and msg with the appropriate success message:
the_widget( ‘sf_widget_constantcontact’, ‘grp=General%20Interest&btn=SUBMIT&msg=Thanks!’ );
Forum: Plugins
In reply to: [Constant Contact Widget] Change source to "Website Signup Form"Hi! Unfortunately I do not see any way to change this through that Constant Contact API… this is a older, simpler API. It does not require OAuth and Mashery API key, but is limited as to what it can do.
Forum: Plugins
In reply to: [Constant Contact Widget] resize text box area?For your theme, you will need to use instead:
.widget_sf_widget_constantcontact input[type=”text”] { width:60% }
If you would like the input box on its own line (which I think would look better on your theme), use:
.widget_sf_widget_constantcontact input[type=”text”] { width:100% }
Forum: Plugins
In reply to: [Constant Contact Widget] resize text box area?You can add it to your theme under Appearance > Editor
Forum: Plugins
In reply to: [Constant Contact Widget] resize text box area?No problem… and have a happy new year!
Forum: Plugins
In reply to: [Constant Contact Widget] resize text box area?Hi, you can resize the email text box by adding this to your css file:
.widget_sf_widget_constantcontact .widget-wrapper input[type=”text”] {
width:60%
}Forum: Plugins
In reply to: [Constant Contact Widget] sf_widget_constantcontact__1_submit is not definedThank you! ??
Forum: Plugins
In reply to: [Constant Contact Widget] sf_widget_constantcontact__1_submit is not definedVersion 1.4 has re-written javascript so it will work directly now. If you like the plugin a review would be greatly appreciated ??
Forum: Plugins
In reply to: [Constant Contact Widget] sf_widget_constantcontact__1_submit is not definedYup, I am looking to see if I can rewrite the javascript without using any & symbols…