cquinndesign
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: https://downloads.www.ads-software.com is not workingworking now
Forum: Plugins
In reply to: [Contact Form 7] Use html code in the body messageI was having this same problem, I added HTML to the message body and I checked the checkbox that said to enable the HTML…still didn’t work. But I solved the problem. Here is what I did…
You need to set up the message area just like an HTML document. So you have to put the following tags where required.
<html>
<head></head>
<body>
This is where your contact form 7 tags go.
</body>
</html>Once these tags were added, the html appeared in my email. Here is my sample code (partially edited for privacy)
———————————————–<html> <head></head> <body> <p>From: [your-name] <[your-email]></p> <p>Here is the submitted information:</p> <strong>Name:</strong> [your-name]<br /> <strong>Phone:</strong> [tel-627]<br /> <strong>Email:</strong> [your-email]<br /> <strong>Services Interested in:</strong> [checkbox-36]<br /> <strong>Approx Length (in feet):</strong> [number-68]<br /> <strong>Approx Width (in feet):</strong> [number-507]<br /> <strong>Additional Info:</strong> [textarea-361]<br /> -- <p>This e-mail was sent from a contact form</p> </body> </html>
https://themergency.com/gfcpt-beta-download/
Try that beta…it has the fix in it. You won’t be able to convert old entries to show the proper values though. I had to write a mysql script to do that…I apologize for not having the time to dig up that script…
Forum: Plugins
In reply to: [Gravity Forms + First Data Global Gateway e4] Issue with pluginThanks…i knew it was something obvious. I just stared at it for too long…
I appreciate your help…
You have to have the latest gravity forms in order to do this….basically we just used multiple notifications…
Let me know if you need more help…
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] Terms displayed as IDs, not NameAm I supposed to change something in this code? For instance, am I supposed to put the field name somewhere for which I want to apply this function to?
I can’t get it to work ??
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] Custom user taxonomies (cont.)Here is the code you should use:
function map_taxonomy($user_id, $config, $entry, $user_pass) { global $wpdb; // Get all taxonomies $taxs = get_taxonomies(); // Get all user meta $all_meta_for_user = get_user_meta($user_id); // Loop through meta data and map to taxonomies with same name as user meta key foreach ($all_meta_for_user as $taxonomy => $value ) { if (in_array ($taxonomy, $taxs) ) { // Check if there is a Taxonomy with the same name as the Custom user meta key // Get term id $term_id = get_user_meta($user_id, $taxonomy, true); If (is_numeric($term_id)) { // Check if Custom user meta is an ID $taxonomy.'='.$term_id.'<br>'; // Add user to taxomomy term $term = get_term( $term_id, $taxonomy ); $termslug = $term->slug; wp_set_object_terms( $user_id, array( $termslug ), $taxonomy, false); } } } } add_action("gform_user_registered", "map_taxonomy", 10, 4);
My solution was to just use gravity forms. I even wrote the developer the plugin and she never wrote me back so I don’t know…
Also, when using gravity forms, make sure its the latest version that supports the multiple confirmations…I don’t have repeating email address fields like this plugin has, but I just did a set of “5” names and email addresses….if someone wants to invite more than 5 people they just need to reload the page…
Yep, same thing here!
When you click the “+” plus button…and add more friend names and more friend emails….whichever the last email field is, that is the email that will get all of the invites!
Please let me know if you have a fix for this!
I love searching for help when I have an issue and then thinking that I found some at www.ads-software.com…everyone complains that their plugins don’t work and get pissed when they are having problems…
You guys realize that you got WordPress and the plugins made for it, for free…right? The developers of the plugins spend countless hours creating what you’re using, for nothing. So next time you see a “donation” button the plugin options screen, you should click it.
My strategy is that I normally buy a plugin before I use a free one, why? Better support and more incentive to provide a better plugin and it helps the developers out.
Anyway, I’m using a framework on a custom project that I am working on.
The solution in my situation was to move
<?php wp_head(); ?>
after the jQuery library was being loaded…this is how it should have been setup before I ran into this problem, but I didn’t code the initial work, another developer on my team did and they will definitely be getting an earful in the morning, seeing as how I wasted about 30 minutes figuring it out.
Anyway, remember that you are getting WordPress and 99% of your plugins for free. Nextgen Gallery is one of very few special cases in which you can safely say that the free version is better than most “paid” photo gallery type plugins. Being a developer I can also assure that their coding is top notch and I can see that they have stayed true to the original developer in which they bought the plugin from…
Nextgen Gallery folks – keep up the good work, you are doing awesome, I know you can’t plan for every little variant in your code, but your doing a damn fine job!