Amanda K.
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: The site is experiencing technical difficulties.Forum: Fixing WordPress
In reply to: PHP imagick “module not installed, or disabled” messageDo you have access to the command line on your hosting server? If so, you could try installing imagick with this:
sudo apt install php-imagickForum: Fixing WordPress
In reply to: Upload of 5.2 failedDouble check your CHMOD settings to be sure they are writable. Given the “could not create directory” error, that would be my first step.
Read about CHMOD and how to fix file permissions here: https://www.getastra.com/blog/cms/wordpress-security/fixing-wordpress-file-permissions/
Forum: Fixing WordPress
In reply to: WordPress Site Admin not workingAre you able to log in here:
Forum: Fixing WordPress
In reply to: Post excerpts in HomepageDo you have any current code we could look at to troubleshoot?
This is the function you’ll need to call in order to display an excerpt:
https://developer.wordpress.org/reference/functions/the_excerpt/Forum: Fixing WordPress
In reply to: Scroll to top automaticoIt looks like the plugin you’re using for your slider is causing the problem – it’s auto-focusing on the current slide before changing to the next one.
Maybe check your Smart Slider settings and/or documentation to troubleshoot the problem?
Forum: Fixing WordPress
In reply to: Images in commentsDo you have an example URL with a comment that has an image in it? Maybe they are using the Disqus comment system?
Forum: Fixing WordPress
In reply to: Remove About the Author box and Related Posts boxTry using this CSS –
.about-the-author, .related-posts.blog { display: none; }Forum: Fixing WordPress
In reply to: Unable to login in my wordpress siteIt looks like this could potentially be a file permissions issue. Try checking your wp-login.php file to make sure it has read/execute permissions. You can usually set this via your FTP or hosting control panel. Read more here:
https://webomania.wordpress.com/2007/03/12/permission-denied-in-unknown-on-line-0/
Forum: Fixing WordPress
In reply to: Search Result: Open Specific PageHi there – I’m not sure if you have a budget for this, but it looks like this add-on for the SearchWP plugin may do what you’re looking for:
https://searchwp.com/extensions/redirects/
Likewise, you could try adding this code to your functions.php file which will redirect to the page if only one matches the search results:
add_action('template_redirect', 'single_result'); function single_result() { if (is_search()) { global $wp_query; if ($wp_query->post_count == 1) { wp_redirect( get_permalink( $wp_query->posts['0']->ID ) ); } } }Read more about the above code here: https://www.isitwp.com/redirect-to-post-when-search-query-returns-single-result/
Forum: Fixing WordPress
In reply to: Images Are Not Showing In Media LibraryHave you tried disabling all your plugins and reactivating them, yet? A lot of the time when I run into this issue, it’s after a migration and a plugin having old cached settings.
Forum: Fixing WordPress
In reply to: How to make posts bg transparent?Try adding this to your CSS:
.content-area section { background-color: transparent !important; }It should force the main content area of interior pages to a transparent background.
Forum: Fixing WordPress
In reply to: Change domaine name – Same host – Cannot enter admin areaDo you have a URL to your site, please?
Forum: Fixing WordPress
In reply to: Cannot find post in backendI think you might be looking in the wrong place. It looks like that could just be a page for a media gallery upload. Search your media gallery for arm.jpg.
Forum: Fixing WordPress
In reply to: How to make posts bg transparent?Do you have a URL to the page you’re trying to edit? It looks like you’ll just need to set the CSS of that div to background-color: transparent; or opacity: 0; but without seeing the actual page, it’s hard to say for sure what the correct code would be.