| bio | website | gplus.to/maxyudin |
|---|---|---|
| location | Riga, Latvia | |
| age | ||
| visits | member for | 1 year, 5 months |
| seen | May 8 at 11:48 | |
| stats | profile views | 70 |
|
Mar 28 |
comment |
Create custom field key upon theme activation See Is there a way to set default custom fields when creating a post?. |
|
Mar 28 |
comment |
Combine get_post_meta conditional statements? Change || to &&. || means 'OR' and && means 'AND'. |
|
Mar 28 |
comment |
child pages are not ordering correctly? Duplicate: Custom Post Type, WP_Query and 'orderby' |
|
Mar 27 |
comment |
Display Posts Query with IF function What is the types_render_field() function? Where it goes from? |
|
Mar 27 |
comment |
How do I allow certain users to make a certain type of post? In addition to vancoder's comment I advice to read the perfect explanation of meta capabilities by Justin Tadlock: Meta capabilities for custom post types. |
|
Mar 27 |
comment |
Prevent redirect wp-login when custom login fails Do you use wp_login_form()? Where your login form goes from? |
|
Mar 27 |
comment |
Prevent redirect wp-login when custom login fails Please enable debug and paste it's output here (as I can see you still include /wp-includes/registration.php which is deprecated since WP 3.1). |
|
Mar 27 |
comment |
Prevent redirect wp-login when custom login fails Check for is_wp_error($user_verify) and show an error message if false. One line is not enough, please show more code. |
|
Mar 21 |
comment |
Removing hierarchical pages in the permalink Is there any reason to do this? From SEO point of view it could be the plus. example.com/Kodak/Kodak-1234/ is OK. Can you precise, please? |
|
Mar 21 |
comment |
Custom post types and custom taxonomy posts are not showing Here is how it's have to look like: pastebin.com/tWuDqfiV Please edit yours. |
|
Mar 21 |
comment |
Custom post types and custom taxonomy posts are not showing What is the function post_class? |
|
Mar 21 |
comment |
Custom post types and custom taxonomy posts are not showing Can you get rid of any HTML? Just make a plain text template. You'll see where the bug is. |
|
Mar 21 |
comment |
Custom post types and custom taxonomy posts are not showing Do we need to follow all these <div>-s to understand? Can you make your question more compact to follow your thoughts? |
|
Mar 21 |
comment |
After added two section to theme options, I can't save the content You can't have multiple settings_fields() inside one <form>. Explore the HTML source of your options page (particularly <form> itself) and you'll see two sets of <input>-s with different data there. |
|
Mar 17 |
comment |
How to disable WordPress from creating thumbnails? Yes, you are right. Thank you for information, now I have to revise some stuff I've already made. |
|
Mar 16 |
comment |
List upcoming events, ordered by date in a custom field Please show your code here as it can be useful for future users. Please also paste here only essential parts of the code. We know nothing about filedropper.com and why we need to register there. |
|
Mar 16 |
comment |
List upcoming events, ordered by date in a custom field Any code and template file to think about? Also why do you need exactly query_posts not WP_query? |
|
Mar 16 |
comment |
Javascript alert appears before <!DOCTYPE> tag What plugins and themes were you using before it has happened? Are they trustworth? Is your FTP secure? |
|
Mar 16 |
comment |
Dashboard pages not the pages dispayed on the actual site Have you installed the site from archive by yourself or it was already online (or localhost)? |
|
Mar 16 |
comment |
Is that the query_posts() the real criminal here? Why query_posts not WP_Query? Citation from query_posts Caveats: "Before deciding to use query_posts(), be sure to understand the drawbacks.". |