chadtcd
Forum Replies Created
-
Forum: Reviews
In reply to: [The Events Calendar] Edit Attendee Info ” Insecure request.” errorI was provided this patch and it worked you just install it like a plugin.
https://www.dropbox.com/s/jlu8jgzf26mevxa/tribe-tickets-localize-patch.zip?dl=0
How to install the plugin:
https://www.wonderplugin.com/wordpress-tutorials/how-to-manually-install-a-wordpress-plugin-zip-file/Forum: Fixing WordPress
In reply to: Fundify theme: how to only have 1 `Home`and 1 'Blog' page- Go to Settings >> Reading
- Check “A Static Page”
- Make the Front Page “Home”
- Make the Posts Page “Blog”
- Delete the page called “The Blog”
Forum: Fixing WordPress
In reply to: Unable to view Wwp-admin page, however site is liveForum: Fixing WordPress
In reply to: Taxonomy Not Loading with Permlink type "Post Name"Ughgh, I have tried the same functions on multiple sites and thems the only thing I can’t get to work is for the Taxonomy to list the custom post types under that Taxonomy.
Forum: Fixing WordPress
In reply to: Taxonomy Not Loading with Permlink type "Post Name"I have also tried my taxonomy this way:
add_action( ‘init’, ‘create_estimonial_category_taxonomies’, 0 );
// create two taxonomies, genres and writers for the post type “book”
function create_estimonial_category_taxonomies() {
// Add new taxonomy, make it hierarchical (like categories)
$labels = array(
‘name’ => _x( ‘Testimonial Category’, ‘taxonomy general name’ ),
‘singular_name’ => _x( ‘Testimonial Category’, ‘taxonomy singular name’ ),
‘search_items’ => __( ‘Search Testimonial Category’ ),
‘all_items’ => __( ‘All Testimonial Category’ ),
‘parent_item’ => __( ‘Parent Testimonial Category’ ),
‘parent_item_colon’ => __( ‘Parent Testimonial Category:’ ),
‘edit_item’ => __( ‘Edit Testimonial Category’ ),
‘update_item’ => __( ‘Update Testimonial Category’ ),
‘add_new_item’ => __( ‘Add New Testimonial Category’ ),
‘new_item_name’ => __( ‘New Testimonial Category Name’ ),
‘menu_name’ => __( ‘Testimonial Category’ ),
);$args = array(
‘hierarchical’ => true,
‘labels’ => $labels,
‘show_ui’ => true,
‘show_admin_column’ => true,
‘query_var’ => true,
‘rewrite’ => array( ‘slug’ => ‘testimonial-category’ ),
);register_taxonomy( ‘testimonial-category’, array( ‘client-testimonials’ ), $args );
}
flush_rewrite_rules();Forum: Fixing WordPress
In reply to: Taxonomy Not Loading with Permlink type "Post Name"yes, I have the following files:
archive-client-testimonials.php
taxonomy.phpBut that shouldn’t really matter right? Since, when its set to Permalinks to Default everything functions fine.