Forum Replies Created

Viewing 11 replies - 16 through 26 (of 26 total)
  • Thread Starter oldteaseller

    (@oldteaseller)

    there was a handful of references to woocommerce and translation files appearing at the same time as an automatic update of those files took place

    Thread Starter oldteaseller

    (@oldteaseller)

    sorry, do you see the earlier message which appears to be “held for moderation by our automated system and will be manually reviewed by a moderator.” ?

    Thread Starter oldteaseller

    (@oldteaseller)

    looks like the Woo and translation logs are related to automatic updates

    Thread Starter oldteaseller

    (@oldteaseller)

    Thank you for continuing to help out.

    Now the error log looks like the following:

    start_line
    https://www.io-te.dk/wp-cron.php?doing_wp_cron=1612918576.5504450798034667968750
    end_line

    start_line
    https://www.io-te.dk/wp-admin/admin-ajax.php?action=as_async_request_queue_runner&nonce=6bdc524c1b
    end_line

    start_line
    https://purchase.izettle.com/purchases/v2/?lastPurchaseHash=1612887931841X4aNMmrzEeuHIZSTH-jliw
    end_line

    start_line
    https://purchase.izettle.com/purchases/v2/?lastPurchaseHash=1612887931841X4aNMmrzEeuHIZSTH-jliw
    end_line

    I am currently in touch with the developer of our “WooCommerce iZettle Integration”-plugin who is also looking into the matter.

    Please feel free to let me know if you spot the cause for, or a possible solution to, these errors.

    Kind regards,

    Simon

    • This reply was modified 4 years, 1 month ago by oldteaseller.
    Thread Starter oldteaseller

    (@oldteaseller)

    I see. Thank you. I will try that.

    Kind regards,

    Simon

    Thread Starter oldteaseller

    (@oldteaseller)

    I see. Thanks for your reply.

    Since most error messages are of the kind:

    “2021-02-09 02:55:27.017718 [NOTICE] [10818] [127.0.0.1:57010-3#APVH_io-te.dk:443] [STDERR] PHP Warning: substr() expects parameter 1 to be string, array given in /home/iotedk/public_html/wp-content/plugins/litespeed-cache/src/css.cls.php on line 391”

    I thought it might be related to litespeed (perhaps due to JS minification?). But yes, sometimes the errors point to other directories as well.

    I downloaded the query monitor, but I haven’t seen any errors reported through it yet – only a few duplicated queries and sometimes a slow query (slow queries are always linked to litespeed btw: “INSERT INTO www_options (option_name, option_value, autoload)
    VALUES (‘_transient_wc_outofstock_count’, ‘6’, ‘no’) …” ).

    I’m not particularly tech savvy at all, so it’s difficult for me to identify what might be the real cause of these errors. But I understand that it might not be your responsibility to look into this either, since it may not be LS-related.

    Kind regards,

    Simon

    • This reply was modified 4 years, 1 month ago by oldteaseller.
    Thread Starter oldteaseller

    (@oldteaseller)

    Thank you for your reply, Stef.

    When I’m logged into WP I get following error messages in Chrome Console:

    ?v=2.0:6 WebSocket connection to ‘wss://public-api.wordpress.com/pinghub/wpcom/me/newest-note-data’ failed: Error during WebSocket handshake: Unexpected response code: 403
    g @ ?v=2.0:6
    admin-ajax.php:1 Failed to load resource: the server responded with a status of 503 ()
    admin-ajax.php:1 Failed to load resource: the server responded with a status of 503 ()
    admin-ajax.php:1 Failed to load resource: the server responded with a status of 503 ()
    ?v=2.0:6 WebSocket connection to ‘wss://public-api.wordpress.com/pinghub/wpcom/me/newest-note-data’ failed: Error during WebSocket handshake: Unexpected response code: 403
    g @ ?v=2.0:6
    T @ ?v=2.0:6
    j @ ?v=2.0:6
    DevTools failed to load SourceMap: Could not load content for https://www.io-te.dk/wp-content/plugins/jetpack/css/dashboard-widget.css.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE

    I do not get error messages in Console when viewing the site incognito.

    I tried disabling the firewall, but we keep getting the same errors.

    My hosting provider asks me to ask you if you can see which call is getting the timeout?

    Thank you,

    Simon

    Thread Starter oldteaseller

    (@oldteaseller)

    Thank you so much, @senff. It finally works!

    Just for future reference: your code makes the arrows appear only when hovering the .flex-direction-nav area, which in my case is in the middle of the image. So I added the below css code to make the arrows appear from the moment one hovers anywhere on the image area ( = .flex-viewport):

       .flex-viewport:hover ~ .flex-direction-nav .flex-nav-prev,
    .flex-viewport:hover ~ .flex-direction-nav .flex-nav-next  { opacity: 1 }

    Thanks a lot again.

    • This reply was modified 4 years, 11 months ago by oldteaseller.
    Thread Starter oldteaseller

    (@oldteaseller)

    For reference,

    this is the php and css code that I used to make the carousel slider on my single product page:

    in my child .functions file:

    add_filter( ‘woocommerce_single_product_carousel_options’, ‘ud_update_woo_flexslider_options’ );

    function ud_update_woo_flexslider_options( $options ) {
    $options[‘directionNav’] = true;

    return $options;
    }

    in my child style.css:

    .flex-direction-nav {
    position: absolute;
    top: 30%;
    z-index: 99999;
    width: 140%;
    left: 0;
    margin: 0;
    padding: 0px;
    list-style: none;
    }
    li.flex-nav-prev {float: left;}
    li.flex-nav-next {float: right;}
    a.flex-next {visibility:hidden;}
    a.flex-prev {visibility:hidden;}
    a.flex-next::after {visibility:visible; content: “\f054”;
    font-family: ‘Font Awesome 5 Free’;margin-right: 10px;font-size: 70px; font-weight: 900;
    color: rgba(255, 255, 255, 0.7)}
    a.flex-next:hover:after{
    color: white;
    -webkit-transition: color .3s linear;
    -moz-transition: color .3s linear;
    -ms-transition: color .3s linear;
    -o-transition: color .3s linear;
    transition: color .3s linear;

    }

    a.flex-prev::before {
    visibility:visible;
    content: “\f053”;
    font-family: ‘Font Awesome 5 Free’; margin-left: 10px;font-size: 70px;color: rgba(255, 255, 255, 0.7)}
    a.flex-prev:hover:before{
    color: white;
    -webkit-transition: color .3s linear;
    -moz-transition: color .3s linear;
    -ms-transition: color .3s linear;
    -o-transition: color .3s linear;
    transition: color .3s linear;

    }

    (thanks to the people of this thread: https://stackoverflow.com/questions/46353307/navigation-arrows-in-woocommerce-3-x-product-gallery-slider)

    Thread Starter oldteaseller

    (@oldteaseller)

    For reference,
    this is the php and css code that I used to make the carousel slider on my single product page:

    in my child .functions file:

    add_filter( ‘woocommerce_single_product_carousel_options’, ‘ud_update_woo_flexslider_options’ );

    function ud_update_woo_flexslider_options( $options ) {
    $options[‘directionNav’] = true;

    return $options;
    }

    in my child style.css:

    .flex-direction-nav {
    position: absolute;
    top: 30%;
    z-index: 99999;
    width: 140%;
    left: 0;
    margin: 0;
    padding: 0px;
    list-style: none;
    }
    li.flex-nav-prev {float: left;}
    li.flex-nav-next {float: right;}
    a.flex-next {visibility:hidden;}
    a.flex-prev {visibility:hidden;}
    a.flex-next::after {visibility:visible; content: “\f054”;
    font-family: ‘Font Awesome 5 Free’;margin-right: 10px;font-size: 70px; font-weight: 900;
    color: rgba(255, 255, 255, 0.7)}
    a.flex-next:hover:after{
    color: white;
    -webkit-transition: color .3s linear;
    -moz-transition: color .3s linear;
    -ms-transition: color .3s linear;
    -o-transition: color .3s linear;
    transition: color .3s linear;

    }

    a.flex-prev::before {
    visibility:visible;
    content: “\f053”;
    font-family: ‘Font Awesome 5 Free’; margin-left: 10px;font-size: 70px;color: rgba(255, 255, 255, 0.7)}
    a.flex-prev:hover:before{
    color: white;
    -webkit-transition: color .3s linear;
    -moz-transition: color .3s linear;
    -ms-transition: color .3s linear;
    -o-transition: color .3s linear;
    transition: color .3s linear;

    }

    (thanks to the people of this thread: https://stackoverflow.com/questions/46353307/navigation-arrows-in-woocommerce-3-x-product-gallery-slider)

    Fingers crossed that someone here are able to help fix the navigation arrows!

    Thread Starter oldteaseller

    (@oldteaseller)

    Thank you for your quick response, James. I’ve inserted the patch in index.js file now, but there seems to be no improvement.

    I wonder how come the dropdown menu opens and closes smoothly from the top of the homepage while keeping the header image and search button visible – but produces sudden loading ‘jumps’ or ‘glitches’ when the same operation is carried out further down the page. I guess it is because the header image and search button is forced to be made invisible/moved outside of the screen – so perhaps it is a styling issue?

    I just can’t find out how to fix the problem… So any help would still be deeply appreciated!

Viewing 11 replies - 16 through 26 (of 26 total)