another-webmaster
Forum Replies Created
-
Forum: Plugins
In reply to: How do you turn off image link in CataBlog?Hi Kevalin
I assume you have add/imported the image through your library into the page?!
<a href="http://yoursite/yourimage.png"><img src="http://yoursite/yourimage.png" alt="description img" title="blabla" width="**" height="**" class="whatever" /></a>If so, remove the following (go into html edit mode):
<a href="http://yoursite/yourimage.png">and the
</a>Should be okay now.
Hi
I think it is a typo, because of following info:Requires WordPress Version: 3.0 or higher
Compatible up to: 2.3.1
Last Updated: 2011-8-11 <= also seems it is kinda new 🙂Forum: Themes and Templates
In reply to: Different post styles.Maybe this plugin will help you (if you want to work with a plugin), works great btw.
Select different templates for posts with this plugin
Else you could try using following, here they explain/show how to do without a plugin.
Custom Post Templates in WordPress without using a plugin
I hope this helps you.Forum: Plugins
In reply to: [Custom Login] [Plugin: Custom Login] Frosty Network Feeds on Dashboard?@austin
You are absolutely right, great code shouldn’t be touched!
(They should close this topic or?)Forum: Plugins
In reply to: [Custom Login] [Plugin: Custom Login] Frosty Network Feeds on Dashboard?Although plugin is nice Austin! I also can’t stand unwanted commercials.
Wipe following 2 lines in the file: custom-login.php to get rid of the unwanted “commercial” in your dashboard.
Following code lines are responsible for it: 42/43if ( custom_login_get_setting( 'hide_dashboard' ) != true ) require_once( CUSTOM_LOGIN_ADMIN . 'dashboard.php' );cheers
Forum: Fixing WordPress
In reply to: adding number of views to blog post@webguync
Just installed that plugin here also, I have add the suggestion Esmi made in single.php in a div
<div>Total views <?php echo_post_views(get_the_ID());?> </div>
Give the div some id or class if needed. I placed it just before<div class="rss">and it works like a charm here.
I hope it helps you a little.Note: maybe it needs also same line in page.php if you want it also overthere.
Update:
As soon I deactivate the plugin I also get same error as you have!
After activating it again the error is gone..so (imho) the plugin is not flawless..but works.
Seems error because it is not compatible with WP 3.2.1?Forum: Themes and Templates
In reply to: [Desk Mess Mirrored] Post comment txt line is …Thank you for your fast reply mchelles.
I went through named file mentioned by you, there was imho no “spot” to solve the problem.
What I did was adding line 1535 in comment-template.php which I found in folder wp-includes.
Line 1535 ->'must_log_in' => '<p class="must-log-in">'had the “problem” as mentioned by me.
Thank you for responding, it helped me to look/search better then I did before.
If I am totally incorrect then please don’t hesitate to respond again.