raajen
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Epic] Remove featured image from posts?If your problem was solved then it’s ok.. If you’re using any premium or free themes you should consider that you’re not going to update theme upon the new updates are released else everything goes in vein… If you’re going with child themes then you’ve to work with all the functions hooked up by theme develoer with you to make it work on your way… Make sure you’ve little changes and not more if you’re going to use child themes…
Forum: Themes and Templates
In reply to: register sidebar function is not workingyou’ve not initialized the function well. well you can use the code below:
if(!function_exists('my_theme_sidebar')){ function my_theme_sidebar(){ $sidebar=array( 'name' => 'sidebar', 'id' => 'sidebar', 'description' => __('sidebar'), 'before_widget' => '<div>', 'after_widget' => '</div>' ); if ( function_exists('register_sidebar') ) register_sidebar($sidebar); } add_action('widgets_init','my_theme_sidebar'); }
Hope it would solve your problem
Forum: Themes and Templates
In reply to: [Epic] Remove featured image from posts?Which themes you’re pointing towards?? Well in most of themes image are displayed with
if(has_post_thumbnail()) the_post_thumbnail();
. You can remove this code to remove the image from being displayed or just put a comment on it
/* if(has_post_thumbnail()) the_post_thumbnail(); */
Forum: Themes and Templates
In reply to: Custom Taxonomy and Custom Post TypesTracy i used the same template hierarchy.. But the contents were not loading.. Actually the tags were not being queried so my head was spinning around it…
Forum: Themes and Templates
In reply to: Custom Taxonomy and Custom Post TypesSolved Myself.. hurray .. got the crap out of my head ….. ??
Forum: Fixing WordPress
In reply to: Not Found The requested URL /wp-admin/ was not found on this serverhaven’t you fixed your problem.. sorry i was out for some time
Forum: Fixing WordPress
In reply to: Not Found The requested URL /wp-admin/ was not found on this serverWhat’s the link of your site?
Forum: Fixing WordPress
In reply to: Redirecting homepage to shop page but still having home availableGo to Settings->Reading and then change your front page to shop page
[moderated – please don’t ask to get access to the site; and don’t post your email – this forum does not provide this level of support]
Forum: Themes and Templates
In reply to: Deleted a line out of the index.phpCan you provide link to your site? So that we can see what actually is happening???
Forum: Fixing WordPress
In reply to: Positioning images on page (with no text)Didnt get…. Do you have some links to share???
Forum: Fixing WordPress
In reply to: Why the loop is exiting after ten postsCheck the settings page and change the default value or change ‘numberposts’=>-1 or ‘posts_per_page’=> -1 in your query arguments.
$args = array('post_type'=>'products','posts_per_page'=> -1); $query = new WP_Query($args);
Forum: Fixing WordPress
In reply to: Image under title twenty twelve themeTry with the following css:
.site-header h1{ margin-top: 30px; position: absolute; z-index: 10; }
you may set your own margin.. Its just for an example ??
along with your css also same for tagline. Best of luck ?? Hope it may help youForum: Fixing WordPress
In reply to: wp_create_user not saving user email?try changing name of input name ‘theemail’ with ‘user_email’
Forum: Fixing WordPress
In reply to: Making a new site URLAre you going to create your own site with your desired domain or you are going through wordpress.com?