Viewing 13 replies - 1 through 13 (of 13 total)
  • Have you been able to get tinymce working within Reed Write on types of Multiple Lines of Text? I’ve tried adding theEditor class to the textbox with jquery but things get really funky.

    Reed Write does everything I need except this.

    Plugin Author Brian S. Reed

    (@iambriansreed)

    Oh man. I will investigate this further. Check it out.
    New Version.
    https://www.ads-software.com/extend/plugins/reed-write/
    Documentation.
    https://scottreeddesign.com/project/reed-write

    Plugin Author Brian S. Reed

    (@iambriansreed)

    I have been asked to get the search to include the field data as well. Look for this in the next version.

    Plugin Author Brian S. Reed

    (@iambriansreed)

    1.1.0 custom meta field values now included in search

    What about having a custom template for that specific Content Type?

    Trying to use multiple posting areas but I am looking to have a different template for two of them.

    Here’s how far I got.

    Looks like I didn’t need to go so far, https://codex.www.ads-software.com/images/1/18/Template_Hierarchy.png

    However the above graphic doesn’t seem to include a custom index page for the new custom type so the following serves some purpose.

    flush_rewrite_rules(); // Line 391, your last piece of code before..
    
    		add_action("template_redirect", '_rw_template_redirect');
    	}
    
    	function _rw_template_redirect()	{
    		global $wp;
    
    // list custom types in an array, this could be better, of course
    		$rw_custom_types = array('custom-type-1-slug', 'custom-type-2-slug');
    
    		if (in_array($wp->query_vars["post_type"], $rw_custom_types)) {
    
    			if ( is_robots() ) :
    				do_action('do_robots');
    				return;
    			elseif ( is_feed() ) :
    				do_feed();
    				return;
    			elseif ( is_trackback() ) :
    				include( ABSPATH . 'wp-trackback.php' );
    				return;
    			elseif($wp->query_vars["name"]):
    				include(TEMPLATEPATH . "/single-".$wp->query_vars["post_type"].".php");
    				die();
    			else:
    				include(TEMPLATEPATH . "/".$wp->query_vars["post_type"].".php");
    				die();
    			endif;
    		}

    You may just need to implemented a bit of the above and simply include a link to the that WP Codex graphic to aid in ppl using their own templates.

    Plugin Author Brian S. Reed

    (@iambriansreed)

    @deflime

    Thanks for the input. I will look into this. I just created a page and built the loop in to the page but if this solution works I will definitely implement. This is one of those holes with custom post types that WordPress needs to fix.

    When adding and image, it would be great if you could also upload it instead of just selecting it from the library.

    As well as limiting the number of images to upload. Also it would be cool to set (image) post-thumbnail.

    Plugin Author Brian S. Reed

    (@iambriansreed)

    @alvaro05 Thanks to a donation I added a download tab to the image select field. Your second suggestion I will roll into a new field coming out called attach file. Like attach image but you can specify when editing the content type field which file types to allow. As well as limiting number to be attached.

    How about extending select_date.php to include date AND time? I think it might be useful to associate a time with a specific date.

    Plugin Author Brian S. Reed

    (@iambriansreed)

    Good idea. Will have to add a date and time field eventually.

    tanko

    (@tanko)

    I’m a total noob and would like an easy way to style the way to display the custom fields or create a custom post type template.

    If you know a hard way I may try it too. Thanks for the great plugin.

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘[Plugin: Reed Write] Feature Requests’ is closed to new replies.