k.pashupati
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: converting existing html domain to wphi rfs,
Yes you can keep your site in your new installed WP. But Again You have to change your html into WP-theme..Other wise WP won’t recognize your theme templates.
Actually I don’t understand your requirement..Please elaborate your problem statement.
ThanksForum: Fixing WordPress
In reply to: converting existing html domain to wpWell, you can change your html site into WordPress enabled site..
Install the wordpress..then after that in wp-content/themes/ folder,
create a new folder with any name….
now inside that folder create 5 files having following names…styles.css
header.php
index.php
sidebar.php
footer.phpnow in the styles.css file ,
follow the rules for creating the styles…just go to the existing wordpress themes…
put your existing css into this file…Forum: Themes and Templates
In reply to: My custom themes are not supporting any image slider plugins.Now I resolved the problem…
actually in the latest wordpress 3.2.1 version,I have included<?php wp_enqueue_script(“jquery”); ?> <?php wp_head(); ?>
in header.php,before <script> tag….so,whenever you people find the slider problem,just include the above code in ypur header.php file….
also in functions.php
just include the following code..function downgrade_jquery() {
global $wp_scripts;// We want to use version 1.4.4 of jQuery, but it may break something in the admin so we only load it on the actual site.
if ( !is_admin() ) :
wp_deregister_script(‘jquery’);
wp_register_script(‘jquery’, ‘https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js’, false, ‘1.4.4’);
endif;
}
add_action( ‘wp_head’, downgrade_jquery() );The above code is able to update the jquery used in your script.
Forum: Themes and Templates
In reply to: My custom themes are not supporting any image slider plugins.yes i have correctly developed the templates as per the wordpress documentation….my theme is working …but not supporting IMAGE SLIDER PLUGIN..
when I choose the wordpress default themes,it’s working fine.But whenever I choose my theme,its not displaying the slider.
i am using wordpress 3.2.1 version…
also php version is 5.3.5..
so plz sort out my problem…It’s very unique problem i’ve ever faced…