Search results

  1. D

    Error in Google Structured Data

    Hi, Basically, you just need to add a few classes to selected elements in the Theme Editor. A few links that may help: How to fix ?missing required fields? warnings in Rich Snippets Testing Tool | Technical Notes How to Fix ? hfeed Warning: At least one field must be set for HatomEntry...
  2. D

    how to make a flesearch engine

    That's not a one-day job. You will need to create a crawler that downloads webpages, analyzes the links, and adds the filehost links to a database. Furthermore, you will need a frontend for the visitors, and possibly a backend too for easier administration.
  3. D

    scRLS - A Minimal Wordpress Theme (Coded Giveaway Soon)

    It kinda looks like a "blank" WP template, too empty, nothing special. Nonetheless, it may be good as a starting point for a theme.
  4. D

    PHP coder needed

    Sure, send me the details in a PM.
  5. D

    PHP coder needed

    In a .js you can't. You can insert the js code/link into the IF statement in a PHP file: <?php $words = array('word', 'another', 'third', 'etc'); $regex = '/(' . implode('|', $words) . ')/'; if (preg_match($regex, $_SERVER['HTTP_REFERER']) === 1) { // restriced word found, do nothing } else {...
  6. D

    PHP coder needed

    $words = array('word', 'another', 'third', 'etc'); $regex = '/(' . implode('|', $words) . ')/'; // '/(word|another|third|etc)/' if (preg_match($regex, $_SERVER['HTTP_REFERER']) === 1) { // restriced word found } else { // restricted word not found, do stuff } Just keep in mind that
  7. D

    What is Cloaking?

    Man, did you even take a look at the opening post? :facepalm:
  8. D

    HTML does not really work when Load content dynamically is on

    Hi, &8211; is the ASCII code for the dash character. Try this code: function cleanWPMess($content) { $content = str_replace(array("–"), "-", $content); return $content; } add_filter('the_title', 'cleanWPMess'); add_filter('the_content', 'cleanWPMess'); add_filter('the_excerpt'...
  9. D

    Shared Trusted Shared Host Wanted

    I'm also looking for a decent shared hosting for a new project. Should allow warez linking and must be at least 6 months old. Price doesn't really matter. I've already tried altushost and daringhost but didn't have a good experience with them.
  10. D

    Blog Editing

    Try adding it to your theme's footer.php file, before the closing </body> tag.
  11. D

    " />" /> Tag in header, how to remove?

    And the code is probably in header.php file.
  12. D

    Need help with .htaccess and 301 Redirect

    (.*) Period means any character, and the asterisk means 0 or more times, the parantheses is to capture that part, to reinsert it later with $1. I'm not sure what is causing the errors. Try putting the line right after RewriteBase /.
  13. D

    Need help with .htaccess and 301 Redirect

    RewriteRule ^reviews/(.*)\.php$ http://example.com/$1/ [R=301,L]
  14. D

    Need help with .htaccess and 301 Redirect

    This should do it: # BEGIN WordPress<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^reviews/(.*)$ http://example.com/$1 [R=301,L] RewriteRule . /index.php [L] </IfModule>...
  15. D

    Google Adsence on A proxy site ?

    It's possible... until Google finds out and bans them.
  16. D

    How to create a online storage host ?

    1. Spend some money on a good script & servers. 2. ?????? 3. PROFIT!!!
  17. D

    Black Hat SEO Techniques 2013

    Why "2013" in the title? This just looks like a copy pasted definition of black hat from another site, nothing to do with the latest techniques.
  18. D

    Automatically inserting tags

    It's also possible with jQuery or with a Wordpress filter. Just saying.
  19. D

    Upgrade Errors

    I don't like the new icons on the left of the threads.
  20. D

    Fix/improve/customize Wordpress site

    Not really, no examples that I can show off to the public. But anyone can search my previous posts and see that I'm helping out WP owners for free since months. Also, I won't ask for money in advance. You pay only if you get what you wanted.
Back
Top