RahulB
Forum Replies Created
-
Facing the same issue.
Forum: Plugins
In reply to: [Custom Contact Forms] Not Displaying Check Boxes in the FormAttach one field option to the field. The checkbox should show.
Check
http://wordpress.org/support/topic/plugin-custom-contact-forms-checkbox-not-appearing?replies=4Instead of using the latest version of W3TC, I used a version previous to the latest. That worked.
Hi,
Let me give some details of my setup.I have the images in a separate folder outside of the wordpress install.
The wordpress app is not the default app i.e. / is not served from wordpress, currently /wp is served by wordpress.
The image path is relative to the root i.e. /static/img/a1.jpgThe issue I guess is that the plugin does not seen to able to get the image. The image is served properly when we view any post. But the featured image does not get set. What could be the reason for the behaviour? Any remedies? I have thousands of posts and setting featured images for each of the post would be quite tedious.
-Rahul Baji
Forum: Themes and Templates
In reply to: Custom Taxonomy Template TagTill we get an equivalent, may be you can do
strip_tags(get_the_term_list($post->ID,'people'));
HTH
– RahulForum: Themes and Templates
In reply to: remove redundant page title in ThematicHi,
But the thematic_postheader_posttitle is meant to provide tweaking of the post title.
I have not tried this code. But it should work if you add it to your functions.php in the child theme.
function remove_postheader_posttitle($title){
return ('');
}
add_filter('thematic_postheader_posttitle','remove_postheader_posttitle');
– Rahul
Forum: Fixing WordPress
In reply to: Cookie leads to 502 Bad Gateway errorI am getting the same error. It’s really frustrating!
I have a wordpress 2.9.1 install.
Anybody else get similar issues?
Stay Well,
RahulForum: Plugins
In reply to: [Plugin: Co-Authors Plus] Post Links as an arrayIt seems that get_the_coauthor_meta() has not been implemented in the plugin as yet.
Also there is no get_coauthor_posts_link that does not echo.To work around that, I did get_coauthors() to get an array of user objects. We can use the array of user objects to do whatever we wish to implement.
Hope that will be useful to somebody who faced the same problems that I did.
Forum: Plugins
In reply to: [Plugin: Query Posts] v 2.9 get the image not keeping in checkboxHi,
The new versions see,s to have solved the instance problems.
Thank you.
-Rahul
Forum: Plugins
In reply to: [Plugin: Query Posts] v 2.9 get the image not keeping in checkboxI guess my issue is related to this issue.
The same thing happens for my “wp_reset_query” checkbox.
Only my first instance of the “query post” widget allows me to reset the query back to original. All further instances of the widget “wp_reset_query” gets unchecked on save of the widget.This completely messes up my query and does not show the posts as per original query [e.g. home page should list latest post but lists posts in a category]
Please investigate
-Rahul