April 27, 2012 at 2:53 AM
—
Website Sorcery
I've been using dtSearch to create an index of documents for a website, when I noticed the search text wasn't being highlighted in Adobe Reader like it used to with prior versions. I investigated further, and it appears Adobe decided to disable Hit Highlighting by default when it released Abobe Reader 9. This isn't ideal for me, as would mean all the users of the website would need to enable this feature in Adobe Reader.
I'm currently looking for a better solution, but for now this is how you enable hit highlighting in Adobe Reader 9:
- Go to Edit -> Preferences.
- Select Search in the Categories section.
- Check the box to Enable search highlights from external highlight server.
- Click OK.
If you're using
Adobe Reader X then things are different once again. For this you need to download a plugin from the
dtSearch website.
April 24, 2012 at 2:14 AM
—
Website Sorcery
For those of you using the Twenty Eleven theme for WordPress and wish to remove the "Proudly powered by WordPress" link in the footer, then this is how:
- In the admin panel, select Appearance -> Editor.
- Select footer.php from the Templates column.
- Search for the div with the class id site-generator (<div id="site-generator">) and remove the following code:
<?php do_action( 'twentyeleven_credits' ); ?>
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'twentyeleven' ) ); ?>" title="<?php esc_attr_e( 'Semantic Personal Publishing Platform', 'twentyeleven' ); ?>" rel="generator"><?php printf( __( 'Proudly powered by %s', 'twentyeleven' ), 'WordPress' ); ?></a>
- Click the Update File button.
Job done!
If this has helped you, please take the time to like/share this page. Thanks.