karolinapan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Excessive GET requestsHi,
Given that the requests are originating directly from your hosting provider’s IP address, it’s likely that the requests are originating from your own site i.e. scheduled actions.
I’d recommend communicating/resolving this further with their support team.Forum: Plugins
In reply to: [File Manager] WP File Manger Plugin IssueHi,
In cases like this, your best would be to restore an available backup. Whether it’s one created using WP plugins or generated by the hosting provider. Additionally, depending on how you deleted the folder perhaps the ‘Trash’ can be restored i.e. if files were deleted via a File Manager, you hosting provider may have this feature.
Forum: Everything else WordPress
In reply to: Potential Security ProblemHi,
You may refer to the following:
https://make.www.ads-software.com/core/handbook/testing/reporting-security-vulnerabilities/
Forum: Fixing WordPress
In reply to: Website Health IssueHi,
Assuming you are referring to the Site Health page in the WP dashboard – what exact issue are you facing there? The report should identify the issues to help you fix them.
Forum: Fixing WordPress
In reply to: Updating Failed. The response is not a valid responseHi,
The error in question can occur due to various reasons such as a conflict with a plugin, a theme, a server issue, or even a browser issue. Since the issue is only happening for 1-2 users – it would be great to isolate the issue to determine if it’s specific to the accounts or the users using those accounts.
Here are some steps you can take to troubleshoot the issue:
- Ask the affected users to clear their browser cache and cookies and try again. Also, they can try using a different browser or device to see if the issue persists.
- Disable any plugins that could be conflicting with the editor such as a security or caching plugin and try again.
- Check the user account roles and permissions for the affected users and make sure they have the necessary permissions to edit and create posts.
- Check if the issue is related to a specific post or page. If yes, try copying the content of that post or page to a new post or page and see if the issue persists.
Hopefully, this can help you.
Forum: Installing WordPress
In reply to: Can’t login as admin userHi,
Have you addressed this with your service provider?
Provided that your domain’s DNS configuration is correct and considering it’s a fresh installation on their end without any modifications, they should be interested to review what went wrong.
Forum: Fixing WordPress
In reply to: Reduce the size of Youtube Video?Hi,
Have you considered using a WordPress plugin instead to provide you with the functionality you’re trying to achieve?
For example:
https://www.ads-software.com/plugins/youtube-embed-plus/ or any other alternative.A plugin like this could help you achieve responsive YT embeds.
Forum: Developing with WordPress
In reply to: Replace url in all WP posts to anotherHi,
It’s possible that the SQL query you’re using isn’t finding any matches because it’s looking for an exact match for the string ‘A’ within the post_content field. If the URL you’re trying to replace has additional parameters or formatting, the query may not be able to find it. Would be good to double-check it.
Have you had any luck using the WP-CLI Search Replace? Or tried using the Better Search Replace plugin?
And make sure to back up your database before making any changes to your content, just in case something goes wrong during the search and replace process.
Forum: Developing with WordPress
In reply to: How can I add an audio (mp3) playlist to a pageForum: Everything else WordPress
In reply to: The chicken or the egg?Hi,
It’s difficult to say who is right or wrong without more information.
It may be helpful to isolate the issue by testing with other themes and plugins, and to provide detailed information to both parties. Additionally, it may be worth looking for alternative plugins or themes that provide similar functionality to see if they work better together.
I would say each support team is responsible to test the compatibility with your provided information on the used versions, error messages or screenshots indicating the issue etc.
Forum: Everything else WordPress
In reply to: What does <# in code means?Hi,
The
<#
and#>
are used to enclose a block of code written in JavaScript template literals and they allow the embedding of JavaScript code within HTML code.As a result, the code between these delimiters is executed as JavaScript and its output is injected into the final HTML output.
Forum: Fixing WordPress
In reply to: Website load slowHi,
The loading speed of your website can be affected due to many things, it would be hard to say with the limited information provided as it could have no relation to the Slideshare downloader as well.
You could use online speed-testing services to help you determine the cause more accurately as well as implement general optimizations to your website, like image optimizations, CDN, caching plugin, and database optimizations among others.
Forum: Everything else WordPress
In reply to: Address text is goneHi,
This is how your page is opening up for me:
Could you please clarify what issue are you facing and what appears to be missing?
Forum: Everything else WordPress
In reply to: Como alterar cor do bot?o “ver carrinho”Hi,
Depends on what you’re using for your site. You could make such adjustments within your theme settings if supported. Otherwise, you could look into adding custom CSS which can be found under the Appearance ->?Customize?section of your dashboard.
There are also plugin alternatives that you could use to customize the Cart button.
Forum: Developing with WordPress
In reply to: Using paginate_links() functionHi,
I would say that you can omit the
base
andformat
arguments and use the default settings instead provided that they suit your requirements.Safe to say that the default settings may not work in all cases, such as when you have a custom permalink structure set up in WordPress and it seems to be generally a good practice to have those arguments defined.
Ultimately, it’s always a good idea to test your pagination links thoroughly to ensure they’re working as expected.