e_baker
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Transfer WP from directory to public_htmlHey @simplyadmin01,
Most likely you’ll need to do a scrub of the database to replace the directory you currently have it in (source) with the directory you want it in (destination). My personal favorite for this task is the Search/Replace tool by interconnect/it – https://interconnectit.com/products/search-and-replace-for-wordpress-databases/
Forum: Fixing WordPress
In reply to: Random dot on home pageHey @spambuster,
It looks like it’s being inserted in the Hero section of your theme/page. If you don’t ever want an h5 element to show up there (what the period is in), you could add some custom CSS like below to make it disappear.
section#hero article.content h5 { display: none; }
Forum: Fixing WordPress
In reply to: Changing footer logo size on mobile devicecsHey @thelittlewhildone,
You can use a CSS media query to make that that happen. Just use something like below:
@media screen and (max-with:768px) { #footer .site-logo img { width: 100%; } }
Forum: Plugins
In reply to: [Advanced Editor Tools] Potential hacking threatHey @froddis,
In the release post for version 4.9.1, it specifically says “WordPress versions 4.9 and earlier are affected by four security issues which could potentially be exploited as part of a multi-vector attack.”
You will want to make sure each of your installations is running the most recent version.
Forum: Fixing WordPress
In reply to: Stylesheet.css error while uploading a wordpress themeThis is not a WordPress theme. It’s just an HTML5/CSS/JS website template. You’ll want to find one specifically for WordPress.
Forum: Fixing WordPress
In reply to: Removing Posts from Static Home Page for Ixion ThemeThis is better asked in the Ixion forums: https://www.ads-software.com/support/theme/ixion
Forum: Fixing WordPress
In reply to: Stylesheet.css error while uploading a wordpress themeWe need more information on what error you’re getting.
Forum: Fixing WordPress
In reply to: Password Contains Minimum of 8 CharacterAre you asking how to make it “throw” an error with a weak password?
Forum: Fixing WordPress
In reply to: Password Reset not workingMost likely this is a problem with the email configuration through php with your hosting server. If you have database access you could reset it that way.
Forum: Themes and Templates
In reply to: [Hueman] change only copyright color.My solution is the whole solution when not given the URL. I do not place a paragraph element inside of a div if the only thing it is going to contain is a string of text.
knowing your URL and being able to look at your site, you have the ability to do two things. You can either add the p to make the css selector more specific as @bdbrown did in the post above, or you can use the CSS in my example and remove the paragraph tag. The choice is yours – either will do what you want.
Forum: Themes and Templates
In reply to: [Scratchpad] Can I remove google fontLoading that is only taking 36ms on average for me and you are using Lato & Kalam throughout the style sheets. IMO, it’s not going to change your loading speed enough to change. Just my two cents…
Forum: Themes and Templates
In reply to: [Scratchpad] Can I remove google fontI’ll need the answer to the question about whether you are utilizing the font Lato… Can you post the URL to your site? I can look at it that way to see if appears you are using it or not.
Forum: Themes and Templates
In reply to: [Hueman] change only copyright color.Hey @marlem, if you know the div class/id for the copyright notice for your theme, you can use code similar to the below example:
#copyright { color: #fff; }
[Moderator note: code fixed. Please wrap code in the backtick character or use the code button.]
This would only change the copyright text in an element with the ID of copyright, however. If you want to give us the URL for your site, we can help a little better.
- This reply was modified 7 years, 11 months ago by bdbrown.
Forum: Themes and Templates
In reply to: [Scratchpad] Can I remove google fontHey @arvindsinghu, are you utilizing this font within the theme? If you’re not using the font, then you can safely remove the reference to that resource.
Forum: Plugins
In reply to: Plugin throws intermittent fatal error on activationI’m not sure what it was causing this as I found the section causing the issue, stepped through the code adding it through line-by-line and it is working now.