devsaredead
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: spam registrations sneaking in<blockquote>if you truly believe and insist this is a result of some “unknown code” on your site</blockquote>I do believe that, because after only 5 secs I enable “anyone can register” then spam bots resurrects and injects registration. So it’s sleeping somewhere within the installation, even if security tips doesn’t contemplate that possibility. Besides, my registration form (with all fields mandatory) is contained within a modal that only a manual action can trigger (it’s the same has having captcha).
Forum: Everything else WordPress
In reply to: very basic query about multilanguageI always use the Softacolous installer within cPanel, which offered the option multlingual/standard, that’s why I always wondered about the difference. However, I think you have answered my doubts and I thank you for that.
Forum: Everything else WordPress
In reply to: very basic query about multilanguageThank you James but your tips don’t really answer my question. I just wanted to know if a website that needs to be multilanguage needs a particular WP installation or just the normal one (notwithstanding if I’ll use a premium or free plugin).
Forum: Plugins
In reply to: [WP Job Manager] plugin disabled after updatedhello again and thank you for the precious tips. I have managed by renaming the corrupted directory in order to have JM disabled… then I noticed that my theme options had a warning for the plugin update, I used that and it restored JM in the new version. 🙂 it looks all right now, my listings are all there
Forum: Plugins
In reply to: [WP Job Manager] plugin disabled after updated@yscik8 sorry for the late reply. I should ask you to be more specific. After restoring my site to the status where WPJM asks to be updated, I have tried again and got the same result: “impossible to move the old version in directory upgrade-temp-backup” and
wp-job-manager/wp-job-manager.phpis not found. If I delete the plugin it will break the theme, so I need a manual update procedure, i.e. step by step. Can you indicate how?Forum: Plugins
In reply to: [WP Job Manager] plugin disabled after updated@hastibe no I havent, because the plugin is hardcoded into the theme. I have now overwritten the files from the upgrade directory to the plugins one, and the plugin came back in the list, but once activate I got a general error
Uncaught Error: Undefined class constant ‘PT_LISTING’ in /…/public_html/wp-content/plugins/wp-job-manager/wp-job-manager-template.php:1237
plus one error for each of my jobs listed, which don’t appear in the backend anymore.
Forum: Plugins
In reply to: [WooCommerce] errors during update@beautyofcode I was waiting for a new Woo update, in order to check the issue
Forum: Everything else WordPress
In reply to: font-family not recognised by FF browser anymore@t-p, the theme is not supported anymore so I was wondering if my method was also a deprecated CSS/Wordpress one
hello, I understand you have made a concatenation system instead of a button-enable one, but I get very lost into it.
I simply wish to remove all “add to cart” instances both from the product page (I disabled it in the meta bleow the image but it’s still visible in the quick view modal) and from the shop page.
UPDATE: I’m testing again, it looks like I can manage better now…
PS. an enquiry form in place of the “add to cart” button would be nice
- This reply was modified 2 years, 7 months ago by devsaredead.
Forum: Developing with WordPress
In reply to: google font not loading up anymoreI thank you for your time, but it seems that hardcoding the URL doesnt work for me. I really cannot explain why the font isn’t fetched anymore.
Looking forward to hear other tips.
Forum: Developing with WordPress
In reply to: google font not loading up anymoreI 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(…);
Forum: Developing with WordPress
In reply to: google font not loading up anymoreyes 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
Forum: Developing with WordPress
In reply to: google font not loading up anymorethis 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;
}Forum: Developing with WordPress
In reply to: google font not loading up anymorea classic, I also have Gutenberg disabled with a plugin
Forum: Developing with WordPress
In reply to: google font not loading up anymoreoh, it’s just the first line of code in my child theme’s style.css file