srkileee
Forum Replies Created
-
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] change "more fields" titleWhen will Pods 3 with field groups be released?
Forum: Plugins
In reply to: [Multisite Language Switcher] Custom post type and TaxonomyYes, that is what I was trying to connect.
1. post type is projekat
2. post type is projectIs there a way to connect them or it only works if the post types on both sites are the same?
Forum: Plugins
In reply to: [Multisite Language Switcher] Custom post type and Taxonomyok I will do that
Forum: Plugins
In reply to: [Multisite Language Switcher] Custom post type and TaxonomyI am hoping that they will give you some idea what is my problem
Forum: Plugins
In reply to: [Multisite Language Switcher] Custom post type and TaxonomyDoes it have something to do with wordpress version?
I am using 3.8.1, your solution apparently works with 3.6.1Forum: Plugins
In reply to: [Multisite Language Switcher] Custom post type and Taxonomyfunction my_msls_options_get_permalink( $url, $language ) { if ( 'sr_RS' == $language ) { $url = str_replace( '/project/', '/projekat/', $url ); $url = str_replace( '/project-category/', '/kategorija-projekta/', $url ); } elseif ( 'us' == $language ) { $url = str_replace( '/projekat/', '/project/', $url ); $url = str_replace( '/kategorija-projekta/', '/project-category/', $url ); } return $url; } add_filter( 'msls_options_get_permalink', 'my_msls_options_get_permalink', 10, 2 );Nothing
When I go to link the translation, link points me to:
From Serbian to English
http://en.enterijeriluster.com/wp-admin/post-new.php?post_type=projekat
From English to Serbian
http://enterijeriluster.com/wp-admin/post-new.php?post_type=projectShould be:
From Serbian to English
http://en.enterijeriluster.com/wp-admin/post-new.php?post_type=project
From English to Serbian
http://enterijeriluster.com/wp-admin/post-new.php?post_type=projekatForum: Plugins
In reply to: [Multisite Language Switcher] Custom post type and Taxonomyserbian ‘sr_RS’
english ‘us’
Still nothingForum: Plugins
In reply to: [Multisite Language Switcher] Custom post type and TaxonomyHere is example of links I want to connect
http://enterijeriluster.com/projekat/eksterijer/
http://en.enterijeriluster.com/project/exterior/Forum: Plugins
In reply to: [Multisite Language Switcher] Custom post type and TaxonomyIt does not work. I tried ‘us’, ‘en’, ‘en_US’, ‘en_EN’