ghanshyamgadhiya
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Relative Path Issue with New Installationi think you face problem because of you ‘/b/’.
check out in db->wp_options in which you find variable
SITEURL, just check its value. its should be
https://DOMAIN/B/ .try it, it may solve your problem.
Forum: Fixing WordPress
In reply to: User Registrationok
its so easy.
just login at admin site in which
you have ‘options’ menu, in which you have ‘Membership’so just check these two boxes. so option will come.
ok :- ).
Forum: Fixing WordPress
In reply to: editing User roles ?at admin side you have option ‘user’ through which you can decide role of user so he can access limited area of your site according to his role just check it.
Forum: Fixing WordPress
In reply to: How to Tag Keywords while posting a blogI m not getting exactly wht u r trying to convey if possible can u explain me so tht it is more clear for me.
Forum: Fixing WordPress
In reply to: How do I add bullets to my sidebar?Another query, how do I make a small line break between my menu bar…..
==>
in wp-content/themes/default/sidebar.php filejust and
<br>
tag after every</li>
.and for your first query if you are programmer then you can do edit in all function which are called from sidebar.php file.
Forum: Themes and Templates
In reply to: Color of Kubrik SidebarIts occur because of kubrickbg.jpg.
recheck it. kubrickbg.jpg has different color at right side.
ok.Forum: Fixing WordPress
In reply to: Archive by year in sidebarok.
just open the file
wp-content/themes/default/archives.php
here you find this code
<?php wp_get_archives('type=monthly'); ?>
replace it with this code
<?php wp_get_archives('type=yearly'); ?>
ok
:-).Forum: Fixing WordPress
In reply to: How to add my own header?dont open your wordpress in browser.
i mean you have to open it through FTP.
for example, how you can open your c:\ drive ?
same way you can open your wordpress on your hosting server and follow what i have told.Forum: Fixing WordPress
In reply to: How to add my own header?okkkk……..
this is your header image’s path.
wp-content/themes/default/images/kubrickheader.jpg
where your image is physically stored.
here
in default folder you have images forlder in which there is kubrickheader.jpg file which you can replace with your image(name should be kubrickheader.jpg).
so, by this wordpress load your image instead of its original image.
bcoz you replace your image on wordpress’s image.
i think you are not that much aware with wordpress and programming. thats why you face this problem.Forum: Fixing WordPress
In reply to: How to add my own header?header image is
wp-content/themes/default/images/kubrickheader.jpg
so you can do anything you want with this image.
Forum: Fixing WordPress
In reply to: How to add my own header?1. Note down original headerimage size and create your header according to that size.
2. just rename your here to kubrickheader.jpg
3. put it into wp-content/themes/default/images.ok.
Forum: Themes and Templates
In reply to: Quick CSS Problem…it should be
<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?> <ul> <li><?php wp_register(); ?></li> <li><?php wp_loginout(); ?></li> </ul> <?php wp_meta(); ?>
ok. try this.
Forum: Installing WordPress
In reply to: Showing latest posts in page outside the blogif you are coder then simply fire query from database
select * from wp_posts order by id desc limit 10.Forum: Themes and Templates
In reply to: replacing headerjust replace this image with your own header image
wp-content/themes/default/images/kubrickheader.jpg
:-).
Forum: Everything else WordPress
In reply to: Can not see Blog roll in my blog1, first check in admin -> blogroll -> visible = true
if its ok.
2, check in your sidebar.php file wp_list_bookmarks(), is this function available ?