kiasta
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Content Formating and Paypal button not workingIn Netbeans go to Edit -> Find… (or press ctrl+f) and type in:
class="four columns"Check the match case and whole words boxes and under scope choose open projects (it would be best if you had only one project open).
Your search results should have something in it. I searched through my wordpress for several classes and then searched for that class up top and nothing showed up so it will be in your theme files. If anything just go through the files in your theme, it will be in a php file, I’m sure. As far as which one I can’t tell you without actually looking at your theme source. Perhaps ask the developer of the theme.
Forum: Fixing WordPress
In reply to: CSS Inheritance issues, please help.Man, thank you so much. I knew about the targeting but I didn’t know if that was the problem nor where the problem was. I figured it out though:
I changed this:
.main-navigation .current_page_item a, .main-navigation .current-menu-item a, .main-navigation .current-page-item a:hover, .main-navigation .current-menu-item a:hover { color: #000; color: hsla( 0, 0%, 0%, 1 ); }to this:
.main-navigation .current_page_item > a, .main-navigation .current-menu-item > a, .main-navigation .current-page-item a:hover, .main-navigation .current-menu-item a:hover { color: #000; color: hsla( 0, 0%, 0%, 1 ); }Thanks a ton for that link 🙂
Forum: Fixing WordPress
In reply to: Content Formating and Paypal button not workingWithout looking at any code, it seems like you have a <div> somewhere that looks like this:
<div class="four columns" data-scrollreveal="enter right and move 50px over 1s"> <div class="team-mem"> <div class="team-mask"> <img src="" alt="img04"> <div class="mask"></div> </div> <h6></h6> <p><span></span></p> <div class="social-team"> <ul class="team-social"> <li class="icon-team"><a href=""><i class="fa fa-envelope"></i></a></li> </ul> </div> </div> </div>You can either delete the entire <div> or delete:
<img src="" alt="img04">You will still have that mail icon hanging there so if you want to move it elsewhere you will have to style it using CSS or just comment out the entire <div> and use it later.
Something like this:
<!--<div class="four columns" data-scrollreveal="enter right and move 50px over 1s"> <div class="team-mem"> <div class="team-mask"> <img src="" alt="img04"> <div class="mask"></div> </div> <h6></h6> <p><span></span></p> <div class="social-team"> <ul class="team-social"> <li class="icon-team"><a href=""><i class="fa fa-envelope"></i></a></li> </ul> </div> </div> </div>-->Hope that helps 🙂
*EDIT* I would suggest to use an IDE like Netbeans and search for that class so you can find whatever php file it is hiding.
For your paypal you have this here:
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=F6NNE95GKV47C" class="scroll"> <div id="action"> <div class="container"> <div class="sixteen columns"> <h6>Help us make a difference!</h6> <p><small><span>Make your contribution safely through <br> <img src="https://googledrive.com/host/0B4Q3rzXGA39lcHgxdW80MEw2T1E/" alt="PayPal - The safer, easier way to pay online!" height="110" width="192"></span></small></p> </div> </div> </div> </a>You need to have it something like this:
<div id="action"> <div class="container"> <div class="sixteen columns"> <h6>Help us make a difference!</h6> <p><small><span>Make your contribution safely through <br> <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=F6NNE95GKV47C" class="scroll"><img src="https://googledrive.com/host/0B4Q3rzXGA39lcHgxdW80MEw2T1E/" alt="PayPal - The safer, easier way to pay online!" height="110" width="192"></a></span></small></p> </div> </div> </div>Try it and let me know.
Forum: Fixing WordPress
In reply to: I think I've Been Hacked – Now WhatYou should choose a password that is long and alpha-numeric with symbols like “H@ckTh!sP@$$w0rd” (obviously, don’t use that). Second, disable registration, unless you want it enabled for some reason. Third, get a decent firewall plugin and hide the wp-admin/login.php, change permissions for remote directories and files. Another thing is backup frequently, so you can just restore when something drastic happens. Another very important thing is disable the ability to modify code within wordpress; basically disable the code editor. That way, unless the “hacker” has ftp access they will not be able to modify your code.
CHANGE ALL YOUR PASSWORDS ASAP: FTP, MYSQL, WORDPRESS; CHANGE EVERYTHING.
I have 2 versions of my website: I run one in a local environment using WAMP and develop with that; and have one on my remote server, which I upload to when I finalize changes. Which is great practice because then you can just import/export as needed and won’t have much of a loss.
How to do those things is a simple google search, since a multitude of links annoys you, I’ll let you figure the rest out.
*EDIT*
If you don’t have a lot of modified code there are some plugins that will scan your wordpress files against the vanilla files and will display every piece of code that has changed. In plugins search for security, there will be a ton of security plugins. Wordfence Security is good, All in one WP Security&Firewall is good. Or try something else. Choose what seems best for you.