Forum Replies Created
-
Mod
WP e-commerce — Thanks for the heads-up on that one.
Mod
In reply to: Possible to disable summary of childpages at the bottom of parentpages?
February 16, 2012 at 9:36 pm #24365You may be able to do this with CSS if you know the ID of the page in question.
Not tested, but possibly something along the lines of
.page_ID .excerpt {display:none;}Mod
In reply to: How to add extra javascript in head-section of only few pages
February 16, 2012 at 9:34 pm #23911Just be sure that if your Javascript includes quotations marks (“), you escape them (“), else it will cause all sorts of problems with your blog.
See this for more info about escaping:
Mod
Usually by invitation, but one can always ask.
It also helps to know:
- WordPress
- Graphene
- PHP
- CSS
- HTML
- Javascript
You don’t need to be an expert in all of those things, but it helps to be good at at least one of them.
You also have to be willing to explain what backticks are at least once a day. 😉
Mod
Or, just go to Graphene Options >> Display Options >> Miscellaneous Display Options and enter what you would like in the “Custom content pages site title” box. You can customise the title for the front page in the “Custom front page site title” box.
Be sure to use the custom tags listed.
Mod
In reply to: How to add extra javascript in head-section of only few pages
February 16, 2012 at 9:00 pm #23909If you need other conditional tags, see this:
Mod
In reply to: where(what file,etc) do i add this code so that i can display my desired category id on a new page
February 16, 2012 at 8:58 pm #24362I answered this question in your first post about it. Please do not start a new thread for the same question just because you have not gotten a response yet. There is a much quicker response time in this forum than in others (where you may have to wait days or weeks, or may never get a response at all). New threads with the same question only clog the forum and make it difficult for us to help everybody.
Mod
Am I making this more difficult than it is?
Yes, you may be. What you really want to do is to create a custom menu, using categories. With a custom menu you can arrange things exactly the way you are talking about.
Read this tutorial on custom menus and give it a try. I think it’s what you are trying to achieve:
http://blog.kjodle.net/2011/08/25/how-to-create-and-use-custom-menus-in-wordpress/
Mod
I’m a bit confused. What you want to do sounds like what standard category archives do anyway. How is what you are aiming to achieve different?
Mod
For what it’s worth, after about ten minutes of playing around with this, I am using this for the “Before list HTML” bit:
<style>
.k_ul{width: 570px;text-align:center;list-style-type:none;}
.k_li{border:1px solid #2273b9;width: 260px; height:150px; float: left; padding:3px; margin:5px;
-moz-border-radius: 10px; -webkit-border-radius: 10px; border-radius: 10px;
-moz-box-shadow: 0 0 10px #2273b9;-webkit-box-shadow: 0 0 10px #2273b9; box-shadow: 0 0 10px #2273b9;}
.k_a{display:block;text-decoration:none;font-weight:bold;width:100%; height:65px}
.k_a:hover{border:1px solid #00f;background:#00f;color:#fff;}
.k_a:active{background:#f00;color:#fff;}
</style><ul class="k_ul">and this for the “list item content” bit:
<li class="k_li"><a class="k_a" href="[post_permalink]">[post_title]</a><br />[post_excerpt length="100"]</li>
