junipingla
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: RSS Widget Formatting IssueI don’t know if you figured it out but you format that with the style .rss-date in your stylesheet.
Forum: Installing WordPress
In reply to: Just upgraded to 2.5.1 but still get upgrade message!Yup! Found a png.pngg in my upload folder!! Gonna check out the link now! Thank you!!
Forum: Fixing WordPress
In reply to: Sudden image uploader problem!No one?
Forum: Themes and Templates
In reply to: Image icon instead of the text “Protected”Works perfectly!
Much thanks!
Forum: Themes and Templates
In reply to: Image icon instead of the text “Protected”I will! I’ll let you know later if I got it working!
Thank you so much for being so kind to help me out! ??
Forum: Themes and Templates
In reply to: Image icon instead of the text “Protected”Forum: Themes and Templates
In reply to: Image icon instead of the text “Protected”OK, coming!
Forum: Themes and Templates
In reply to: Image icon instead of the text “Protected”I have the site under htaccess passwrd protection so here’s a printscreen:
https://fullthus.se/image.jpgForum: Themes and Templates
In reply to: Image icon instead of the text “Protected”I have a swedish language file that translate Protected to Skyddad.
When replacing “Protected” with skyddad in
return str_replace('Protected:'
I do see the image, however it looks weird:
This is a locked entry”>**the image here** This is a locked entry
Forum: Themes and Templates
In reply to: Image icon instead of the text “Protected”Yes, it’s the functions.php located in my themes folder.
I misspelled the file in my last post =)This is the entire code in that file
<?php if ( function_exists('register_sidebar') ) register_sidebar(array( 'before_widget' => '<li id="%1$s" class="widget %2$s">', 'after_widget' => '</li>', 'before_title' => '<h2 class="sidebartitle">', 'after_title' => '</h2>', )); function change_protected_to_image($title) { return str_replace('Protected:','<img src="https://my-url-and-theme/images/lock.gif" alt="Protected">', $title); } add_filter('the_title','change_protected_to_image'); ?>
Forum: Themes and Templates
In reply to: Image icon instead of the text “Protected”Otto42: Thank you so much for your reply!
I added this in my funtions.php
function change_protected_to_image($title) { return str_replace('Protected:','<img src="https://my-url-and-theme/images/lock.gif" alt="Protected">', $title); } add_filter('the_title','change_protected_to_image');
however it still says “Protected: Title
Any idea?
Forum: Fixing WordPress
In reply to: notify us of all postingsmoshu: Do I have to do anything as an admin in order to be able to be notified when contributors have posts for review?
Because I don’t get any emails about pending reviews.Forum: Fixing WordPress
In reply to: Exclude child category posts from listingThankyou!!
Forum: Plugins
In reply to: User Info – Prune Users plugin?dtc: I found this: https://www.cre8d-design.com/blog/2007/07/04/wordpress-plugin-login-logger/
Forum: Plugins
In reply to: User Info – Prune Users plugin?OK, I continue to talk to my self ??
What I’m looking for is a plugin that let me know info about the registered members on my site. Right now I have 253 registered members (readers of my site) and I would like to be able to view info about them, when they were last logged in, when they registered, how many comments they have made etc.
Maybe there’s no such plugin yet.