Forum Replies Created

Viewing 15 replies - 121 through 135 (of 162 total)
  • Thread Starter devsaredead

    (@devsaredead)

    I shall do my testing later today. Yet, you mention that it works only if there are no other fonts, and as a matter of fact there are. In fact, I also have this piece of code in order to skip the font on certain text and let the others apply:

    :not(i):not(.fa):not(.myclass):not(.anotherclass){font-family:’Ruda’,Arial,sans-serif; url(…;}

    @font-face {font-family:HighwayGothic;src:url(…);

    Thread Starter devsaredead

    (@devsaredead)

    yes I did, I converted using one of the major online converters (don’t recall wich one now). It could be that Google has changed something but why do I have this problem if the font is on my directory? that’s my doubt

    and also, via the inspector, if I add a new element font-family it still doesn’t show the font

    Thread Starter devsaredead

    (@devsaredead)

    this is the file as you requested:

    @font-face {
    font-family: 'Ruda';
    src: url('Ruda-Black.woff2') format('woff2'),
    url('Ruda-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: fallback;
    } @font-face {
    font-family: 'Ruda';
    src: url('Ruda-ExtraBold.woff2') format('woff2'),
    url('Ruda-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: fallback;
    } @font-face {
    font-family: 'Ruda';
    src: url('Ruda-Regular.woff2') format('woff2'),
    url('Ruda-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: fallback;
    } @font-face {
    font-family: 'Ruda';
    src: url('Ruda-Medium.woff2') format('woff2'),
    url('Ruda-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: fallback;
    } @font-face {
    font-family: 'Ruda';
    src: url('Ruda-SemiBold.woff2') format('woff2'),
    url('Ruda-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: fallback;
    } @font-face {
    font-family: 'Ruda';
    src: url('Ruda-Bold.woff2') format('woff2'),
    url('Ruda-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: fallback;
    }
    Thread Starter devsaredead

    (@devsaredead)

    a classic, I also have Gutenberg disabled with a plugin

    Thread Starter devsaredead

    (@devsaredead)

    oh, it’s just the first line of code in my child theme’s style.css file

    Thread Starter devsaredead

    (@devsaredead)

    Thank you. The plugin is a core plugin of the theme, but neither have updated for over a year so it was strange that it had stopped fetching translations. For the same reason, I think it’s not a loading function problem but I shall investigate further.

    Forum: Fixing WordPress
    In reply to: php 8 crashes
    Thread Starter devsaredead

    (@devsaredead)

    I need to solve this with a different approach. I’m putting WordPress aside for a moment, but I need to upgrade my php 8.0 at least for my applications that are in subdomains.

    They are independent, and 8.0 ready, so why they crash if I try to upgrade php from my cPanel php manager ?

    Thread Starter devsaredead

    (@devsaredead)

    I do confirm somwthing is wrong. On checking the database I got a series of errors related only to Wpforo, like the following:

    [mydatabase.wp_wpforo_accesses] Unknown storage engine ‘InnoDB’

    [mydatabase.wp_wpforo_accesses] Corrupt

    and so on for many tables.

    Besides, everything is corrupted, in the debug window I get a huge list of issues, and the usergroups are not found. There is a message to execute a SQL but it’s a long command and I cannot copy-paste it into the terminal.

    I have even tried to unistall/reinstall but the issue persists.

    As a matter of fact, my forum is not visible anymore, I get a 404 screen in the section where my forum used to be. Because the forum have been deleted in my backend !!

    Please come to my aid, this is urgent !

    Thread Starter devsaredead

    (@devsaredead)

    the issue has disappeared on updating my SSL certificate, I cannot explain how.

    Though, I have read your documentation and wish to disable account creation on checkout. How can I do that?

    Thread Starter devsaredead

    (@devsaredead)

    My request keeps being ignored though it’s a Loco problem. Now, I have discovered that Loco DOES change something in the database and I would like to know where/how, so that I can understand why some strings have lost translation. Thank you.

    Thread Starter devsaredead

    (@devsaredead)

    I’m gonna put this topic on “resolved” because I’m not getting anymore spam registrations since my SSL certificate (free “let’s encript” type) updated. I hope it stays so, but I’d appreciate if some expert would throw some light on how can this happen. thanks

    Thread Starter devsaredead

    (@devsaredead)

    I have resolved, this was the issue (if anyone bumps into the same problem:

    for some reason upon updating the SSL certificate, my htaccess contained a rewrite rule:

    RewriteCond %{HTTP_REFERER} !^$
    RewriteCond %{HTTP_REFERER} !^http(s)?://(www.)?mydomain.com/.$ [NC] RewriteCond %{HTTP_REFERER} !^http(s)?://(www.)?mydomain.com$ [NC] RewriteCond %{HTTP_REFERER} !^http(s)?://(www.)?google.com/.$ [NC]
    RewriteCond %{HTTP_REFERER} !^http(s)?://(www.)?google.com$ [NC]
    RewriteCond %{HTTP_REFERER} !^http(s)?://checkout.stripe.com/.$ [NC] RewriteCond %{HTTP_REFERER} !^http(s)?://checkout.stripe.com$ [NC] RewriteCond %{HTTP_REFERER} !^https://(.)?mydomain.com/.$ [NC] RewriteCond %{HTTP_REFERER} !^https://(.)?mydomain.com$ [NC]
    RewriteRule ..(.)$ https://%{REMOTE_ADDR}/$ [R,NC]

    so I changed it to a simpler

    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

    so, unless anyone got something to say in terms of safety (or bad practice), I reckon this issue is resolved. ??

    Thread Starter devsaredead

    (@devsaredead)

    …Also, it’s weird that it loads file from an application on a subdomain. It’s all caused by the SSL !

    But thank you for confirming it has nothing to do with Worpress, now I got something to tell to the host.

    Thread Starter devsaredead

    (@devsaredead)

    for instance this page, the map doesn’t load, the page stays on loading and if a minute later you press the “stop loading” browser button, then you’ll see the map content trying to load but it doesnt. If you leave it (but I’m not asking you to do it), it will take over 10 minutes to load the map.

    Thread Starter devsaredead

    (@devsaredead)

    you are right, here’s a link not to my site but to an application installed on a subdomain, so it has no plugins and I guess it would be easier to investigate. The console suggests it’s a mixed content issue, but I wonder how since the sites have not had any mixed content ever.

Viewing 15 replies - 121 through 135 (of 162 total)