Pyrate.Ned
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Viagra Hack On My WebsiteLike I said its all good everyone is just trying to help. Hopefully he can find it and remove it.
Forum: Fixing WordPress
In reply to: Bold Texts from Posts do not show up bold on websiteCan you point me to a page with the bold and italics text.
Forum: Fixing WordPress
In reply to: Viagra Hack On My WebsiteI would have to disagree with you as I copied the link and text from this site and encoded it, meaning the encoded part would be the exact code on his site if it was the problem and would not vary in this case. Yes base64 does has some legitimate uses and I never said do a search and remove every base64_decode code on this site.
Forum: Fixing WordPress
In reply to: Viagra Hack On My WebsiteJust trying to help and don’t really see how posting the code which he may need to find and remove from his site to remove the hack is meaningless. It’s all good like I said just trying to help.
Forum: Fixing WordPress
In reply to: WordPress doesn't understand HTMLWell the HTML editor add the
<p>
tags automatically, by default anything inside the HTML editor that is not a h1-h6, ol or ul become p. Second I believe you can just hold down shift and hit enter to make a line break in the text.Forum: Fixing WordPress
In reply to: WordPress Blog Links Not WorkingWell the link points to https://www.itechcode.com/2014/08/08/housing-app/ but when you go there its a blank untitle page. What happens in the backend when you go to the post and hit view page?
Forum: Fixing WordPress
In reply to: Viagra Hack On My WebsiteDo a search on your site for base base64_decode, if you find something like
<?php $str = 'PGEgaH
[code moderated - don't post hacking code in these forums]
T4='; echo base64_decode($str); ?>
Forum: Fixing WordPress
In reply to: Every First Word Is Capitalized in PostIn your style.css line 495 you have this code for the p tags
.video-txt p {
color: #000000;
display: block;
font-family: Arial, Helvetica, sans-serif;
font-size: 15px;
text-transform: capitalize;
padding: 2px 0;
}text-transform: capitalize is causing it, just remove that one line of code and you should be good
Forum: Fixing WordPress
In reply to: wordpress oops google chrome could not findIt can take up to 48 hours.
Forum: Fixing WordPress
In reply to: wordpress oops google chrome could not findOk just making sure, looks like a DNS problem. Either your DNS is pointing to the wrong place or the place its pointing to does not exist or is down. Go here and put your site address in. NSLookup fails and DNS records
query for https://www.audioconcepts.com.au returned an error from the server: NameError. I would contact your host which appears to be hostgator and see if they can help you out.Forum: Fixing WordPress
In reply to: PayPal Drop Down Button Breaks after HTML editjust for giggles try removing all spaces between each option tag and see if that fixes it.
<select name=”os0″><option value=”Entry Fee Only”>Entry Fee Only $26.00 USD</option><option value=”Entry & Gross Skins”>Entry & Gross Skins $36.00 USD</option><option value=”Entry & Net Skins”>Entry & Net Skins $36.00 USD</option><option value=”Entry & Both Skins”>Entry & Both Skins $47.00 USD</option></select>
Forum: Fixing WordPress
In reply to: wordpress oops google chrome could not findthat url does not look right to me is it https://www.audioconcepts.com.au/ or is it https://www.audioconcepts.com/ ?
Forum: Fixing WordPress
In reply to: repeating warnings showing up in logurl to your site?
Forum: Fixing WordPress
In reply to: Drop down menuHello aprilfiske,
Here is what I found, there is javascript firing when you enter “mouseover or mouseenter” over a nav button. It keeps firing and doesn’t stop and is erroring out. Which is why once you have hovered over any nav links your drop down menu stops working. Start looking in your javascript for mouseover or mouseenter on your nav classes and id’s, every anchor link in the code below sets off the bad javascript<ul class="nav superfish sf-js-enabled" id="animate"> <li class="page_item"><a href="https://aprilfiske.com" style="background-position: 0px 0px;">Home</a></li> <li class="page_item page-item-5"><a href="https://aprilfiske.com/resume/" style="background-position: 0px 0px;">Resume</a></li> <li class="page_item page-item-14"><a href="https://aprilfiske.com/demo-reel/" style="background-position: 0px 0px;">Videos</a></li> <li class="page_item page-item-20"><a href="https://aprilfiske.com/contact-info/" style="background-position: 0px 0px;">Contact Info</a></li> </ul>
Forum: Fixing WordPress
In reply to: Syntax Error that I need help withThat is a php code error, did you manually edit admin-hooks.php?