headsetoptions
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Attention@ Milo
The site in question is templatesbrowser.com with an “s”.
A warning is posted at the very top of my site on the home page and Mark wrote a warning post on Mandarinmusing.com, hopefully our users and visitors will take note of it.
Viktor from Arcsin brought this site into my attention prior to you writing to me, I have been on the lookout for more info but there are no leads on Alexa or WhoIs. Anyone with info about this site is requested to share it with us so that we are at least attempt to establish communication with the site owners with our concerns.
Forum: Themes and Templates
In reply to: I cant submit my theme.. please helpSame issue here, and I am the one fighting spam on WP Theme Viewer!
Your user name or IP address has been blocked by MichaelH.
The reason given is this:
Autoblocked because you share an IP address with “Boron”. Reason “link spam”.
You may contact MichaelH or one of the other administrators to discuss the block. Note that you may not use the “email this user” feature unless you have a valid email address registered in your user preferences. Your IP address is 71.19.208.22. Please include this address in any queries you make.Forum: Fixing WordPress
In reply to: Hemingway Flickr RSS IssueIt did not work, I am removing the Flickr option. Thanks.
Forum: Fixing WordPress
In reply to: Hemingway Flickr RSS IssueI have, it is the same settin gI had up while Squible was used and it worked/works.
I will try editing the php file.
Thanks
Forum: Fixing WordPress
In reply to: Hemingway Flickr RSS IssueThanks for replying.
No errors are displayed on site or on the server end, or I could not locate it.
Am I forgetting something here, do I need to employ a RSS feeder like Magpie? I think that is what is available with Squible. Let me know please.
Forum: Fixing WordPress
In reply to: Multiple WP Install SearchThat might work, it will simplify the process of searching at least.
I need some more help, this might be the wrong category to post it under, but is there a way you could limit the length of the post (say to 500 words) automatically (without using the excerpt option).
Thanks
HsoForum: Fixing WordPress
In reply to: Multiple WP Install SearchThanks erik & Sushubh for your suggestions.
I am trying to keep two topics separated – say for example: product review in page 1 (or blog 1), and editorials in page 2 (or blog 2), hence two blogs.
If I make two categories (as suggested by erik) and call it “Reviews” & “Editorials”, and start posting accordingly, how do I ensure the posts are published in two separate pages on my website?
Forum: Fixing WordPress
In reply to: Multiple WP Install SearchTwo WP install on the same database- I am guessing it is on the same database but the table prefix is different for each blog.
Can I install two WP with the same database and table prefix? Is it possible?
If so, how do make the changes to the existing blog 1 & blog 2 configuration such that they are both searchable? Thanks.
Forum: Themes and Templates
In reply to: Changing the “Comments? link to say ?“Reply? or ?“Feedback?Here is my index.php script, where do I change it. Sorry- I am not a programmer. Your help is highly appreciated.
<? <?php
get_header();
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”post”>
<div class=”data”>
<?php the_time(‘F jS, Y’) ?>
</div>
<h3 class=”storytitle” id=”post-<?php the_ID(); ?>”>” rel=”bookmark” title=”<?php the_title(); ?>”>
<?php the_title(); ?>
</h3>
<div class=”autor”>Posted by
<?php the_author() ?>
in
<?php the_category(‘, ‘) ?>
<?php edit_post_link(‘Edit’,’|’,”); ?>
</div>
<div class=”storycontent”>
<?php the_content(__(‘(more…)’)); ?>
</div>
<div class=”feedback”>
<?php wp_link_pages(); ?>
<?php comments_popup_link(__(‘0 Comments’), __(‘1 Comments’), __(‘% Comments’)); ?>
</div>
<!–
<?php trackback_rdf(); ?>
–>
</div>
<?php comments_template(); // Get wp-comments.php template ?>
<?php endwhile; else: ?><?php _e(‘Sorry, no posts matched your criteria.’); ?>
<?php endif; ?>
<?php posts_nav_link(‘ — ‘, __(‘« Previous Page’), __(‘Next Page »’)); ?>
<?php get_footer(); ?>