Abinav Thakuri
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Amy & Pink – which theme?Maybe they have customized this theme:
https://demos.bavotasan.com/magazine-basic/Forum: Themes and Templates
In reply to: Kid's play facility theme – pls help?I dont think the site is using wordpress…In my opinion it is an HTML/CSS template..I can convert it to a theme if you like though..
Forum: Themes and Templates
In reply to: Manifest theme helpMy pleasure…:)
Forum: Themes and Templates
In reply to: Manifest theme helpWhen you are adding a new page to your site, you should find a scrolling template option to the right of the screen.There should be an option for the template you are talking about in there.Choose that and your page will be displayed using this template..
Forum: Fixing WordPress
In reply to: Remove 'Home' Title From Home Page.nope you shouldn’t remove the others..Try finding it in your index.php ..remember that it should be the exact code or you may cause more problems removing something different.
Forum: Fixing WordPress
In reply to: confused how to blog within a pagei dont know about this theme…Try the options out and maybe it will help..
Forum: Fixing WordPress
In reply to: Remove 'Home' Title From Home Page.you can either remove,modify or comment this code.
Forum: Fixing WordPress
In reply to: Remove 'Home' Title From Home Page.Nope.Find the bloginfo function in your header.php..
Forum: Fixing WordPress
In reply to: confused how to blog within a pagewhich theme are you using?
Forum: Fixing WordPress
In reply to: confused how to blog within a pageI think there should be a theme options area in your admin panel.You can probably change these settings from there.
Forum: Fixing WordPress
In reply to: Weird Main Menu Code Hijinks! Help!!!Maybe I can help you if i get to do it myself..
Forum: Fixing WordPress
In reply to: Remove 'Home' Title From Home Page.Repost
There must be a different kind of code consisting of a wordpress function.
The above code cannot be found.Find this instead:<h1><?php bloginfo(‘name’); ?></h1>
Remove,modify or comment it. Sorry I was talking pure html on the previous post ??
Forum: Fixing WordPress
In reply to: Remove 'Home' Title From Home Page.I haven’t used the theme yet but I think there should be Alternatively you can find this code:
<div class=”hentry page post-1 odd author-Greg clear-block”>
<h1 class=”title”>
Home </h1> <p></p>Remove the title Home and save your changes.This should work..
Forum: Fixing WordPress
In reply to: Weird Main Menu Code Hijinks! Help!!!try renaming the prefix for your php function.This might be caused due to a conflict with the plugin.It might be using the same prefix and wp_ is a very popular one.Rename it to something different and related to your site like jf_
replace the code like this:
<?php jf_nav_menu(array('menu' => 'main-menu','menu_class' => 'main-menu' )); ?>
Forum: Fixing WordPress
In reply to: Weird Main Menu Code Hijinks! Help!!!This is the a very simple problem.Its just because the div has a different name and the css you have defined for the actual div class selector is not working on it.The original code is:
<div class="menu-main-menu-container">
and this is the code in the team players page:
<div class="main-menu">
Rename the div class to “menu-main-menu container” and it will get back to its original form! ??