bakertronics
Forum Replies Created
-
I can’t create a support ticket as I cannot create an account. Looks like I need Pro to have an account. This issue is with free version, so can we please communicate here?
Hi,
It’s not the cache.
There is no post-sitemap.xml in the root, your plugin generates the sitemap, not WordPress.
Also, looking in the database I can see the reference to the images in the table “wp_aioseo_posts“
In that table, the column “Image” has:[{"image:loc":"https:\/\/recxpress.com.au\/wp-content\/uploads\/2021\/10\/back-fat-recpress.jpg"},{"image:loc":"https:\/\/recxpress.com.au\/wp-content\/uploads\/2021\/10\/muscle-back-recpress.jpg"},{"image:loc":"https:\/\/recxpress.com.au\/wp-content\/uploads\/2021\/10\/back-muscles-recpress.jpg"},{"image:loc":"https:\/\/recxpress.com.au\/wp-content\/uploads\/2020\/01\/6-Best-Exercises-for-Your-Upper-Back.jpg"}]
So your plugin is not updating with correct images.
Hi, the sitemap is:
https://recxpress.com.au/post-sitemap.xml
If you view source you will this post:
<url>
<loc><![CDATA[https://recxpress.com.au/blog/who-else-wants-to-get-rid-of-their-unsightly-back-fat/]]></loc>
<lastmod><![CDATA[2025-01-17T03:58:12+00:00]]></lastmod>
<changefreq><![CDATA[always]]></changefreq>
<priority><![CDATA[0.7]]></priority>
<image:image>
<image:loc><![CDATA[https://recxpress.com.au/wp-content/uploads/2021/10/back-fat-recpress.jpg]]></image:loc>
</image:image>
<image:image>
<image:loc><![CDATA[https://recxpress.com.au/wp-content/uploads/2021/10/muscle-back-recpress.jpg]]></image:loc>
</image:image>
<image:image>
<image:loc><![CDATA[https://recxpress.com.au/wp-content/uploads/2021/10/back-muscles-recpress.jpg]]></image:loc>
</image:image>
<image:image>
<image:loc><![CDATA[https://recxpress.com.au/wp-content/uploads/2020/01/6-Best-Exercises-for-Your-Upper-Back.jpg]]></image:loc>
</image:image>
</url>These images 404:
https://recxpress.com.au/wp-content/uploads/2021/10/back-fat-recpress.jpg
https://recxpress.com.au/wp-content/uploads/2021/10/muscle-back-recpress.jpg
https://recxpress.com.au/wp-content/uploads/2021/10/back-muscles-recpress.jpgThis image loads:
https://recxpress.com.au/wp-content/uploads/2020/01/6-Best-Exercises-for-Your-Upper-Back.jpgYou will also notice on the blog post that we have added additional images that are not referenced in the sitemap:
https://recxpress.com.au/blog/who-else-wants-to-get-rid-of-their-unsightly-back-fat/
For cache, we run WP Fastest Cache, and have excluded the sitemap URLs in settings.You can see this reflected in Chrome Console > Network tab, cache is not running on these pages.
Looking forward to your response.
Thank you!
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] IPN/PayPal SettingsThey claimed that only happened in sandbox not live mode.
But it definitely effected us in live mode, that snippet sorted everything for us.Put it in your functions.php file. Hopefully they release an update soon with a fix as this absolutely decimated our clients sales.
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] IPN/PayPal SettingsHi, your plugin logs are shocking so we hacked the plugin to get better logs.
We found that when “could not capture payment” error happened on the checkout there was also this error “[0] => cURL error 28: Operation timed out after 5000 milliseconds with 0 bytes received”
Your plugin does not specify a timeout, so it uses WordPress default of 5 seconds.
So if Paypal takes longer than 5 seconds to reply “Hey, the payment was captured” the order fails to go to processing.
We added this filter to our themes functions:
add_filter('http_request_timeout', function($timeout, $url) { return 60; }, 999, 2);
This will give PayPal 60 seconds to get the message back.
We had 23 orders with issues yesterday because of this, which causes mayhem in our distribution centre.
We will monitor our custom logs today and report back if this fixes it.
Forum: Fixing WordPress
In reply to: Can I change background color in Visual Editor?Thanks guys.
I ended up installing tiny mce advanced and imported my css and it was fixed!
One headache fixed! Thanks again everyone. Trepmal, I am also going to try your method as well because I am still stuck why it did not work.
Forum: Fixing WordPress
In reply to: Can I change background color in Visual Editor?Thanks for your reply!
To do this I am hacking the core files.
I had a look around in /wp-includes/js/tinymce/themes/advanced/skins/wp_theme/content.css but so far I am unable to change the background color, even super hacking with !important.
I have also been coursing through editor-style.css but to no avail also. It seems to be using my paragraph/standard font (white and Courier Gothic) no matter what I fiddle with including font colors, backgrounds etc.
Anyone other ideas? I’ll keep fiddling away and if I find the solution I will post it up!