ashifttech
Forum Replies Created
-
Forum: Meetups
In reply to: Boise, Idaho – General Web Design SEO QandAHey DJ
I would love to come to the event. I have attended the Facebook invite. My business partner Jon and I will be there.
We are looking forward to it.
Shawn
Forum: Themes and Templates
In reply to: Install HTML version of WordPressI bought this theme on themeforest https://themeforest.net/item/shiny-business-theme/180556. I dont think its a wordpress theme, maybe some smart person can help me.
Forum: Fixing WordPress
In reply to: edit header.phpWould you be willing to setup a username and password and I could check it out for you
Forum: Developing with WordPress
In reply to: Word Press Combined With Ecommerce-Is It Secure?MAGENTO!!
Forum: Themes and Templates
In reply to: Custom Menu ProblemWhat version of WordPress are you using?
Forum: Fixing WordPress
In reply to: How to add nofollow manuallyCore code meaning anything inside a .php file. so Yes
Forum: Themes and Templates
In reply to: failure in uploading background and header imagesTry using the flash uploader instead of the browser uploader
Forum: Fixing WordPress
In reply to: Can't log in to my wordpress adminI would clear your browser cache, maybe install Google Chrome and try it on that browser. Its working fine for me.
Forum: Themes and Templates
In reply to: Unwanted space above Bannerin your style sheet (style.css) change this
#branding { margin-top: -10px; }
to this
#branding { margin-top: -40px; }
Forum: Fixing WordPress
In reply to: Can't log in to my wordpress adminForum: Fixing WordPress
In reply to: How to add nofollow manuallyYes that is a good point to make
Forum: Fixing WordPress
In reply to: How to add nofollow manuallyOne solution would be to add a nofollow checkbox. This is actually very easy, given the javascript code. Just add this to edit-link-form.php, around line 113:
<tr> <th scope="row"> <?php _e('following') ?> </th> <td> <label for="follow"> <input class="valinp" type="checkbox" name="follow" value="nofollow" id="nofollow" <?php xfn_check('follow', 'nofollow'); ?> /> <?php _e('nofollow') ?></label> </td> </tr>
[Please post code snippets between backticks or use the code button.]
Voila. Checkbox produces nofollow code.
Forum: Fixing WordPress
In reply to: Meta tags – How to make a page unsearchableHello,
User-agent: *
Disallow: /With the above declared, all robots (indicated by “*”) are instructed to not index any of your pages (indicated by “/”). Most likely not what you want, but you get the idea.
The following disallows all search engines and robots from crawling select directories and pages:
User-agent: *
Disallow: /cgi-bin/
Disallow: /privatedir/
Disallow: /tutorials/blank.htmIf you would like to allow everything then your robots.txt should look like the following:
User-agent: *
Disallow:Hope this helps