jockoe
Forum Replies Created
-
Forum: Plugins
In reply to: [Fast Secure Contact Form] PayPal integration?It worked for me, somewhat. I am unable to choose only 1 of my 2 forms. I am not proficient with PHP so in the two places it wanted form numbers I tried each one individually, and all combinations of both. If I don’t keep both form numbers I get the following warning…
Warning: Missing argument 2 for my_action_url_ssl() in path/functions.php on line 6
Here is the working code, though I’m only wanting the paypal URL on form 2.
function my_action_url_ssl($form_action_url, $form_id_num) { ################################## // control which forms you want this on $all_forms = false; // set to true for process on all forms, or false to use settings below $forms = array('1', '2'); // one or more individual forms ################################## if ( !in_array($form_id_num, $forms) && $all_forms != true) return $form_action_url; // force form action URL to be SSL $form_action_url = 'https://www.paypal.com/cgi-bin/webscr'; return $form_action_url; } //filter hook for form action URL add_filter('si_contact_form_action_url', 'my_action_url_ssl', 1, 2);Forum: Plugins
In reply to: [Fast Secure Contact Form] PayPal integration?Mike,
I really appreciate the instructions.
Thank you very much
Forum: Plugins
In reply to: [Fast Secure Contact Form] PayPal integration?Am I able to change the
<form>action? A tutorial on the PayPal website says I’ll need this…<FORM action="https://www.paypal.com/cgi-bin/webscr" method="post">Forum: Plugins
In reply to: [Fast Secure Contact Form] PayPal integration?Thanks Mike,
What I need to do is for people to be able to fill in two fields (invoice #, amount) and when they click ‘submit’ they are taken to paypal where they can pay the bill. I’m sure variables are passed.
I’ve never setup anything with PayPal before, so I apologize for my lack of details of what needs to be done right now.
The page I’m needing to replicate is http://www.irenas2340.com/paypal.htm.
I meant… Should there be label for field #2?
In the example I would want them to be on the 2 divs for the fields (<div class=”fscf-div-field-left”>, <div class=”fscf-div-field”>) so that I could control each field individually, if needed.
Should there be a div for the label for field #2? Maybe ID’s for each label also. (ex. Someone may want to put an individual label using a different color than the rest of the form.)
Forum: Plugins
In reply to: [Firelight Lightbox] How to use with Iframe?figured it out.
Forum: Plugins
In reply to: [Firelight Lightbox] How to use with Iframe?example code
Forum: Plugins
In reply to: [Fast Secure Contact Form] BETA: Submit buttonThanks Mike. Can’t wait to try the new BETA.
Forum: Plugins
In reply to: [Fast Secure Contact Form] BETA: Submit buttonWith the changes, will 3 fields now be the max? For my own needs, I can see where I might want to place 4 small text boxes in one row? (for 4 telephone numbers, so I’m sure they’d fit) …or for something like that would the CSS ID be needed to make that work?
Forum: Fixing WordPress
In reply to: Moving to a host that is already hosting a static siteSo you’re suggesting that I move it twice? First to the subdomain, and then from the subdomain to where it needs to be?
I did not consider that.
Thank you for the suggestion.
Forum: Plugins
In reply to: [Fast Secure Contact Form] BETA: Submit buttonHere’s this form… http://blogsite.niftywebdesigns.com/contact-2-2/
All I did to the new form was put a checkmark in the box, “Reset the alignment styles to labels on left (sometimes less compatible)”. Nothing else. The submit button lines up correctly. If you need me do anything else just ask.
Forum: Plugins
In reply to: [Fast Secure Contact Form] BETA: Submit buttonIf you look at the link in my original post you will see that I have a row with 3 fields on it. I can tell you what I did to get all 3 fields in the same row, to see if that’ll help you any.
Field1, Field2, Field3
I checkmarked “Follow Previous Field” for fields 2 & 3. I then set the Attributes for all 3 fields to “size=xx”. (so that all 3 input boxes would fit on the row). Lastly, I added this CSS to my custom CSS file.
.fscf-field-follow {
width: 225px;
margin-right: 10px;
float: left;
}(the width of my content is 980px. The width of all 3 fields needs to be less than that.)
Hope you find something useful in there.
EDIT – It works fine without “margin-right: 10px;”. I think the key components are using the size Attributes and ‘width’ CSS to allow for all 3 fields to fit in the row. (Which all depends on the page width)
I think that just having ID’s to allow people the ability to customize it this way is the way to go. This is a great plugin!
Forum: Plugins
In reply to: [Fast Secure Contact Form] BETA: Submit buttonHi Mike,
If you’re asking… I would think the “line break” and “clear” would both give the desired result. I’d go with “clear” just to keep things uniform.
I’m not following you on the second part. I’ve never created a plugin before and have not programmed hardly anything in years. (besides HTML and CSS) Would an IF statement that looks at the previous field to see if it’s a “fscf-field-align-left” or “fscf-field-follow” work?
Forum: Plugins
In reply to: [Fast Secure Contact Form] BETA: Submit button“So my request is for the fields with the class “fscf-field-follow” to also have a field ID so CSS can be applied to individual fields.”
I mean a unique ID for CSS.