Because this was completely deleted from the server, I no longer have access to the plugin that triggers a daily warning. The warning is: WordPress Slider Revolution plugin < 6.7.11 – Cross Site Scripting (XSS) vulnerability. Logically, I no longer have access to the deleted page?
How could I solve this please?
]]>Invalid request, please go back and try again.
Error Code: invalid_request
Error Message: The URL stored by the Jetpack servers does not match your site. Please try disabling the Jetpack plugin, re-enable it, then connect again.
I’m having problems with {{abandoned_checkout_url}} shortcode.
I have created an abandoned cart recovery workflow and in it, I send emails to customers after one hour (screenshot).
The {{abandoned_checkout_url}} shortcode is used to insert the abandoned cart URL (screenshot) so that the user can finish checkout but the URLs I received in the email didn’t work.
I don’t know if they have a time limit but here are the links I received:
1)text URL
2)button URL
1)The text URL has an additional “https://” at the beginning (so the URL looks like https://https//MY_WEBSITE). If I remove the unnecessary “https://” then the URL works fine.
2)The button URL is completely different even though the same shortcode was used (starts with https://email.MY_WEBSITE) and also doesn’t work.
Why are the links not working and how to fix this bug?
]]>Regard,
Forhad Hossain
Do you know if a way I can ensure that Yoast is using the right URL? This is the first time this has happened to me and my client’s images are not showing when links are shared and has had very little traffic.
I have tried to update the .txt file manually with sitemap-1.xml, but there are no changes.
If there is any information you can provide to help me resolve this I would appreciate it. Thank you.
]]>I don’t want it to include the /141/. I can’t find anywhere to change this within Complianz. Where is Complianz getting this, and how can it be changed without unsynchronizing the page?
I expect to grow the page functions over time and may Complianz to make future updates.
Thanks in advance for any assistance!
]]>Code I used to call the pagination:
<div class="override-pagination">
<?php
global $wp_query;
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$max_num_pages = $wp_query->max_num_pages; ?>
<form class="pagination-with-input" novalidate>
<?php $previous_page = get_previous_posts_page_link();
if ($previous_page && $paged > 1) { ?>
<a class="pagination-previous" href="<?php echo $previous_page; ?>"><svg xmlns="https://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-left"><polyline points="15 18 9 12 15 6"></polyline></svg></a>
<?php } ?>
<span class="pagination-current">
<input type="number" name="paged" min="1" max="<?php echo $max_num_pages; ?>" value="<?php echo $paged; ?>">
</span>
<span class="pagination-seperator">of</span>
<span class="pagination-max"><?php echo $max_num_pages; ?></span>
<?php $next_page = get_next_posts_page_link();
if ($next_page && $paged < $max_num_pages) { ?>
<a class="pagination-next" href="<?php echo $next_page; ?>"><svg xmlns="https://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right"><polyline points="9 18 15 12 9 6"></polyline></svg></a>
<?php } ?>
</form>
</div>
]]>