dmpinder
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress Image UrlsThat is odd – can you post the link here? It might be an odd format, or perhaps behind a firewall for Google, etc.
Forum: Fixing WordPress
In reply to: Is this hosted on wordpress?Hi,
Yes this is a WordPress site. It uses the GeneratePress theme.
Forum: Fixing WordPress
In reply to: Email and WordPressI’d recommend proceeding with Mailgun, that’s what I use. Chances are your website emails are being labeled as spam because you need to set up some specific DNS records, which Mailgun will help you do.
Forum: Fixing WordPress
In reply to: I can’t be able to log in to my dashboardIf you’re logged in, I’d recommend checking out the Jetpack settings to try and remove your user/IP from the blocklist.
Forum: Fixing WordPress
In reply to: new user approveYou might want to look into a Membership plugin.
Forum: Developing with WordPress
In reply to: Relative path to child theme custom page templateSo that means that the “default” directory, according to WordPress even within a child theme, is always the parent theme’s directory?
Kinda, yes.
Glad it’s working!
Forum: Fixing WordPress
In reply to: cronjobHey @vickyaltobello!
Can I just check, why do you need a cron job created? If you’re using the FS Poster plugin, I would have thought it would be scheduling the cron job for you. Does it say you need to create one yourself?
There’s a cool plugin which does show current cron jobs on your site: https://wordpress.org/plugins/wp-crontrol/ If you’re not too familiar with the code side of WordPress this might be a bit overkill, but you might be able to spot the FS Poster plugin’s cron jobs in there.
Good luck!
Forum: Fixing WordPress
In reply to: equal heights/widths for picturesHey @aliceell!
Forigve me, I don’t know the Gutenberg blocks incredibly well, but if none of them are producing the result you need, then you might want to try resizing / cropping your images to make them all square by default.
If that isn’t an option, there are a bunch of Gutenberg block-based plugins out there which add new blocks into your site, and one of those might have the kind of block you’re looking for.
Good luck!
Forum: Developing with WordPress
In reply to: Relative path to child theme custom page templateHey @enrique71!
Sounds like you’re looking for
get_stylesheet_directory_uri().Try:
get_header( get_stylesheet_directory_uri() . '/template-parts/header/front-page-site-header' );For more info: https://developer.wordpress.org/reference/functions/get_stylesheet_directory_uri/
Forum: Everything else WordPress
In reply to: Billing/Membership?Hey @lifeglowson!
I think you might be confusing wordpress.org and wordpress.com.
wordpress.org (you’re currently on the .org support forums) is an entirely separate platform to wordpress.com. The .org is the self-hosted version and is free – there is no billing or membership required. However the .com does have paid plans which might be what you’re trying to find.
Head over to wordpress.com and try to login there!
Good luck!
Forum: Fixing WordPress
In reply to: I can’t be able to log in to my dashboardHey @faucetclaim!
I’m not too familiar with Jetpack, but I’ll see if I can help.
Does Jetpack give a reason / error for the lockout?
One way you can get around it is to disable Jetpack and then login, and attempt to re-enable it / resolve the reason you were locked out.
When it comes to disabling Jetpack without being able to login, there 3 methods available to you:
1. WP CLI
If you have access to your server directly via the command line, and your server has WP CLI enabled, you can run:
wp plugin deactivate jetpack2. Rename the Jetpack plugin folder
If #1 isn’t an option, and you have access to your site’s files (for example via your hosting provider’s File Manager or cPanel), you can rename the
jetpackplugin directory to something else (e.g.jetpack2) and that will force the plugin to be disabled.Once you’re back into your Dashboard you can rename the
jetpack2directory back tojetpackand then re-activate the plugin via the Plugins page in the Dashboard.Bear in mind, once Jetpack is re-activated, you might become locked out again. I’m not sure if that will happen, so you’ll need to test it.
3. Try whitelisting your IP
This tutorial might help: https://www.inmotionhosting.com/support/edu/wordpress/locked-out-jetpack/
Good luck!
Hey @uptopcorp,
Christine helped us fix this over support ticket, but the issue was that we were running the Enable jQuery Migrate Helper plugin which was keeping the site on the legacy version of jQuery, not the most recent version. Once I disbaled this plugin (or changed its settings to use the most recent version) then the PayPal payments worked again.
Christine confirmed a recent update to the SkyVerge plugin included an update to some JS library (I forget which) which likely caused this issue. As far as I know they haven’t released a further update which includes backwards compatibility.
Hope that helps!
Hi Christine,
Thanks for the reply. I’ve submitted a ticket there with all the details from above, plus the debug log entry.
It’s ticket 167571 in the help desk.
If you could possibly prioritise it that would be hugely appreciated. I know it’s a free plugin and we’re in a queue, but we’ve already waited 24 hours with the ticket here too, so an expedited reply would be great!
Thanks!
Hey @egahen, was this ever resolved? We’re having the same issue now.
Forum: Plugins
In reply to: [WP Job Manager] DoS attack using jm-ajax/get_listings to overload the serverHey @bindlegirl, thanks for the replies! We are hosting the site ourselves, so we are the support 😀
I’ve already set up a country-level Cloudflare Challenge on the US because the website and company are based in the UK, which has effectively stopped it for now. We’ve also added fail2ban to the server to block repeated hits like this.
Thanks for confirming there’s no real programmatic solution to it. I was curious whether it was possible to cache the query, if it isn’t already?