farsabbutt
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: site hacked. help please?Above you mentioned the following response when I asked to look for base_64 code in files:
I checked the child theme and genesis, just checked the inactive 2013 theme files (holy crap, there are a lot of them…)
Have you made sure to delete themes that contains base_64 strings in files and revert back to default wordpress theme (twenty twelve) ?
Forum: Fixing WordPress
In reply to: site hacked. help please?Looks Like hacker has attacked your site via MySQL Injection
Forum: Fixing WordPress
In reply to: site hacked. help please?Browse through the “Posts” table within the database, check to see if you can spot something malicious there.
Forum: Fixing WordPress
In reply to: site hacked. help please?Have you confirmed that the theme files do not contain base_64 code that might look something like:
[Code removed]Forum: Fixing WordPress
In reply to: Integrating Google SearchAh Allright, so your your search form is being generated by calling a function <?php get_search_form(); ?>
Now you should replace the following line with your google search code:
<?php get_search_form(); ?>
That should integrate google search instead of default search bar.
Note: Make sure to Make a BACKUP Before making any changes!!!!!
Forum: Fixing WordPress
In reply to: Insert info into bottom of postsYes You can make a shortcode, give the shortcode different attributes for different posts and that will work.
Forum: Fixing WordPress
In reply to: Insert info into bottom of postsYou can place the code at the bottom of the functions.php file just before closing php tag that is “?>”
If there is no closing tag “?>” then no need to worry, just paste the code at the bottom of functions.php file.
Forum: Fixing WordPress
In reply to: Insert info into bottom of postsHi Zendon,
Just copy and paste the following code into functions.php file of your theme:
// Adding custom text after posts function add_custom_text_under_posts($content){ if(is_single){ $content.= '<hr />'; // Replace the # with actual Links! $content.= '<ul>'.'<li>'.'Source: <a href="#">Battlefield Arenas</a>'.'</li>'.'<li>'.'More Coverage: <a href="#">Official Site</a>'.'</li>'.'<ul>'; return $content; } } add_filter('the_content','add_custom_text_under_posts');Forum: Fixing WordPress
In reply to: Integrating Google SearchHi Sara,
First of make a backup for your header.php file.
Go to header.php
Next find the <div> with id=”close-x”
Below it, you will see the <form>……</form> code
replace the <form> </form>code with your google search code.
Save header.php and then have a preview of your site. That should do it.
Forum: Fixing WordPress
In reply to: How to redirect a visitor to a page after he registers on my siteBecause I am need to redirect visitor to a custom page after he registers on my site not after he logs into my site.
Forum: Fixing WordPress
In reply to: How to redirect a visitor to a page after he registers on my siteI have already tried this plugin , unfortunately it did not help, Please advise any other solution