NetViper Interactive

Web Design, SEO, PPC

 
Call Us Today 904.209.6933
 
← Older posts

Google says SEO is not SPAM

Posted on by netviper

Well, it’s official. Matt Cutts, the head of Google’s Web spam team, says that SEO (Search Engine Optimization) is not spam. This is not a big surprise to many of use that have been in the industry a lot time, but it helps justify what we do to clients who are not really sure if SEO is the right thing to do.

Keep in mind that he is talking about White-hat techniques, quality links and quality content. This is the strategy NetViper Interactive Inc uses to help rank your website at the top of the search engines.

Posted in Search Engine Optmization | Leave a comment

WP-Admin goes blank

Posted on by netviper

This can be a serious problem and mean one of your plugins has caused a lot of problems with your site. It is a scary experience when you cannot log in to your own site.

That being said, try this first.

Look at your functions.php file and find any empty spaces at the top or bottom. Remove those spaces and re-upload functions.php. That may solve your problem and save you a TON of time and grey hair!

Posted in Wordpress | Leave a comment

Disable WordPress Auto Formatting

Posted on by netviper

Sometimes WordPress can be extremely annoying with the Auto Formatting. Often it will add a

or a
where you don’t want one and it will totally mess up the look of your page. Do how do we fix this?

There are a couple of options.

1. You can get a plug-in to disable the auto formatting completely. Such as this one. PS Disable Auto Formatting. The downside to this plug in is that it kills the auto formatting fro your entire site, which might mess up a lot of page you have already finished with

2. Another option — and a better option — is to create a custom field that will allow you to disable the auto formatting only on the pages you want to disable it.

I learned this trick here

So in this method we edit our functions.php to include the following:

1
2
3
4
5
6
7
8
function WP_auto_formatting($content) {
    global $post;
    if(get_post_meta($post->ID, 'disable_auto_formatting', true) == 1) {
        remove_filter('the_content', 'wpautop');
    }
    return $content;
}
add_filter( "the_content", "WP_auto_formatting", 1 );

Now we are able to set a custom field of “disable_auto_formatting” and give it a value of 1. This will disable the auto formatting on that page only.

Very sweet. WP 3.21 compatible.

Posted in Wordpress | Leave a comment

test4

Posted on by netviper

test 4

Posted in Uncategorized | Leave a comment

test3

Posted on by netviper

for facebook

Posted in Wordpress | Leave a comment

test for facebook

Posted on by netviper

this is a test

Posted in Uncategorized | Leave a comment

testing facebook feed

Posted on by netviper Posted in Uncategorized | Leave a comment

New Site launched

Posted on by netviper

This is the newest version of NetViper Interactive.com. We have removed the Powerpoint services and LeadViper Craigslist program. We will launch a new site for that program on its own. Please send us your feedback for the new site design.

Posted in Wordpress | Leave a comment

Starting on Version 4.0 of the…

Posted on by netviper

Starting on Version 4.0 of the website

Posted in Wordpress | Tagged , , , , | Leave a comment

Removing “Allowed Tags” on the comment form.

Posted on by netviper

This solution is from the wordpress forums from Emsi.  It is not guaranteed to work on all themes, but it did work fine for me on my theme based on twenty ten.

Follows these steps:

1. back up your functions.php file.

2. Add the following to your functions.php file
function my_comment_form_args($user_identity, $post_id, $req) {
$args = array(
‘comment_notes_after’ => ”
);
return $args;
}
3. then replace <?php comment_form();?> with <?php comment_form( my_comment_form_args($user_identity, $post->ID, $req) ); ?> in your comments.php file. That should be the last line.

Thats it.

To see the full thread, visit http://wordpress.org/support/topic/solved-allowed-tags-in-comment-form

Posted in Wordpress | Leave a comment ← Older posts