cynarad
Forum Replies Created
-
Most of the errors were eliminated after I upgraded to version 4.3.2, however, the correct XML sitemap didn’t regenerate to the next day, so I didn’t see it immediatly.
The last error was eliminated when I removed the custom slug from my taxonomy declaration. (Again, I didn’t see the correction until the next day..)
But now my sitemap is working perfectly!
http://solutionspot.org/?feed=sitemap
Thank You!
No, I still get the message “PHP Fatal error: Call to undefined function gravityforms_update_post()”
I updated the version to 4.3.2. The error remains for the custom taxonomies.
I built these custom taxonomies manually in the functions.php file, therefore, if there is a change to the register_taxonomy function call I can make that will correct the error, I can make it.
Here is the current code to register the taxonomy:
function add_location_taxonomy() { // Add new "Locations" taxonomy to Posts register_taxonomy('location', array( 'issue' , 'solution', 'ml-advert', 'page' ), array( // Hierarchical taxonomy (like categories) 'hierarchical' => true, 'show_admin_column' => true, // This array of options controls the labels displayed in the WordPress Admin UI 'labels' => array( 'name' => _x( 'Locations', 'taxonomy general name' ), 'singular_name' => _x( 'Location', 'taxonomy singular name' ), 'search_items' => __( 'Search Locations' ), 'all_items' => __( 'All Locations' ), 'parent_item' => __( 'Parent Location' ), 'parent_item_colon' => __( 'Parent Location:' ), 'edit_item' => __( 'Edit Location' ), 'update_item' => __( 'Update Location' ), 'add_new_item' => __( 'Add New Location' ), 'new_item_name' => __( 'New Location Name' ), 'menu_name' => __( 'Locations' ), ), 'capabilities' => array ( 'manage_terms' => 'manage_categories', 'edit_terms' => 'manage_categories', 'delete_terms' => 'manage_categories', 'assign_terms' => 'assign_terms' ), // Control the slugs used for this taxonomy 'rewrite' => array( 'slug' => 'locations', // This controls the base slug that will display before each term 'with_front' => false, // Don't display the category base before "/locations/" 'hierarchical' => true // This will allow URL's like "/locations/boston/cambridge/" ), )); }[Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
When I use the function call “gravityforms_update_post(‘setup_form’, $post_id);” to pass the post id, I receive an Error 500.
The debug log says: PHP Fatal error: Call to undefined function gravityforms_update_post() .
Any idea why this function can’t be found??
I am using wordpress 3.6.
Forum: Plugins
In reply to: [Nextend Twitter Connect] [resolved]Twitter Error 1 issue for new api 1.1I am having the same issue..
I’m having the same issue. Any luck on this?
Forum: Plugins
In reply to: [Evaluate] Plugin could not be activated because it triggered a fatal error.You need to upgrade your version of php. The plugin requires at least PHP 5.3 to function correctly. I upgraded mine and now it works correctly.
Forum: Plugins
In reply to: [Custom Post View Generator] Fatal errorI resolved this error by updating my php version to 5.3 . (I was running on php version 5.2). This eliminated the issue completely.
Forum: Plugins
In reply to: [Register Plus Redux] How to change input field from "text" to "date"I am also looking for a way to have a custom field be set to the date format in Register Plus Redux. (specifically, I would like to require users who register to enter their date of birth). I’ve seen a few references to the datepicker on Register Plus Redux website, but I have not seen where/how this can be specified…
Forum: Plugins
In reply to: [Custom Post View Generator] Fatal errorI am receiving the same error…
Fatal error: Call to undefined function load_scripts() in …/wp/wp-content/plugins/custom-post-view-generator/index.php on line 61Forum: Plugins
In reply to: [Evaluate] Plugin could not be activated because it triggered a fatal error.Here is the command that causes the error from line 50 of class.evaluate-admin.php :
add_settings_section(‘evaluate_settings’, ‘Evaluate Settings’, function() {
echo ‘Settings and CTLT_Stream/NodeJS Status’;
}, ‘evaluate’);