kammak
Forum Replies Created
-
Forum: Plugins
In reply to: [Admin Columns] Fatal errorDavid, version of PHP on site 5.5.38 but your plugin does not work – fatal error – promptly correct it.
[Thu Aug 30 21:30:53 2018] [warn] [client XXX.XXX.XXX.XXX] mod_fcgid: stderr: PHP Fatal error: Cannot redeclare AC() (previously declared in /var/www/XXXX/data/www/XXXXXXXX/wp-content/plugins/codepress-admin-columns/codepress-admin-columns.php:607) in /var/www/XXXXXXX/data/www/XXXXXXXXXX/wp-content/plugins/codepress-admin-columns/api.php on line 9, referer: https://XXXXXXXXXXX/wp-admin/plugins.php
Forum: Plugins
In reply to: [Polylang] Translated strings are not showingI found a solution to the problem. Everything is very simple. I was inattentive. Menu item in upper Admin menu must be “Show All Languages”.
Forum: Plugins
In reply to: [Polylang] Translated strings are not showingReturn to version 2.3.2 of the plugin did not solve the problem.
Forum: Plugins
In reply to: [Polylang] Translated strings are not showingI have a multilingual site and today, before adding another one new language, I updated the plugin… All the languages except one were missing in the “string translation” options page.
Forum: Plugins
In reply to: [Polylang] Translated strings are not showingProbably I have the same problem or something similar.
After upgrading to version 2.3.3, I see a “string translation” for only one language, other languages have disappeared…Forum: Plugins
In reply to: [Google Doc Embedder] GDE does not generate a shortcode when postingYes, I ran into the same problem. It is necessary to write a shortcode with the keyboard.
Forum: Plugins
In reply to: [Xmas Decoration] Media library failed to load.Снег – ведь это другой плагин? Значит имеет быть место конфликт плагинов. Попробуйте для снега какой-нибудь ещё. Я, например, использую вместе с Xmas Decoration плагин WP Super Snow. Они одновременно работают и друг другу не мешают. Кроме того WP Super Snow имеет в своих настройках возможность запретить его работу на мобильных устройствах, так как снег это очень крутая анимация и может в момент посадить аккумулятор мобильника…
Forum: Plugins
In reply to: [Xmas Decoration] Media library failed to load.Да нет, зачем же два раза подключать одну и ту же библиотеку jquery, вполне достаточно это сделать один раз. Там, насколько я помню, кроме библиотеки jquery надо подключить пару ява-скриптов и обязательно подключить ринг-тоны (swf), которые собственно и есть звук…
В этом плагине в версии 1.1 от Tran Meo, как раз и не было ринг-тонов, поэтому и не было звука.
И в ява-скриптах надо было прописать имя файла ринг-тонов, м.б. поэтому я где-то что-то и изменил в именах функций, не помню…Forum: Plugins
In reply to: [Xmas Decoration] Media library failed to load.Легко: xmas-decoration.1.5.zip
Плагин устанавливается стандартным способом. С наступающим!Forum: Plugins
In reply to: [Ultimate CMS] Problems after Upgrading to WordPress 4.5 – Ultimate CMSHi, I had the same troubles, but resolve it downgrade Ultimate CMS from ver. 1.1 to 1.08!!! Ultimate CMS 1.0.8 is working fine with WP 4.5.3!
It’s strange, but on the local copy of my website plug-in version 2.3.6 works fine. After update all-in-one-seo to 2.3.6 on real website its works fine too. What was it? Excuse me for vain concern.
Yes, I think I can do it on Monday after installing a local copy of my website.
I’m downgrade all-in-one-seo to 2.3.5.1 and now it’s works well.
Becouse my site has more than 1000 visitors per a day, I’ll be experimenting on a local copy of the site, thank you!Forum: Plugins
In reply to: [Easy Photo Album] Photos will not uploadVery thanks, Aubrey! It is working for me too! WP 4.5.3
You can add russian lang translation to this plagin
https://www.shihtzu.msk.ru/epa/lang-epa-ru_RU.zip
Thank you very much!Forum: Plugins
In reply to: [Easy Photo Album] Please add category or tag supportI did it myself.
In file “EPA_PostType.php” in plugin directory, before string calling the function register_post_type ( … ), look the line 131, adding the next code:/** * Registers the new taxonomy <code>shelf</code> for <code>easy-photo-album</code> post type. */ register_taxonomy('shelf', self::POSTTYPE_NAME, array( 'hierarchical' => true, 'labels' => array( 'name' => _x ('Shelves','Photo Albums shelves name (multiple)','epa'), 'singular_name' => _x ('Shelf','Singular Photo Albums shelf name','epa'), 'search_items' => _x ('Search shelf','Search items','epa'), 'popular_items' => _x ('Popular shelves','Popular shelves','epa'), 'all_items' => _x ('All shelves','All items','epa'), 'parent_item' => _x ('Parent shelf','Parent shelf','epa'), 'parent_item_colon' => _x ('Parent shelf','Parent shelf','epa'), 'edit_item' => _x ('Edit shelf','Edit menu item','epa'), 'update_item' => _x ('Update shelf','Update menu item','epa'), 'add_new_item' => _x ('Add new shelf','Add new menu item','epa'), 'new_item_name' => _x ('New shelf name','New shelf name','epa'), 'add_or_remove_items' => _x ('Add or remove shelf','Add or remove shelf','epa'), 'choose_from_most_used' => _x ('Choose from most used','Choose from most used','epa'), 'menu_name' => _x ('Shelves','Menu name','epa') ), 'public' => true, 'show_in_nav_menus' => true, 'show_ui' => true, 'show_tagcloud' => false, 'update_count_callback' => '_update_post_term_count', 'query_var' => true, 'rewrite' => array( 'slug' => 'shelf', 'hierarchical' => true ), ) );
then in function register_post_type arguments find a last string
'taxonomies' => array ()
and change it to
'taxonomies' => array ( 'shelf' )
after that you will need to flush your permalink structure after making changes to your taxonomies, permalink structure is automatically flushed when you visit Settings > Permalinks in your WordPress dashboard.
That’s all… now I can arrange photo albums on the shelves.