Bikram
Forum Replies Created
-
Hi,
I have done the same, but created a child theme first. Then use the following code in child theme’s style.css file, and I shall use it in my website http://www.rigseo.com very soon.
body { background: transparent url("./img/wood_pattern.jpg") repeat scroll 0 0; } .site { background: transparent }Forum: Themes and Templates
In reply to: remove left sidebar from 2014/2015 themesThe answers here not very to the point. The steps described below to searched by the reader:
1) create a child theme of 2015, the tutorial links mentioned above.
2) Try to follow the template hierarchy picture in wordpress codes, to know what files to be edited/created.
3) use firebug and study the layout of article / content area and side bar css. This part may be hard.
4) Change it in the child theme css file. And override the actual styles.Google each of the above topic..
Forum: Themes and Templates
In reply to: [Twenty Fifteen] Full width pageChild Theme is the best. I think WordPress may start guidelines on Child Theme development articles in CODEX for every version of their major theme release like 2010,2011, 2012, 2013, 2014 and 2015. Just a thought. But it has heavy demand.
Bik
Web Designers House.Forum: Themes and Templates
In reply to: [Twenty Fifteen] Full width pageFull width is a requirement. May be he wants a splash page as home page with jquery full width banner sliders. Below that some pics and text. Probably this is pearwcz requirement, same as mine. Child theme is a good option. Or may be through the customize option of theme 2015.
I am planning to make a full width page for my site http://www.webdesignershouse.com
Forum: Fixing WordPress
In reply to: An old bug of WP? You don't have permission to access /wp-admin/poAs I have guessed the whole problem lied in the PHP section. Extra space inserted or something. Now I have fixed all used the following type of code : All bugs lied in PHP code snippet placed into articles.
Forum: Fixing WordPress
In reply to: An old bug of WP? You don't have permission to access /wp-admin/poWhen I am in edit mode URL of address bar is :
domain.com/wp-admin/post.php?post=42&action=editBut when I am submitting the page : URL is
domain.com/wp-admin/post.phpthen the error shows up-
I have just updated this page , no error shown but when I am adding some baic PHP code like
<?php echo "hello world";?>
it works fine, I think some problem in PHP path.Forum: Fixing WordPress
In reply to: An old bug of WP? You don't have permission to access /wp-admin/poI found the problem zone. I have some PHP code in my article body of wordpress like the following `
<?php
include(ABSPATH. ‘../somefilepath.php’);
require_once(ABSPATH. ‘../another-file-path.php’);
?>
`Have Exec-PHP plugin installed, but still this area creating problem.
I am sure of it.
Forum: Fixing WordPress
In reply to: An old bug of WP? You don't have permission to access /wp-admin/poAnother update : when I am editing another page then the error is not showing.
But for one page this error is being shown.
I dont know is it right to show my URLs or not ?
But I am giving this URL dont create problem during page update
But this page creating problem during update and showing forbidden error.
I am confused.
Is my steps are correct as I described above? I have another query :
function register_my_menus() {
register_nav_menus(
array( ‘header-menu’ => __( ‘Header Menu’ ) )
);
}
add_action( ‘init’, ‘register_my_menus’ );What this function does : __(‘Header Menu’)
Hi, WPyogi, yes I am following codex mentioned above. My target is to understand the steps of showing nav menu. I am following codex now. but I am open to any idea and not confined to anything specific.
So this tag personal_menu is MENU INDICATOR and this PHP code
<?php wp_nav_menu( array( ‘theme_location’ => ‘personal_menu’ ) ); ?>
will place the menu, a whole bunch of HTML code- dynamically will be placed, Whenever I shall use it… am I right ?Thanks for your replay. I understood what you said.
Say I have 5 template files header.php, footer.php etc/
So the steps is : (assuming child theme name ct2011
In this folder’s functions.php file (of child theme) “\wordpress-3.4.2\wp-content\themes\child_theme_of_twentyeleven\” I have to write the following line and have to use an action hook:
register_nav_menu( ‘personal_menu’, __( ‘Personal Menu’, ‘ct2011’ ) );
Then in the template files , header.php, footer.php etc/ I have to write :
<?php wp_nav_menu( array( ‘theme_location’ => ‘personal_menu’ ) ); ?>So after this I shall get – in the admin section of dashboard, “theme location” will show dropdown “Personal menu” and I can create any menu in dash board and assign it in “Personal menu”.
I understand that header.php file shows a navigation menu in template, may be in this path
\wordpress-3.4.2\wp-content\themes\twentyeleven\header.php<?php wp_nav_menu( array( ‘theme_location’ => ‘primary’ ) ); ?>
________________________________My query is my PERSONAL menu will be shown where ever I want, say middle of a div
So my theme location is MIDDLE OF A DIV…
May be I want to show it in my footer..
So what are the steps to create a custom menu in child theme and show it where u want..
What is the basic funda of multisite ? Is it totally different websites by a single wordpress Installation and database ?
I have never used multisite. So I don’t know anything about it. But I think I am capable of grabbing the basics and hope I shall be able to install it.