NikkaG
Forum Replies Created
-
Sorry, writing the post I made a mistake with the “link” feature…
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Strange Error on my Backup….Thanks Daniel,
I had the same errorWARNING: Job restarts due to inactivity for more than 5 minutes.and with the backWPup version from https://github.com/inpsyde/backwpup it’s solved.Nikka
Forum: Plugins
In reply to: [Postie] Category not assigned in Portfolio ang Custom Post TypesSorry Wayne, I didn’t understand your “but the user the email is from has to have permission to those taxonomies“.
Forum: Plugins
In reply to: save_post does not work with xmlrpc post updateI tried also
xmlrpc_publish_postbut is seems does not work and didn’t found documentation.add_action( 'xmlrpc_publish_post', 'clear_cache_for_page_id_XXX', 10, 1 );Forum: Plugins
In reply to: [Embed Google Map] Usage in TemplateGreat !!!
Thanks PetteriNikka
Forum: Plugins
In reply to: [Embed Google Map] Usage in TemplateHi Petteri,
I’d like to have the same of BorelliDesigns, support shortcode.
just to know, do you have plan it in a short time?Very nice plugin 🙂
Thanks
NikkaForum: Plugins
In reply to: [Extended API] Multi-site networkThanks Michael.
Forum: Plugins
In reply to: [Extended API] Multi-site networkHi Hani_is_online,
thanks for your information.
My problem is auto-solved but I don’t know how!
I tried to save different functions many and many times, in both my sites, and then, after some hours I tried again and the function is checked. Magic.
I didn’t change anything, I did’n increase max_input_var in my php.iniThanks,
NikkaForum: Plugins
In reply to: [Multisite Language Switcher] Translating taxonomy slugsHi Dennis,
thanks for your fast reply!!! But I’ve not understood well, perhaps I explained in a wrong way.
If have:
“products” my custom post type (English)
“produkte” my custom post type (Deutsch)
I cannot connect a “produtcs” with his Deutsch version.
For this reason I’ve now named my custom post type as “products” in both languages, English and Deutsch, and I tried to use your workaround to show a different url for Deutsch posts.
I expected to have:
/en.mysite.com/products/mypost
/de.mysite.com/produkte/mypostThanks again.
Forum: Plugins
In reply to: [Multisite Language Switcher] Translating taxonomy slugsHi,
sorry for my question. I’m stopped on the first step: I cannot translate my custom post type slug.
I tried to use a code like this:function my_msls_options_get_permalink( $url, $language ) { if ( 'de_DE' == $language ) { $url = str_replace( '/products/', '/produkte/', $url ); } return $url; } add_filter( 'msls_options_get_permalink', 'my_msls_options_get_permalink', 10, 2 );but it doesn’t work for me. My url does’t change.
Sure I make something wrong. Can anybody help me please?I put the code in function.php in my child theme (I tried also in function.php of the Theme). Is it the right place?
I created my custom post type with plugin Custom Post Type UI by WebDevStudios.com.Thanks !
Forum: Plugins
In reply to: [CSV Importer] custom taxonomies not mapping to postWorkaround:
if you need only a “one-time” importation you can import posts with hierarchical taxonomy (it works great!) and then you will delete the parent taxonomy.Forum: Plugins
In reply to: [CSV Importer] custom taxonomies not mapping to postSame problem!!!
Somebody have a solution?Forum: Plugins
In reply to: [Postie] Category not assigned in Portfolio ang Custom Post TypesMy Portfolio post type is added by the theme Lucidpress ver.4.1.1
Also I tried with another custom post type added with “Custom Post Type UI” plugin ver. 0.8.4 By WebDevStudios.com
Forum: Plugins
In reply to: [Custom Post Type Auto Menu] CPT order in the menuThanks Ken.
NikkaForum: Plugins
In reply to: [Pronamic Google Maps] Trying To Display All From a CategoryI think the correct code is:
[googlemapsmashup query=”category_name=test&nopaging=true” map_type_id=”satellite”]
where “test” must be the category slug (NOT name)
See http://codex.wordpress.org/Function_Reference/WP_Query#Parameters for other parameters