arrowoods
Forum Replies Created
-
Forum: Plugins
In reply to: I have been well and truly HackedGuys I can’t tell you how mad I was when I got all my sites hacked. I have tried about 4 different scripts to repair them until I came across this one. Just drop it in your domains root folder and then navigate to it https://www.domainname.com/cleaner-cli_2.4.php and hit return and just wait. It will take about 3 minutes or so depending on the size of your site. But it went through and cleaned the hack code off every file on my site. I have ran it 8 times now with no issues and it has gotten every file. You can find it here https://www.php-beginners.com/solve-wordpress-malware-script-attack-fix.html just scroll down and download it. I am thinking about sending this guy money for the time he has saved me. Feel free to contact me if you need help with it.
Forum: Fixing WordPress
In reply to: Linking Parent link to page.I found the solution so if anyone needs it here it is.
<?php if($post->post_parent) { $ancestors = get_post_ancestors($post->ID); $root = count($ancestors)-1; $parent = $ancestors[$root]; $parent_title = get_the_title($parent);?> <a href="<?php echo get_permalink($parent) ?>"><?php echo $parent_title;?></a> <?php } else { wp_title(''); } ?>
Forum: Fixing WordPress
In reply to: Linking to parent… HELP!!Well I found my own solution, and anyone else who needs it here it is.
<?php if($post->post_parent) { $ancestors = get_post_ancestors($post->ID); $root = count($ancestors)-1; $parent = $ancestors[$root]; $parent_title = get_the_title($parent);?> <a href="<?php echo get_permalink($parent) ?>"><?php echo $parent_title;?></a> <?php } else { wp_title(''); } ?>
Forum: Fixing WordPress
In reply to: Linking to parent… HELP!!you can view an example here. https://www.franklinchristianchurch.com/groups I want groups to be clickable and link to the groups page so when you are on child pages you can get back to it.
Forum: Everything else WordPress
In reply to: how to erase white frames ?you need to take off the border in
.home .featured.post.p2 {border-left:5px solid #FFF;border-bottom:5px solid #FFF;width:200px;}
You will see it is on every .featured.post.