Purab
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WorpPress Export & Importwhich version you are using for old site and new site. Than I can help you.
Forum: Fixing WordPress
In reply to: Forcing a page link to redirect to custom link?use the simple wordpress method
wp_header(‘custom-link-path’);Forum: Fixing WordPress
In reply to: Fatal error: require_onceit tries to include the php installation path in linux. May be you need to consult with wordpress and PHP developer.
Forum: Fixing WordPress
In reply to: 500 Error due to .htaccess filewordpress is not able to change the .htaccess file. Somebody must be hacked your server or site. .htaccess file related to apache server setting.
Forum: Fixing WordPress
In reply to: post starting how toin wordpress admin section you need to change setting for reading section. that will solve your issue. One more advise for showing first 5 post you dont need to use any plugin. that is wordpress default functionality.
Forum: Fixing WordPress
In reply to: How to remove some boxes at the bottom of the pagethat is default widgets which are hardcoded in your theme code. You need to consult with theme developer
Forum: Themes and Templates
In reply to: Sidebar margin-topyou need to change the theme code as well as css code. that will solve your issue
Forum: Themes and Templates
In reply to: Next and Previous tags to show more postswhat is TMA
Forum: Themes and Templates
In reply to: show thumbnail befor title of articelIn functions.php add following line.
add_theme_support( 'post-thumbnails' );
ad use the featured thumbnail using following code
<?php the_post_thumbnail();?>
`Forum: Fixing WordPress
In reply to: Can't updateThere is folder permission issue on your hosting path.
Go to your hosting path using filezilla or any ftp client and give the following folder 777 permission.
D:\Hosting\5596920\html/wp-content/
that will solve your issue.
if your are using the shared hosting then you will see only wp-content folder. select that folder and give 777 permission. that will solve your issue.Forum: Themes and Templates
In reply to: Hover over image in blog postyou need the create the different template page and edit the code as per your need and assign your template that page.
[Removing email – Please stop this.]
Forum: Fixing WordPress
In reply to: Adding a Portfolio PageUse the following code in your functions.php file.
<?php add_action('init', 'create_portfolio'); function create_portfolio() { $portfolio_args = array( 'label' => __('Portfolio'), 'singular_label' => __('Portfolio'), 'public' => true, 'show_ui' => true, 'capability_type' => 'post', 'hierarchical' => false, 'rewrite' => true, 'supports' => array('title', 'editor', 'thumbnail') ); register_post_type('portfolio',$portfolio_args); } ?>
This will give you option to create your portfolio. Check your admin section -> left side menu-> portfolio section
Forum: Installing WordPress
In reply to: Installation Problem: Error establishing a database connectiontell me which hosting service you are using. based on that you need to change the host name that is important. All database host is not a localhost for all the hosting provider.
Forum: Fixing WordPress
In reply to: Unable to import wordpresswhich wordpress version are you using.
Forum: Themes and Templates
In reply to: embedded src for pdf filesjust use the following javascript upperside of iframe.
// Firefox worked fine. Internet Explorer shows scrollbar because of frameborder function resizeFramere(f) { f.style.height = f.contentWindow.document.body.scrollHeight + "px"; //window.onload = alert(navigator.appName); }
call this function in body onload section.