MembershipWorks
Forum Replies Created
-
Forum: Plugins
In reply to: [Constant Contact Widget] resize text box area?Make sure you are using the shortcode like this:
[constantcontactwidget nam=”1″ grp=”constant contact list name” btn=”button text” msg=”success message”]
Note that it should be nam=”1″ not name=”1″.
For the CSS, try this in your theme css file
.constantcontactwidget_form{text-align:center}
.constantcontactwidget_form input[type=”text”]{width:300px;max-width:100%}Forum: Plugins
In reply to: [Constant Contact Widget] resize text box area?Hi Eric, how exactly are you trying to arrange the spacing?
Forum: Plugins
In reply to: [MembershipWorks - Membership, Events & Directory] change font colorHi, are these categories or actual memberships with prices associated with each? If they are just categories, you can create labels and attach any number of them to the member.
If they are membership levels with subscription prices, then at this time we only support 1 subscription per member. You can create membership levels for combinations, for example: hispanic membership + affiliate partner membership. In the future we will be supporting multiple subscriptions, but that feature is not ready yet.
Forum: Plugins
In reply to: [Constant Contact Widget] Style success messageHi navyspitfire!
What I am suggesting is eliminating all the css styles trying to target the success message, and instead inlining the style into the success message html itself. So if you are using the widget, the success message as you enter it in the widget is (including all the html tags):
<p style=”padding:20px”>Added!</p>
If you are using a shortcode you would use:
[constantcontactwidget grp=”…” btn=”add” msg=”<p style=’padding:20px’>Added!</p>”]
Forum: Plugins
In reply to: [Constant Contact Widget] Image as success messageHi newmedia85!
Update to version 1.8.1 and use this shortcode:
[constantcontactwidget grp=”save $5″ btn=”sign up” msg=”<img src=’http://heatfreehair.com/wp-content/uploads/2014/06/Popup-2.jpg’>”%5D
Note that you have to enter this shortcode in “Text” mode (not “Visual” mode).
Forum: Plugins
In reply to: [Constant Contact Widget] Style success messageHi navyspitfire!
OK I’ve modified the plugin (version 1.8.1) so you can use html for the success message, so now you can use this for the success message:
<p style=”padding:20px”>Added!</p>
Forum: Plugins
In reply to: [Constant Contact Widget] Style success messageHi navyspitfire!
I am not sure exactly how you want to style the text, but for example if you want the text to be black in the form inputs, but red for the success message, you could use:
#sf_widget_constantcontact_2_form {color:red}
#sf_widget_constantcontact_2_form input{color:black}Forum: Plugins
In reply to: [MembershipWorks - Membership, Events & Directory] MemberFindMeHi kaseynova!
Not yet, but we’re expecting to have that feature soon (next few weeks).
Forum: Plugins
In reply to: [Constant Contact Widget] Style success messageSorry about that, it won’t work because the message would be escaped by esc_attr.
The alternative is to style the box for the success message, then override the styles for the form by targeting
.constantcontactwidget_form p{…}
.constantcontactwidget_form label{…}
.constantcontactwidget_form input{…}Forum: Plugins
In reply to: [Constant Contact Widget] Style success messageHi navyspitfire! One way would just have your success message contain some html, and use a class or inline styling, for example:
<p style=”color:red”>Yay!</p>
Hi Virgil!
You can have a geographic search in conjunction with the label search, though the user interface would require some work on your part. I do not have an example, but here is a directory with geographic search combined with keyword search:
Or you can direct users to use the “options” button (which you can rename) on the directory if they want to search by area.
You can enable the offline billing option for a membership level, and collect the PO number as a custom field. The administrator would then update the membership expiration/renewal date accordingly when the PO is verified/received.
FYI you can signup for our 50 member/account plan on our website, this is a free plan that will let you explore all our functionality and access all the documentation. And when you’re ready we can upgrade that account for the number of accounts/members you need.
Hi Virgil!
Member and event data is stored on MemberFindMe, so it will be portable to other platforms in the future. You can use HTML widgets on any site, though it will not support sharing and search indexing because we do not have access to the <head> part of the page. We also have on our roadmap to support other CMSs such as Joomla or Drupal.
You can create different “business sectors” as labels, and you can then pull up the directory for each business sector in 2 ways. The first way would be to create a page for each directory and use a different shortcode on each page:
[memberfindme open=”!directory” lbl=”…”]
The alternative is to link to 1 directory page like this:
http://urltoyourdirectorypage.com/#!directory/lbl=…
The difference is that for the first, the user will not see options to filter by a different business sector, while with the second the user will see options to change the filter settings.
An example of the first option:
http://washingtonmuseumassociation.org/An example of the second option:
https://www.jefferson-texas.com/Forum: Plugins
In reply to: [Constant Contact Widget] CC Widget settings?Hi,
For the overall plugin settings, you should setup the login/password to your Constant Contact account under Settings > Constant Contact.
For the widget, that is available from Appearance > Widgets. You should see that the Constant Contact widget is available, and if you drag it to a widgetized area, you will see the title, description, etc settings for that widget.
Forum: Plugins
In reply to: [Redirect List] Redirecting from non-WP siteSorry to hear that… You may want to check this link and make sure your mod_rewrite setup is exactly like that:
Forum: Plugins
In reply to: [Redirect List] Redirecting from non-WP siteHi cassienbeyer!
It may be an issue with your theme, try version 1.5 which moves the hook up to before the theme is loaded.
If that still doesn’t work, then the issue would have to be due to the mod_rewrite setup on your server, unfortunately in that case it would not be possible for any plugin to override the server behavior.