kanika
Forum Replies Created
-
Forum: Plugins
In reply to: Reset Password functionality not workingHi,
I made code level changes in
wp-content/themes/twentyeleven/email.php
$headers = "MIME-Version: 1.0\r\n"; $headers .= "Content-type: text/html; charset=iso-8859-1\r\n"; $headers .= "From: example <"; $headers .= $email; $headers .= ">\r\n"; $headers .= "BCC:"; $headers .= $emailBcc; $headers .= "\r\n";
It worked ??
Forum: Fixing WordPress
In reply to: Category Archive CustomizationThanks for the solution provided. The link for the codex reference was also helpful.
Thanks,
KanikaForum: Fixing WordPress
In reply to: two different mails from the same sendmailThank you,
the code above works.
Forum: Hacks
In reply to: Check if key for post_meta for a post existsHey Thanks,
Its done.
I used,
foreach( $inspirations as $inspiration ){ $photoVar = get_post_meta($inspiration->ID,'photo'); if (! empty( $photoVar ))
Guess it was a php question, not a wordpress problem.
Thanks,
Kanika.Forum: Fixing WordPress
In reply to: two different mails from the same sendmailBy the way I forgot to add that i had tried editing this file and changing the from header
From: XYZ<[email protected]>\r\n
It didnt work.
I had thought that the from name header would be different bit apparently it isnt.
As far as the problem is concerned, i dont know how big or small it is. If u wish, you can make fun of that one. ??thanks,
Kanika.Forum: Plugins
In reply to: Reset Password functionality not workingbecause of this plugin, mails stoped coming altogether!
Forum: Fixing WordPress
In reply to: Category Archive CustomizationThe second solution for all posts worked. But the pagination still isn’t working( i.e. the first doln didn’t work for me)
If there is anything I can do about it, please tell me. My category archives sometimes look horrible when the reader has to scroll down too much.
Another related question: The next post and previous post links can be customized to show the next post from that category only? Presently they show the next post according to date without caring about the category…
Wanted to modify the category template a bit, bi uses
get_template_part instead of a straight loop, so don’t know how to do this…Forum: Fixing WordPress
In reply to: Media Library problem after modifying functions.php and pluginsSorry! The problem: The media library does not upload any pics thereafter and I need to :
first upload through ftp and then change the file permissions.
Forum: Fixing WordPress
In reply to: set multiple values for a single parameter in get_postsOh, ok. Thought it could be clubbed into one.
Forum: Fixing WordPress
In reply to: set multiple values for a single parameter in get_postsOrdering by Date has temporarily solved the problem. (Per chance) But i’d still like to get an answer to this one.
Thanks,
Kanika.Forum: Fixing WordPress
In reply to: set multiple values for a single parameter in get_postsThanks,
That helped a lot! What worked for me was:
//...code 'meta_query' => array( 'relation' => 'OR', array( //code ), array( //code ) )
as given on the link u provided.
I just have one more question. If I want to override the order_by according to the ‘meta_value’ parameter? As in, first we have all posts with meta_value ‘XYZ’ and then with ‘ABC’
Thanks,
Kanika.Forum: Fixing WordPress
In reply to: set multiple values for a single parameter in get_postsIt could help if the parameter could negated as in
meta_value <anything but> ‘Live’
Is it possible?
Thanks,
Kanika.Forum: Localhost Installs
In reply to: Trying to install wordpress locally on WAMPOk I got the problem….
The DB_USER should be root for local settings.
But now I have another problem:
I’m still not getting the index page. It gives a blank screen.
Forum: Themes and Templates
In reply to: CSS file not listed in admin interfacePlease note: The site is on one of our own servers so we don’t have a cPanel type arrangement as given by some third party hosts…
Forum: Themes and Templates
In reply to: CSS file not listed in admin interfaceHey!
Thanks for the prompt reply.
So this means, that if a file is not showing up in the admin interface, then there is no way(a plugin perhaps) to list all files there open them in on-line editor?
Right now, for all such files, we have to use the FTP method. So I needed a better way to do this.Thanks again.