Deepak Chennoria
Forum Replies Created
-
Hello cinematic,
You just need to go to your database (PhpMyAdmin)
Its for w-3.0.1
1.Brows table wp_option, and find wp_user_roles under column option_name.You have to change wp_user_roles to the prefix you are using(or changed).Let’s say you change prefix to wp_new_:- then you have to go to table wp_new_option table ,find wp_user_roles and edit it to wp_new_user_roles.
2.Brows table wp_user_meta and find wp_capabilities,wp_user_level:-under meta_key column and edit respective to wp_new_capabilities,wp_new_user_level.Now you can login to domainname/wp-admin.
Hope it solve the problem…………..
Forum: Fixing WordPress
In reply to: css edit ….1./*
Theme Name: theme_name
Theme URI: http://client website name.com
Description: Custom theme developed by Development company name. Based on default wordpress theme.
Version: 1.0
Author: Development company name*/
——————-******************————————-
It is commented but wordpress read it to recognise the style.css,if you don’t include it at the top of style.css then theme get crash and not get listed in wp-admin.2.use css use style depth
<div id="content"> <ul> <li> </li> </ul> </div>as if you have to apply a style to li tag under content Div the use like this:
#content ul li
{
style paramenters
}————————*****************************—————-
now this style of<li> tag will not assign to other </li> <li> tag in page</li>Forum: Fixing WordPress
In reply to: Post query and pagination problemHello 10sexyapples…
you can add a custom field to that post …
as you can say specific_post=1 from wp-admin than paste below code to extract the post…$a = get_category_id('archive'); query_posts('cat=$a'); if ( have_posts() ) : while ( have_posts() ) : the_post(); $post_custom_field = get_post_meta($post->ID, "specific_post", true); if($post_custom_field==1) { echo $post->ID."--".the_title().""; echo the_content(); } ?>Forum: Fixing WordPress
In reply to: Homepage TopicsI have set number of posts shown on home page as 10 from wp-admin, but in the home template I am using three different querypost() to show posts on the bases of different conditions as from different categories based on custom fields values.Now the problem is that is I use showpost=15 then after all querypost() show 10 posts or less but not more then 10 posts.
Can anyone help!!!!!!!!!!!!!!!!!!!111
Forum: Fixing WordPress
In reply to: Email Not being sentYou Can create a template and add email functionality in template,then create a page from wp-admin and assign the template to the page.It will start working………………