MAzCastro
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Remove Comment Timestamp Link in Kubrick ThemeThe KISS method:
Add this bit to your style.css (bellow line 296 eg.)
.postmetadata { display:none; }
This will make all that paragraph disapear. As the name suggests its Simple & Stupid, but it works.
MAC ??
Forum: Themes and Templates
In reply to: Expandable post box…where to put the loop, postmetadata, etc.?Jam (cousin) ?? show us the markup, please.
MAC ??
Forum: Themes and Templates
In reply to: Respond to comments problemNow I feel stupid.
This is native to WP. But since I had never thought about it I wasn’t coding it in my themes.
Dahhhhh.
MAC ??
Forum: Themes and Templates
In reply to: Respond to comments problemWell I found a couple of plugins that do it (more or less).
I also found out my “problem” has a name: “Threaded comments” but I’m still not fully convinced.
What I need it’s something really simple like aplying a class to a comment if it is a reply, and place that reply bellow the replyed comment. No other options or extra mambo-jambo required.
Guess i’ll try to code my own plugin.
MAC ??
Forum: Themes and Templates
In reply to: Respond to comments problemSorry I mean “Reply to a comment”.
So in the previous post everytime I say “Respond”, I actualy mean “Reply”
Forum: Themes and Templates
In reply to: Internet Explorer problemsPbosten is right.
But, hrum, the “respond to comments” in the wp-admin doesn’t work in IE either!
MAC ??
Forum: Themes and Templates
In reply to: PHP Error about missing LoadingAnimation.gifIf they are what I think, they are probably the same, or very similar in function. So the easy way to fix it, is by uploading the same gif with the name you need.
copy “loading.gif”, rename it to “loadingAnimation.gif” and upload it.
This is the way I’d do it to get it fixed in an emergency, but this is hardly the proper way to fix it permanently!
MAC ??
Forum: Themes and Templates
In reply to: wp mail functionI’ve hade similar issues and i’ve mannaged to fix them with this hack, that replaces the word WORDPRESS by the website’s URL:
goto wp-includes/pluggable.php
goto line 351
Find:if ( !isset( $from_name ) ) { $from_name = 'WordPress'; }
Replace with:
if ( !isset( $from_name ) ) { $from_name = $sitename = strtolower( $_SERVER['SERVER_NAME'] ); }
It might not be the perfect way to do it, but at least solves the problem.
Perhaps someone reads this and provides a better solution helping us both ??
MAC ??
Forum: Fixing WordPress
In reply to: Admin login failure – helpHi guys.
@alism I’ ve checked them all, and my client doesn’t have admin level and cannot install plugins. So nothing from the inside.
A Hack maybe. The host (godaddy) has been under attack latelly. I’ve had some non-wp sites hacked not long ago.
@shane G I’ve read the article, and there are some simple issues I will try, but I have to do it in a low trafic schedule cause I need to deal with DNS to get the site up again.
As an alternmative, I’ve backedup the old DB, created a new one dumped the SQl file in it and run fresh instalation of wp in another directory, pointed DNS and I have a “New” site running.
But since the main plugin on the website (a virtual e-shop), that took me months to adapt, was working under an old wp-version, now with the updated wp version it runs with some errors and my client is a bit annoyed cause Christmas is near…
I kept the original version online, hoping I can find a solution, and be hable to login again.
Sorry for my not-so-good english, but my native language is Portuguese.
Thank you all!
MAC ??
Forum: Themes and Templates
In reply to: alter the_permalink() outputI had a similar problem and this post helped me fixing it.
Thanks!
MAC ??
Forum: Plugins
In reply to: Passing template tags trough a form – problemResolved!
Silly me. This is the correct syntax I should have be using:
<input type="hidden" name="articleURL" value="' . get_permalink() .'" />
And it’s done.
MAC ??
Forum: Fixing WordPress
In reply to: Admin login failure – helpI’ve tryed everything, even the “Emergency Password Reset Script”
And nothing.I still can’t access the admin. This just doesn′t make sense.
Forum: Fixing WordPress
In reply to: Admin login failure – helpOne other thing
I have allready changed the password via PHPMyAdmin, similar to the process described in this post https://codex.www.ads-software.com/Resetting_Your_Password
but it still doesn’t work.
MAC
Forum: Themes and Templates
In reply to: User Selected Header Images?
Forum: Plugins
In reply to: Plugin development helpapljdi So simple, so perfect!
One word: Thanks!
MAC ??