Valentin Bora
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Too many redirects – slightly oddUnfortunately I don’t have the same redirect problem that you do.
Do you have this issue on the homepage or other pages of your site?
Can you try in private browsing/incognito mode?
Forum: Fixing WordPress
In reply to: RecaptchaIt seems your custom CSS is limited to a certain screen size from within your Avia settings.
Play around with the settings there to make sure it is globally applied for all screen sizes and not just desktops.
If you can’t figure it out, as your approach is specific to the Avia theme, you’ll have to ask them through their support channels, or find another way to add your CSS globally (there are plugins for that).
Forum: Fixing WordPress
In reply to: Sending new post mailYou definitely need a plugin for this. Options range from Jetpack to other plugins such as https://wordpress.org/plugins/email-subscribers/
I do not mean to suggest one option or another, you should do your own research and testing.
For sending the actual emails, I strongly recommend a plugin such as Post SMTP configured to work with an external email relay service such as Sendgrid (has a free plan) or others. Landing emails in users’ inboxes (as opposed to their Spam folder) is a pretty tough job nowadays so it’s better to let a knowledgeable service provider do it for you.
That’s about all you need, in broad terms.
Forum: Fixing WordPress
In reply to: Too many redirects – slightly oddCan you share the link to the problematic website?
It seems you’ve installed a plugin called WebP Express (https://wordpress.org/plugins/webp-express/). It has either stopped working or it is disabled.
Please check if you still have this plugin installed and active.
If yes, and you still want to have it, you’ll have to contact the authors on the plugin support forum, here: https://wordpress.org/support/plugin/webp-express/
If you no longer have the plugin active, please delete the .htaccess file from your server.
For some reason, your server does not respond nicely to the following HTTP Header sent by Chrome:
Accept: image/webp,image/apng,image/*,*/*;q=0.8If I try without the
image/webppart (so justimage/apng,image/*,*/*;q=0.8), it works fine.Please check your
.htaccessfile for any specialwebphandling or talk to your hosting provider for further assistance.Forum: Networking WordPress
In reply to: localhost using HTTPSCould you check your database, table
wp_optionsfor the keyshomeandsiteurlto see if they havehttps://in the value?Also please share the contents of your
.htaccessfile found in the root of your installation folder if you have it.Finally, have you installed any SSL plugin or have done any other configuration that you can think of in between when it was working and when it started not working?
- This reply was modified 6 years, 6 months ago by Valentin Bora.
Forum: Fixing WordPress
In reply to: WordPress box links don’t open@jnashhawkins I’ve tested this on a vanilla installation and it works just fine, with the same sandboxing parameters. Upon further inspection, I see there’s a listener for link clicks that handles this via JS, so I am suspicious of CloudFlare’s optimizations that could break that JS.
Forum: Fixing WordPress
In reply to: WordPress box links don’t openCould you please first try to disable CloudFlare Rocket Loader?
This setting should be in your CloudFlare Dashboard -> Speed -> Optimization -> Rocket Loader
If that doesn’t help, we’ll try something else.
Forum: Fixing WordPress
In reply to: WordPress box links don’t openThe iframe is sandboxed/security restricted, so it is not allowed to navigate the parent/top frame.
The attribute on the iframe that I can see is
sandbox="allow-scripts", which is probably the cause for this.Please refer to https://www.w3schools.com/tags/att_iframe_sandbox.asp
Forum: Fixing WordPress
In reply to: CAN’T EDIT PAGE, SITE ORIGIN EDITOR UNKNOWN ERRORIf you’ve purchased a commercial theme or plugin, it would be best to post the question to their respective support forum.
If you need assistance finding the appropriate place, please let us know what theme/plugin you’ve bought.
Forum: Fixing WordPress
In reply to: Fatal ErrorCan you copy/paste the text of the error or a screenshot?
Do you have any idea what hosting company you are using and what PHP version you are running?
Forum: Fixing WordPress
In reply to: Extract a field from an array on MySQL DB on WordPressThis could be simplified if I were more hands-on, but here’s an update to the function:
function my_get_video_embed($id) { $video = get_post_meta($id, 'video', true); if (empty($video)) { $video = get_post_meta($id, 'td_post_video', true); if (!empty($video) && !empty($video['td_video'])) { $video = $video['td_video']; update_post_meta($id, 'video', $video); } } if (!empty($video) && is_array($video) && !empty($video['td_video'])) { return $video['td_video']; } return $video; }Forum: Fixing WordPress
In reply to: Extract a field from an array on MySQL DB on WordPressOK, add a line
<pre><?php print_r($video) ?></pre>after the line withmy_get_video_embedto see what the result looks like.We’ve got to match the expectation of
wp_oembed_get(an URL string/text) with the result of themy_get_video_embedfunction call.We’re close 😉
Forum: Fixing WordPress
In reply to: my site is goneI’m not sure what the connection is between
devandnon-dev(root domain). How are they related? Do you have one or two WordPress sites?It kind of sounds like your plugins are outdated too. If you can’t reach your Updates page in the Admin Dashboard, you might have to go to FTP or File Manager and remove them from the
wp-content/pluginsfolder, then re-install them as needed one by one.