mohdrafie
Forum Replies Created
-
Forum: Themes and Templates
In reply to: WP drop down admin bar. Is there any way to delate it ?You can use this plugin
Go to Module options of the plugin and you can control if you want to show or hide the wp-admin for the admin or other user levels.
Forum: Networking WordPress
In reply to: Missing Link to Backend1. Since it is a multisite install, the files are managed on the blogs.dir
2. Few things to remember:
– You need to be a super-admin to view all subsites, even without you added as an admin to the site.
– Try .. example.com/yoursitename/wp-admin – that will always work.Let me know how that goes.
Forum: Fixing WordPress
In reply to: make my posts go horizontalBy that means, can you provide us link so that we can troubleshoot ??
Forum: Themes and Templates
In reply to: Two Columns?If I understand that correctly, you don’t want the post to move around as you update it.
Clearly you need a modification of the theme done. But first, you need to be specific on how do you separate the posts ie is it category or tags.
Then you have to modify the file to suit this. I don’t want to go into technical afraid that you’ll get confused.
Forum: Themes and Templates
In reply to: twentyten don't show "comments off"The fastest but not idea way is CSS:
.meta-sep, .comments-link { display: none; }
Forum: Themes and Templates
In reply to: [zeeBusiness] [Theme: zeeBusiness] Header not resolving to homeThat is weird because what I add is the
<a>
tags to the image and that didn’t disturb the DIV layoutIt seems like you might delete or add additional DIV while trying to remove the header title that cause the wrapper not to wrap things properly.
Try this for your header.php:
<!DOCTYPE html><!-- HTML 5 --> <html <?php language_attributes(); ?>> <head> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <title><?php bloginfo('name'); if(is_home() || is_front_page()) { echo ' - '; bloginfo('description'); } else { wp_title(); } ?></title> <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?> <?php wp_head(); ?> </head> <body <?php body_class(); ?>> <div id="wrapper"> <div id="header"> <?php if( get_header_image() != '' ) : ?> <div id="custom_header"> <a href="<?php echo home_url(); ?>/"> <img src="<?php echo get_header_image(); ?>" /> </a> </div> <?php endif; ?> <div id="navi"> <?php // Get Navigation out of Theme Options wp_nav_menu(array('theme_location' => 'main_navi', 'container' => false, 'menu_id' => 'nav', 'echo' => true, 'fallback_cb' => 'themezee_default_menu', 'before' => '', 'after' => '', 'link_before' => '', 'link_after' => '', 'depth' => 0)); ?> </div> <div class="clear"></div> <div id="wrap">
You can take it out if you wish ??
#page { background: #fff url(homepage04.jpg) repeat-x left bottom; }
Forum: Themes and Templates
In reply to: Opmizepress upload image problemThe are few good resources out there and I like the one that is prepared by Six Revisions – https://sixrevisions.com/tutorials/web-development-tutorials/using-xampp-for-local-wordpress-theme-development/
I suspect that you need to put a background colour value as below:
#page { background: #fff url("homepage04.jpg") repeat-x left bottom; }
Forum: Themes and Templates
In reply to: Opmizepress upload image problemThis is weird. You can try to restart but I suspect that wouldn’t solve the problem. Do you have the administrator privilege on the Windows?
I’m not sure if it helps, but have you try XAMPP?
Forum: Themes and Templates
In reply to: Opmizepress upload image problemHave you change the permission for this folder?
wp-content/uploads
Forum: Installing WordPress
In reply to: import site states from wordpress to self-hosted.You can transfer the content over using the Export tool (Dashboard > Tools > Export) and it will export your posts, drafts, pages, comments, menu, etc.
However, the hits you got on the blog is non-transferrable because it is on different server.
Does that answer your question?
Forum: Themes and Templates
In reply to: Opmizepress upload image problemSo, if you follow the steps in the URL, that should work and change the file permission on your computer.
If you’re using a Mac, you can press
Cmd + i
to display the Folder Info in which there are Sharing & Permissions settings which you could change there easily
Forum: Themes and Templates
In reply to: Opmizepress upload image problemBy “local” I mean, your computer. Am I right?
Forum: Themes and Templates
In reply to: [zeeBusiness] [Theme: zeeBusiness] Header not resolving to homeYou will either need to do a child theme, or you can modify the header.php
And change the custom-header DIV to this:
<div id="custom_header"> <a href="<?php echo home_url(); ?>/"> <img src="<?php echo get_header_image(); ?>" /> </a> </div>
This is providing the fact you’re installing your website on your server and not hosting it at wordpress.com