hmgh
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity Forms: Post Updates] Clueless! Help?Can ANYONE in these forums help? Please?
Forum: Plugins
In reply to: [GEO my WP] Integration with NinjaForms?Eyal, any suggestions on the code above? I tried using ninja_forms_field id=165, [ninja_forms_field id=165], changing the zipcode and $zipcode back to address and $address, but still no luck? Can anyone help?
Forum: Plugins
In reply to: [GEO my WP] Integration with NinjaForms?Well, I tried it, but no luck. I’m a total newbie when it comes to coding. The form field in NinjaForms for the zipcode is [ninja_forms_field id=165]. I am using a WordPress theme called Evolve, and I modified the functions.php file to this:
<?php $evolve_themename = "evolve"; if ( get_stylesheet_directory() == get_template_directory() ) { define('EVOLVE_URL', get_template_directory() . '/library/functions/'); define('EVOLVE_DIRECTORY', get_template_directory_uri() . '/library/functions/'); } else { define('EVOLVE_URL', get_template_directory() . '/library/functions/'); define('EVOLVE_DIRECTORY', get_template_directory_uri() . '/library/functions/'); } get_template_part( 'library/functions/options-framework' ); get_template_part( 'library/functions/basic-functions' ); get_template_part( 'library/functions/options' ); function gmw_update_location_via_wpuf( $post_id ) { //make sure we have post ID if ( !$post_id ) return; //change meta_field_name to the custom field of the address field $address = get_post_meta( $post_id, 'ninja_forms_field id=165', true ); //include geocoder file include_once( GMW_PT_PATH .'/includes/gmw-pt-update-location.php' ); if ( function_exists( 'gmw_pt_update_location' ) ) { //setup geocoder args $args = array( 'post_id' => $post_id, 'post_type' => get_post_type( $post_id ), // change post_type to your own 'post_title' => get_the_title( $post_id ), 'zipcode' => $zipcode ); //run geocoder function gmw_pt_update_location( $args ); } } //update data of new post add_action('wpuf_add_post_after_insert', 'gmw_update_location_via_wpuf', 10, 1 ); //update data when post updated add_action('wpuf_add_post_after_updated', 'gmw_update_location_via_wpuf', 10, 1 ); ?>
Perhaps you can spot something I did wrong?
Forum: Plugins
In reply to: [GEO my WP] Integration with NinjaForms?Thank you Eyal. The tutorial is for using an address field. Would it work the same for using a zip code, and if so, would I just replace the word ‘address’ in the code with ‘zip’ or ‘zipcode’?
Forum: Plugins
In reply to: [GEO my WP] Integration with NinjaForms?Yessir.
Forum: Plugins
In reply to: Jetpack Publicize not posting pics to FacebookI’m afraid you are probably correct, Jeff. In reviewing the site, it looks like it started on Tuesday evening, Aug. 5th, for no reason whatsoever. My WordPress update didn’t happen until the following day. Also, Jetpack just updated a few minutes ago and the probably still persists. Waiting on the magic to happen! :-/
Forum: Fixing WordPress
In reply to: Virus warning? JS/EXP.Redir.EL.7Will do. Thanks!
Forum: Fixing WordPress
In reply to: Virus warning? JS/EXP.Redir.EL.7URL is:
https://helpmegethome.comForum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Question about PublicizeWorked perfect! Thanks Jeremy!
Forum: Fixing WordPress
In reply to: Installed 3.5: Add Media icon gives no responseMmm hmm. And neither did your “fix” work. At least this one worked for me. If only I had seen it before going to the trouble of disabling all plugins, manually re-installing 3.5, etc. Would have saved me a lot of time and trouble. If me re-posting this “fix” helps someone else out and keeps them from jumping through unnecessary hoops, then so be it.
But thank you for your kind concern.
Forum: Fixing WordPress
In reply to: Installed 3.5: Add Media icon gives no responseDisabling plugins, re-installing WordPress 3.5, changing themes, none of it works.
This worked for me.
Per Member JoseVega:
Hi, I had the same issue, and I solved it adding: define(‘CONCATENATE_SCRIPTS’, false ); in my wp-config.php file just before require_once(ABSPATH . ‘wp-settings.php’);
I hope it works for you.
Forum: Fixing WordPress
In reply to: Add Media button not workingJoseVega posted this solution, and it worked for me.
Hi, I had the same issue, and I solved it adding: define(‘CONCATENATE_SCRIPTS’, false ); in my wp-config.php file just before require_once(ABSPATH . ‘wp-settings.php’);
I hope it works for you.
Forum: Fixing WordPress
In reply to: Add Media button not workingYes, I’ve tried everything in this article, to no avail. Thank you, though.
Forum: Plugins
In reply to: Lost & Found form using Ninja Forms ProP.S. The current Submission form on the site is using formmail, so I have to get all of the info and photos and write the html code for every new post. Thus the need for something more user-friendly.