Home Forums WoodMart support forum Problem with update of Plugin

Problem with update of Plugin

Viewing 24 posts - 1 through 24 (of 24 total)
  • Author
    Posts
  • #75730

    Fireball
    Participant

    Hello,
    Each time I make an update of plugin, an error appears.
    I let you the error in attachment.
    Do you have an idea ?
    Thanks for your help,

    Attachments:
    You must be logged in to view attached files.
    #75742

    Artem Temos
    Keymaster

    Hi,

    What plugin do you update when get this error? How can we reproduce it on your website?

    Regards

    #75753

    Fireball
    Participant

    Hi, this error appears for all update and so all plugin.
    If you want to reproduce this error, there is a new update for one plugin, to do.
    I don’t understand why I have this error because I use your theme ( woodmart ) for several clients and I have only this problem with one website ( see private content ).

    This is was appears after updating:

    La mise Γ  jour a Γ©chouΓ© : Error 504: Backend unavailable * { font-family: ‘lato’, “Trebuchet MS”, “Arial”, “Lucida grande”, “Bitstream Charter”, “Liberation sans”, “FreeSans”, sans-serif; font-size: 16px; line-height: 20px; color: #494949; padding: 0; margin: 0; font-size: normal; font-weight: 200; } @font-face { font-family: ‘lato’; src: url(‘http://www.ovh.com/fr/themes/14/fonts/lato/lato-regular-webfont.eot’); src: url(‘http://www.ovh.com/fr/themes/14/fonts/lato/lato-regular-webfont.eot?#iefix’) format(’embedded-opentype’), url(‘http://www.ovh.com/fr/themes/14/fonts/lato/lato-regular-webfont.woff’) format(‘woff’), url(‘http://www.ovh.com/fr/themes/14/fonts/lato/lato-regular-webfont.ttf’) format(‘truetype’), url(‘http://www.ovh.com/fr/themes/14/fonts/lato/lato-regular-webfont.svg#latoregular’) format(‘svg’); font-weight: 400; font-style: normal; } @font-face { font-family: ‘lato’; src: url(‘http://www.ovh.com/fr/themes/14/fonts/lato/lato-light-webfont.eot’); src: url(‘http://www.ovh.com/fr/themes/14/fonts/lato/lato-light-webfont.eot?#iefix’) format(’embedded-opentype’), url(‘http://www.ovh.com/fr/themes/14/fonts/lato/lato-light-webfont.woff’) format(‘woff’), url(‘http://www.ovh.com/fr/themes/14/fonts/lato/lato-light-webfont.ttf’) format(‘truetype’), url(‘http://www.ovh.com/fr/themes/14/fonts/lato/lato-light-webfont.svg#latolight’) format(‘svg’); font-weight: 200; font-style: normal; } body { background-color: #F1F1F1; padding-top: 95px; } .container { padding: 0; margin: 0 auto; max-width: 737px; text-align: center; } .block { display: block; } .lato { font-family: ‘lato’,’Trebuchet MS’, ‘Helvetica’, sans-serif; } .blue { color: #3267BF; } .regular { font-weight: 400; } .fs30 { font-size: 30px; line-height: 30px; } .fs40 { font-size: 40px; line-height: 40px; } .fs50 { font-size: 50px; line-height: 50px; } .lh45 { line-height: 45px; } Error 504: Backend unavailable This type of error results generally from the client server, used as a backend. If you are a visitor of the website, please try to refresh it or come back in a few minutes. If you are the administrator of the website, please check the configuration of your server and/or CDN rules. In case the problem persists, please contact us.

    #75758

    Artem Temos
    Keymaster

    If this happens with all the plugin then it is not our theme related problem. Please, check how it works with default WordPress theme.

    #75778

    Fireball
    Participant

    Effectively, it is the same error with default WordPress theme…
    And do you have an idea to solve this problem ?

    #75784

    Artem Temos
    Keymaster

    Strange, it seems to be some PHP error caused by some of the external plugins or additional code customization. Try to disable them one by one and remove your custom PHP codes.

    #75786

    Fireball
    Participant

    Thanks for your reply, I will try like this.
    Last thing. Last year, you give me code to hide max prices. It is working very well for simple and variable product, but not for grouped product ( as in the attachment ).
    May you give me the code to solve this other problem.
    Thanks for your help

    #75790

    Fireball
    Participant

    Soory? I had forget the attachment…

    Attachments:
    You must be logged in to view attached files.
    #75798

    Artem Temos
    Keymaster

    Maybe this code will help

    .product-grid-item .price del {
        display: none;
    }
    #75843

    Fireball
    Participant

    Hi,
    I have try this code, but unfortunatly, it doesn’t work very well.
    In fact, I am using a plugin to have specific prices to specific customers logged with a particular ID. And some time ago, you helped me to keep lower prices but hide max prices. Your code ( let below ) works perfectly with simples and variables products but unfortunatly not with grouped products.
    Thanks for your help.

    Your last code was:

    .single-breadcrumbs {
    display:none!important;
    }

    .price {
    font-size:0!important;
    }

    .price .amount:first-child {
    font-size:14px!important;
    margin:0 5px
    }

    .price .woocommerce-price-suffix {
    font-size: 14px!important;
    }

    .single-product-page .summary .price .woocommerce-price-suffix {
    font-size: 20px!important;
    }

    .single-product-page .summary .price .amount:first-child {
    font-size: 20px!important;
    }

    .product-grid-item .price del {
    font-size:14px!important;
    }

    .woodmart-entry-meta,
    .woodmart-post-date {
    display: none!important;
    }

    .product-grid-item .price .original-computed-price {
    font-size: 0 !important;
    }

    .product-grid-item .price .original-computed-price > del {
    display:none;
    }

    #75850

    Artem Temos
    Keymaster

    Please, send us a link to the example product and show us on the screenshot what price do you want to hide.

    #75855

    Fireball
    Participant

    As you can see in the attachment, it seems that only max prices for grouped products are not hidden.

    Attachments:
    You must be logged in to view attached files.
    #75864

    Artem Temos
    Keymaster

    Maybe this code will do the trick

    .product-grid-item .price del:nth-child(2) {
        display: none;
    }
    #75874

    Fireball
    Participant

    Hi,
    It is not ” Maybe this code will do the trick” it does do the trick !.
    You are the best πŸ˜‰
    Thanks a lot !
    Another thing: do you know why sometimes prices are on the same line and others below ?
    And the last thing: I am not very old, and so ( πŸ˜‰ I reduce the screen at 80% to see more information. Do you know if it is possible to have woodmart reduced to 80% ?

    Attachments:
    You must be logged in to view attached files.
    #75885

    Artem Temos
    Keymaster

    Hi,

    It is because of inline styles for this price https://gyazo.com/28e08ca100358efc88af05289bf9ec4e
    You can override them with the following code but it may harm some plugin’s functionality

    span.wholesale_price_container {
        display: inline-block!important;
    }
    #75890

    Fireball
    Participant

    You are wonderful ! It works πŸ˜‰
    Is it possible to hide on simple product page too ?
    Thanks a lot
    https://leds-pros.fr/produit/downlight-led-tiberi-24w-36w-kanlux/

    Attachments:
    You must be logged in to view attached files.
    #75904

    Artem Temos
    Keymaster

    Just use more generic selector instead of the previous one

    .price del:nth-child(2) {
        display: none;
    }
    #75917

    Fireball
    Participant

    Everything works and I am aware that I asked to you much more that simple support.
    So,Thank you very much for your help.
    If I can do something in return to thank you, don’t hesitate, it will be with pleasure.
    I buy your theme for all my clients, and once again, I am pleased

    Usually, I reduce the screen at 80% on firefox to have more informations, do you know if it is possible to have woodmart reduced to 80% ?

    #75923

    Artem Temos
    Keymaster

    No problem, we are glad to help you πŸ™‚ Just don’t forget to leave position reviews and rate our theme with 5 stars. Any feedback about our theme functionality and design is also appreciated.

    What do you mean by reduced to 80%? Maybe some screenshot?

    #75925

    Fireball
    Participant

    Of Course, I will do it for each client !
    I let you an attachment with normal screen and reduced to 80%
    Thanks

    Attachments:
    You must be logged in to view attached files.
    #75933

    Artem Temos
    Keymaster

    We will introduce container width option in our next 3.0 update that will be released next month.

    #75935

    Fireball
    Participant

    Thanks very much

    #75947

    Fireball
    Participant

    It’s Done πŸ˜‰

    #75955

    Artem Temos
    Keymaster

    Thank you very much! πŸ™‚

Viewing 24 posts - 1 through 24 (of 24 total)

The topic ‘Problem with update of Plugin’ is closed to new replies.