ibreezer
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity Forms Directory] Directory not showingenable error reporting change
define('WP_DEBUG', false);todefine('WP_DEBUG', true);in the wp-config.php file and then visit that page again and post the errors you get here and ill assist you furtherForum: Plugins
In reply to: [Gravity Forms Directory] Directory not showingcould you post a link to the site/page where this is happening
Forum: Plugins
In reply to: [Gravity Forms Directory] Cannot add to List in Edit modeI’m glad i could help
Without further information I can’t replicate the same problem to be able to find a solution for it. A link to the site would be appreciated and if possible get them conditions you have to see if they could interfere somehow.
Regards
Forum: Plugins
In reply to: [Gravity Forms Directory] Entry Date Not Reformattingyou could change around row 165 in the file template-row.php
$value = GFCommon::format_date($lead['date_created'], true, apply_filters( 'kws_gf_date_format', '' ));to
$value = GFCommon::format_date($lead['date_created'], true, apply_filters( 'kws_gf_date_format', $options['datecreatedformat']),false);this would fix it, problem is all changes will be removed when updating so make sure the update contains the desired function
Forum: Plugins
In reply to: [Gravity Forms Directory] Website field not accepting URLmaybe remove the space at the end? without looking further into it that’s my best guess
Forum: Plugins
In reply to: [Gravity Forms Directory] Directory not showingYes this can happen when you have the lastest version of Gravity Forms Directory 3.4.3
For some reason the directory path has been set to “gravityform” so if your gravity form directory is named anything else it wont succesfully include thoose, you can do one of two things
1. Change the name of the directory for gravity form to just “gravityforms” and nothing else and don’t forget to reactive it
or
2.edit “gravity-forms-addons.php” in the plugin directory “gravity-forms-addons” change
if(!class_exists('GFEntryDetail')) { @require_once(GFCommon::get_base_path() . "/entry_detail.php"); } if(!class_exists('GFCommon')) { @require_once(WP_PLUGIN_DIR . "/gravityforms/common.php"); } if(!class_exists('RGFormsModel')) { @require_once(WP_PLUGIN_DIR . "/gravityforms/forms_model.php"); } if(!class_exists('GFEntryList')) { require_once(WP_PLUGIN_DIR . "/gravityforms/entry_list.php"); }to
if(!class_exists('GFEntryDetail')) { @require_once(GFCommon::get_base_path() . "/entry_detail.php"); } if(!class_exists('GFCommon')) { @require_once(GFCommon::get_base_path() . "/common.php"); } if(!class_exists('RGFormsModel')) { @require_once(GFCommon::get_base_path() . "/forms_model.php"); } if(!class_exists('GFEntryList')) { require_once(GFCommon::get_base_path() . "/entry_list.php"); }these lines can be found somewhere around line 1100-1115 give or take and it should start working again
Forum: Plugins
In reply to: [Gravity Forms Directory] Cannot add to List in Edit modeYou’re welcome, sad that it took you 1 month to get an answer though =/
Well I debugged it a little I didn’t really find what is causing it just yet but, you can fix it simple by editing “gravity-forms-addons.php” on row 1296 give or take cut this line
case "fileupload" :and move it to row 1390 between
break;anddefault :so you have
break; case "fileupload" : default:Forum: Plugins
In reply to: [Gravity Forms Directory] Display actual ID in Entry ID ColumnHi, well without making it to advanced or to hard to you for fix what you could do is edit “gravity-forms-addons.php” on row 4367 give or take you’ll find
$value = '<a href="'.$href.'"'.$linkClass.' title="'.$entrytitle.'">'.$entrylink.'</a>';Change that to
$value = '<a href="'.$href.'"'.$linkClass.' title="'.$entrytitle.'">'.$lead_id.'</a>';Forum: Plugins
In reply to: [Gravity Forms Directory] Cannot add to List in Edit modeYou have to include the gravityform javascript library
simple addwp_enqueue_script('gform_gravityforms');
to either ur templatefunction file or whatever page your using the edit inI’m having this same issue,everything loads just fine expect the option information. I’m using WordPress 3.5.1 and the site can be seen here