manaraga
Forum Replies Created
-
Forum: Plugins
In reply to: [Fast Velocity Minify] Mobile theme switcherI put all my scripts in the footer and it looks like it helped.
Forum: Plugins
In reply to: [Fast Velocity Minify] Mobile theme switcherI can not publish screenshots here, so I give links to them.
If you clear the cache and walk through the mobile version, you can see that such files are issued by the cache. https://mygoodknife.com/mobile-js.jpg
If you then switch to the desktop version, you can see that the JavaScript file in the footer is loaded the same as in the mobile and gives an error.
https://mygoodknife.com/desktop-js.jpgForum: Plugins
In reply to: [WP Translitera] Manual functionСпасибо, теперь ответ какой нужно!
Плагин супер!Forum: Plugins
In reply to: [WP Translitera] Manual functionДа я пробовал вместе с sanitize_title. Сейчас еще и с Null. Строка все равно пустая.
А по поводу создания аттрибутов продукции, то там сначала создается группа атрибутов, а в нее уже добавляются термы. С термами проблем нет – их действительно wp контролирует. А вот с группой аттрибутов есть. Даже если через админку добавляешь такую группу у которой разные имена, но одинаковый слаг – то возникает ошибка что такой слаг уже есть. Видимо это контролируется какой то woocommerce функцией и там нет защиты.
Вообщем нужно такую защиту делать самому и для этого нужно научиться возвращать транслитирированную строку.
Спасибо.
Forum: Plugins
In reply to: [WP Translitera] Manual functionЯ парсирую продукцию для интернет магазина и пользуюсь woocommerce rest api. Часто возникает ошибка при создании аттрибута продукции методом $woocommerce->post(‘products/attributes’, $args);
Fatal error: Uncaught Automattic\WooCommerce\HttpClient\HttpClientException: Error: Слаг “u” уже используется. Пожалуйста, укажите другой. [woocommerce_rest_cannot_create]
Связано с тем что например ранее был создан слаг razmer-mm из с имени “Размер, мм”
а теперь происходит попытка создания такого же слага из имени “Размер, мм.”Поэтому и хотелось сделать предварительную проверку будущего слага аттрибута, путем вызова вашей транслитирирующей функции и сравнения ее с массивом всех слагов аттрибутов.
Спасибо.
Forum: Plugins
In reply to: [Loushou Language Links] Custom post type problemI check most of generated links and found what many of them without language prefix:
get_post_type_archive_link NO
get_next_posts_link ?
get_search_link NO
get_permalink OK
the_permalink OK
get_previous_posts_link ?
previous_posts_link ?
get_category_link OK
get_tag_link OK
get_term_link OK
get_page_link OK
wp_link_pages ?
paginate_links ?
comment_link OK
get_category_feed_link OK
get_comment_link OK
get_post_comments_feed_link OK
get_search_comments_feed_link NO
get_search_feed_link NO
post_comments_feed_link ?
paginate_comments_links ?
previous_comments_link ?
next_comments_link ?
get_day_link NO
get_month_link NO
get_year_link NOForum: Plugins
In reply to: [Loushou Language Links] New featuresI solve my first question by the same way: disable plugin if site open with default language, but it will be good to apply this feature in plugin =)
Forum: Plugins
In reply to: [Loushou Language Links] New featuresI solve my second question by adding hook in wp-config:
if (strpos($_SERVER[‘REQUEST_URI’], ‘/en’) === 0) {
define (‘WPLANG’, ‘en_US’);
} else {
define (‘WPLANG’, ‘ru_RU’);
}Forum: Plugins
In reply to: [Simple Ads Manager] Ads not working with categoryI have the same trouble. Cant save selection for category or custom post type in Ads Zone Editor. WP 3.5.2.
Forum: Plugins
In reply to: [Post Types Order] Order didnt work then i save from taxonomy filterI solved its by myself! Moving cat to the tax_query allowed show correct order by tax!
This works:
WP_Query(array(‘orderby’ => ‘menu_order’, ‘order’ => ‘DESC’, ‘showposts’ => -1, ‘tax_query’ => array(‘relation’ => ‘AND’, array(‘taxonomy’ => ‘brands’, ‘field’ => ‘slug’, ‘terms’ => $term), array(‘taxonomy’ => ‘category’, ‘field’ => ‘id’, ‘terms’ => $child2), $country1, $country2)));Forum: Plugins
In reply to: [Page Flip Image Gallery] Cant see booksI solved this problem. It was because i upgrade my hosting to 5.2 php and in my hosting i should switch on simplexml module manualy. If you have trouble with stop responding your site and book admin page, check simplexml module ??
Forum: Fixing WordPress
In reply to: can't see my Media files in the media dashboardThank U so much! Hotfix fixed my mediafil problem!
Forum: Fixing WordPress
In reply to: can't see my Media files in the media dashboardThe same problem after upgrade to wp 3.1.3! Cant see mediafiles!
And also i cant see images and books in FlippingBook plugin.