thatwastaxing
Forum Replies Created
-
Got it. Was missing a trailing slash:
function my_qmt_base_url( $base ) { return qtrans_convertURL($base).'/'; } add_filter( 'qmt_base_url', 'my_qmt_base_url' );
I second this.
Also, your form on your official website is broken ??
Failed to send your message. Please try later or contact administrator by other way.
Forum: Plugins
In reply to: [Admin Menu Editor] Profile and Your ProfileHave a look here: https://wordpress.stackexchange.com/questions/1216/changing-the-order-of-admin-menu-sections
It might help. I ended up just renaming WP’s Profile so as not to cause confusion with my custom post type called Profile.
Forum: Plugins
In reply to: [Admin Menu Editor] Profile and Your ProfileI’m looking for the same thing as whiteorb. Will follow this thread and post back if I find a solution.
It was a typo on my end. I accidentally used a period instead of a comma when setting up my CPT.
Strike that. PEBKAC.
Forum: Plugins
In reply to: [Auto Post Title] [Plugin: Auto Post Title] changing permalinkThanks for looking into this.
It seems that publishing without a title (custom post types) is indeed a WP limitation and the solution is to pre-populate the title field before saving so that it is set.
I’m having the same issue with the Auto Draft title and slug. Watching this thread and will come back if I find any solutions.
Forum: Plugins
In reply to: [Auto Post Title] [Plugin: Auto Post Title] changing permalinkHi. Yes, I’m able to change the slug that way but what I’m after is a way to change it from saying “auto-draft-x” and taking the value of [author].
Looking at my database, all the records have a value of “auto-draft” rather than “publish” (except for Hello World! and Sample Page, of course).
Perhaps this is beyond the scope of your plugin and something I should be investigating in WP itself?
Forum: Plugins
In reply to: [Auto Post Title] [Plugin: Auto Post Title] Custom post types?Sorry, I’m dumb.
“Profile” was my custom post type. Hahaha!
Thanks a lot for sharing! Works with my custom post types now ??
Forum: Fixing WordPress
In reply to: Localization of taxonomiesTry it this way:
add_action( 'init', 'create_my_taxonomies', 0 ); //create taxonomies function create_my_taxonomies() { // Add new taxonomy $labels = array( 'name' => __( 'Samples', 'mythemename' ), 'singular_name' => __( 'Sample', 'mythemename' ), 'search_items' => __( 'Search Samples', 'mythemename' ), 'all_items' => __( 'All Samples', 'mythemename' ), 'parent_item' => __( 'Parent Sample', 'mythemename' ), 'parent_item_colon' => __( 'Parent Sample:', 'mythemename' ), 'edit_item' => __( 'Edit Sample', 'mythemename' ), 'update_item' => __( 'Update Sample', 'mythemename' ), 'add_new_item' => __( 'Add New Sample', 'mythemename' ), 'new_item_name' => __( 'New Sample Name', 'mythemename' ), 'menu_name' => __( 'Samples', 'mythemename' ), ); register_taxonomy('sample',array('mycustomposttype'), array( 'hierarchical' => true, 'labels' => $labels, 'show_ui' => true, 'query_var' => true, 'rewrite' => array( 'slug' => 'sample' ), )); }
Second this feature request!
Oh I see. The shortcode
[CONTENT]
needs to be entered in the Content Details section.Please put this in the FAQ as it’s not very obvious. Better still, maybe make it default.
Never mind. I found a plugin to do it.
In case anyone else is interested: https://www.ads-software.com/extend/plugins/custom-taxonomy-sort/