JochenKnochen
Forum Replies Created
-
…okay! but the mentioned plugin does exactly what i want (dropdowns)! thanks again!
…okay, i found a plugin which absolutely does waht i need:
https://wordpress.org/plugins/multiple-term-selection-widget/Thanks alot for your quick and awesome support!!!!!! otherwise i would have spent hours and hours to find a solution on this “bug” 😉
damnit…facepalm to me…
i think i misunderstood the whole usage. but thanks for your detailed explanation, man!!!!all i want is the opportunity to select multiple categories/taxanomies or in other words: exclude categories from the post-overview by choosing the ones which should be displayed… more like a “live-categorie-filter”, not a search….
is that maybe possible with your plugin (maybe with the pro-version)?
ideal would be:
– on the left i have ALL my posts displayed
– on the right i have some categories with sub-categories displayed like this (as a dropdown would be awesome):CAT A
– SUBCAT A1
– SUBCAT A2
– SUBCAT A3
CAT B
– SUBCAT B1
– SUBCAT B2
– SUBCAT B3– if i choose now “SUBCAT A2” and “SUBCAT B3” for example, it gives me all the posts from this chosen categories on the left…
maybe someone could give me hint how to look for a function like this (is there a plugin?) or give me a hint how to to this would be awesome. when i look for “category-filter” plugin i always get
plugins like this. …i`m absolutely willing to pay for a good plugin!…this is the test-page: http://jan.thorstenbreyer.de/
it’s just the standard twenty-13 theme and no plugins running!??!
thats weird.. it happens on different installations, different webproviders and with different themes!thanks for oyur help,
JochenPS: i could prove a backend-login (how do i send private messages here?)
yeah, that’s close to what i wanted… i think i can modify it by myself to make it run like i need it…
thanks!
Forum: Plugins
In reply to: [MultilingualPress] Multilingual Press deactivates my Custom Fieldsokay, sorry… i got it! i will look for another solution..
thanks anyway!Thanks Toscho!
…could you tell me how i exactly do this in my case? sorry, i’m not a really a PHP crack…Forum: Plugins
In reply to: [MultilingualPress] Multilingual Press deactivates my Custom Fieldsthanks!
but unfortunately this is not working for me… i copied the first codesnippet into my functions.php and putted the hidden input field somewhere in my site… then i added the last snippet to the first one like this:add_action( 'save_post', 'update_linked_posts', 10, 2 ); function update_linked_posts( $post_ID, $post ) { // avoid recursion remove_filter( current_filter(), __FUNCTION__ ); // get an array of post IDs from the other blogs, this is a custom function $linked_posts = get_linked_post_ids( $post_ID ); $current_blog_id = get_current_blog_id(); foreach ( $linked_posts as $blog_id => $linked_post_id ) { switch_to_blog( $blog_id ); $linked_post = get_post( $linked_post_id ); // post doesn't exist anymore if ( ! $linked_post ) { // remove it from our table, this is a custom function delete_linked_post_relation( $linked_post_id ); } else { // assuming you did proper security checks earlier! $linked_post->post_content = $_POST[ $blog_id ][ 'post_content' ]; // YOUR METABOX BREAKS HERE wp_update_post( $linked_post ); } restore_current_blog(); } // restore the action callback add_action( 'save_post', 'update_linked_posts', 10, 2 ); // Network compatibility. Our plugin should not be synchronized. if ( empty ( $_POST[ 'blog_id' ] ) ) return FALSE; if ( (int) $_POST[ 'blog_id' ] !== get_current_blog_id() ) return FALSE; }Forum: Plugins
In reply to: [MultilingualPress] Multilingual Press deactivates my Custom Fields…oh and i’m using the plugin “Custom Field Suite”. Maybe that’s the problem?
Forum: Plugins
In reply to: [Co-Authors Plus] Display all Authors as a simple list () in the sidebar?…this must be simple… nobody?
Forum: Localhost Installs
In reply to: WP Multisite installed locally (MAMP): Subsite "not found"?!?!?!it says:
#
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be “All”, “None”, or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride All..so that seems not to be the problem?!?!
Forum: Localhost Installs
In reply to: WP Multisite installed locally (MAMP): Subsite "not found"?!?!?!i updated my htaccess like how the multisite installation process told me… or do i have to add something more? how do i add allowoverride to the httpd.conf? thanks so far…