Natan Gesher
Forum Replies Created
-
Forum: Plugins
In reply to: Hebrew Date and Journalized BlueJust wanted to drop by and point out that Mike Little graciously answered this for me. Here’s what he wrote:
The plugin only wraps calls to the_time() (and get_comment_date()) and adds the Hebrew date to the end. My theme uses the_date().
To fix it with my theme, you need to replace the call to the_date() with a call to the_time().
In index.php around line 14 replace
<?php the_date('','<h2>','</h2>');?>with
<h2><?php the_time('F jS, Y') ?></h2>Then in page.php at the end of line 16 replace
@ <?php the_time() ?> on <?php the_date() ?>.with
on <?php the_time('F jS, Y') ?>.Forum: Fixing WordPress
In reply to: proper permissionsThanks Michael!
Forum: Fixing WordPress
In reply to: User Level 0 by defaultYes! That’s it. Thanks a lot!
Forum: Fixing WordPress
In reply to: User Level 0 by defaultI am using a bunch of plugins: Hebrew date (unsuccessfully so far with the Journalized blue theme), Next to Last, Subscribe to Comments, Forced Word Wrapping, WP-CC, and WP-Contact Form.
I just deactivated all plugins and tried again, registering as a new user and then checking in my Admin account to see what level the new user had been assigned … User Level 1, not 0.
I feel as if I must have changed this default somewhere, but I can’t figure out where. I’m going to reactivate all my plugins now. Thanks for the idea. Anyone else know what I might have done?