seozones
Forum Replies Created
-
Hi solvomentis. I tried your suggestion but still could not get it to work. Also, when I turned off that feature in woocommerce, I see this: “PayPal Pro requires that the Force secure checkout option is enabled; your checkout may not be secure! Please enable SSL and ensure your server has a valid SSL certificate – PayPal Pro will only work in test mode.”
When I went to the checkout page, it did not force it to go over https just http. Any other suggestions?
Forum: Plugins
In reply to: [Tax Rate Upload] tax not showing up on checkout pagenevermind, I had the wrong state and zip chosen ??
This client is telling me that there is a state wide tax of 7.5% in CA that he would like to apply regardless of which CA zip is entered. How would I adjust for that?
I also am looking for a solution to the same question.
Forum: Plugins
In reply to: [Simple Dropbox Upload] Add Additional Fields / Send Email NoticeThat is great to hear. Thanks for your continue effort on this great plugin!
Forum: Plugins
In reply to: [Simple Dropbox Upload] Add Additional Fields / Send Email NoticeOkay, looking forward to it when it’s ready ??
Forum: Plugins
In reply to: [Simple Dropbox Upload] Add Additional Fields / Send Email NoticeOkay great to hear. What is the eta on tying that in?
Hi there. I got this to work, thanks!!
I also own the Foobox plugin. Do you know if a hack will work using that plugin?
okay great. Thanks Danny, looking forward to seeing it work!
is it possible to add a style into a textfield such as:
style=”border:none”
okay, thanks!
okay, so in the source code, I see:
[Code moderated as per the Forum Rules. Please use the pastebin]
I have a custom.css in my theme folder. What would I place in that css file to hide the label and also remove the border around the text field?
I don’t see a custom css file with this plugin so I can use css to make changes. does it come with one built in?
it appears that adding in a label activates a form field but I can place a class on it to hide it. same with each form field so I’ll try that.
Okay, this is good to know. So I want to remove the border on each form field and not display each label.
Also, can I adjust the height between each form field. Again, I just want to display the curser instead my graphical form.
Forum: Plugins
In reply to: [Author Avatars List/Block] [Plugin: Author Avatars List] single userOkay, I figured it out.. It’s this:
<?php foreach (get_users ("role=s2member_level1") as $user) { $user = new WP_User ($user->ID); echo "\n" . do_shortcode("[show_avatar id=$user->ID]", $user->ID) . "\n" . "<strong>Name:</strong> " . get_user_field ("display_name", $user->ID) . "\n" . "<strong>Age:</strong> " . get_user_field ("age", $user->ID) . "\n" . "<strong>About Me:</strong> " . get_user_field ("about_me", $user->ID) . "\n"; } ?>
[Please post code snippets between backticks or use the code button.]