Forum Replies Created

Viewing 13 replies - 1 through 13 (of 13 total)
  • Thread Starter manaraga

    (@manaraga)

    I put all my scripts in the footer and it looks like it helped.

    Thread Starter manaraga

    (@manaraga)

    I 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.jpg

    Thread Starter manaraga

    (@manaraga)

    Спасибо, теперь ответ какой нужно!
    Плагин супер!

    Thread Starter manaraga

    (@manaraga)

    Да я пробовал вместе с sanitize_title. Сейчас еще и с Null. Строка все равно пустая.

    А по поводу создания аттрибутов продукции, то там сначала создается группа атрибутов, а в нее уже добавляются термы. С термами проблем нет – их действительно wp контролирует. А вот с группой аттрибутов есть. Даже если через админку добавляешь такую группу у которой разные имена, но одинаковый слаг – то возникает ошибка что такой слаг уже есть. Видимо это контролируется какой то woocommerce функцией и там нет защиты.

    Вообщем нужно такую защиту делать самому и для этого нужно научиться возвращать транслитирированную строку.

    Спасибо.

    Thread Starter manaraga

    (@manaraga)

    Я парсирую продукцию для интернет магазина и пользуюсь woocommerce rest api. Часто возникает ошибка при создании аттрибута продукции методом $woocommerce->post(‘products/attributes’, $args);

    Fatal error: Uncaught Automattic\WooCommerce\HttpClient\HttpClientException: Error: Слаг “u” уже используется. Пожалуйста, укажите другой. [woocommerce_rest_cannot_create]

    Связано с тем что например ранее был создан слаг razmer-mm из с имени “Размер, мм”
    а теперь происходит попытка создания такого же слага из имени “Размер, мм.”

    Поэтому и хотелось сделать предварительную проверку будущего слага аттрибута, путем вызова вашей транслитирирующей функции и сравнения ее с массивом всех слагов аттрибутов.

    Спасибо.

    Thread Starter manaraga

    (@manaraga)

    I 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 NO

    Thread Starter manaraga

    (@manaraga)

    I 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 =)

    Thread Starter manaraga

    (@manaraga)

    I 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’);
    }

    I have the same trouble. Cant save selection for category or custom post type in Ads Zone Editor. WP 3.5.2.

    Thread Starter manaraga

    (@manaraga)

    I 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)));

    Thread Starter manaraga

    (@manaraga)

    I 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 ??

    Thank U so much! Hotfix fixed my mediafil problem!

    The same problem after upgrade to wp 3.1.3! Cant see mediafiles!
    And also i cant see images and books in FlippingBook plugin.

Viewing 13 replies - 1 through 13 (of 13 total)