Rahendra Putra K?
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Remove header image from static pagesyou said that..
I’ve tried changing it to <?php if (is_home):?> etc. but that wasn’t working.
first don’t change anything but by adding them after
and before the header function.. and second what
function to be added is is_home function but seem
you get wrong function.. is has to be like this..
if( is_home() ): // your header section endif;
Forum: Themes and Templates
In reply to: [Graphene] [Theme: Graphene] Columns in footertry re-download your theme.. i’ve try to download theme and installed it, it’s seems normal so far.. copyright in the left and generator developer in the right..
Forum: Themes and Templates
In reply to: [Graphene] [Theme: Graphene] Columns in footerthe theme just allowed to edit the copyright through theme option which is placed in left side footer.. the Powered by WordPress and the Graphene Theme is default footer. So from the beginning is always one column editable footer..
Forum: Themes and Templates
In reply to: Remove header image from static pagesseems you get the wrong function..
if( is_home() ): // your header section endif;
just don’t change anything, put your header section between
those
if
andendif
..Forum: Themes and Templates
In reply to: WordPress blog with existing website (css template)i’m not quite understand or i miss some point here..
but why you need and html site rather than php (wordpress) site..
html is a static.. wordpress is more powerfull..
so, if i’m not wrong, you need a page that link to your blog
and called blog with url catrinasgarden.com/blog. am i right?
why don’t you just create a category called blog,
post your blog under blog category, and using menus feature
under the appearance dahboard menu to showed up the blog link
in the menu see codex like a page menu..
so when blog category link clicked, it’ll bring you
to a page that only appearing post under blog category..
Forum: Fixing WordPress
In reply to: getting false urlTurn off all your plugins and see if that still happens. If so, switch to the default theme (2011) and try again. — Ipstenu
i don’t have any plugin installed.. when change theme it become normal. and i know that, i just wanna figure it out, how it can be possible a hashtag added into url even the href doesn’t have a hashtag.. god, somebody help me please ??
Forum: Themes and Templates
In reply to: How to Create New Page Template without SidebarIt works just fine. What kind of errors? — Andrei Olsen
yep, fine for me either..
displays all of the php coding for the page
what do you mean by that?
Forum: Themes and Templates
In reply to: How to move the menu closer to my logojust open the dynamic-style.php in the style folder on
your theme, then find
#menu-wrapper
, looks there in line 140.change
margin: 0 0 1.5em
intomargin: -80px 0 1.5em
and reload your home page..
Forum: Themes and Templates
In reply to: How to Create New Page Template without Sidebartry this..
[code moderated - please follow the forum guidelines for posting code]
i just remove the
if (have_posts()) : while (have_posts()) :
Forum: Fixing WordPress
In reply to: current_page_item highlightingi’ve found the answer my self, thanks.
Forum: Themes and Templates
In reply to: need help with current_page_itemi still cant use the get_posts function.. but now i prefer use WP_Query function ?? and it works fine.. for now.. thanks before..
Forum: Themes and Templates
In reply to: need help with current_page_itemit’s just Constant value.. the loop is right but not the content that looped, only one post is looped..
Forum: Themes and Templates
In reply to: need help with current_page_itemfor note.. i create random post not for content section, but for sidebar ??
Forum: Themes and Templates
In reply to: need help with current_page_item@esmi::
can you re-check my code..
my random posts get error ??
<?php $args = array('orderby'=>'rand','numberposts'=>SHOWRAND); $randomposts = get_posts($args); $load = 0; foreach( $randomposts as $post ): ?> <a href="<?php the_permalink(); ?>"><?php post_thumbnail(); ?></a> <?php endforeach; ?>
didnt error actually, but my random post not produce
random post with random content.. just with one content
looped for 7 times.. thanks before.. ??
Forum: Themes and Templates
In reply to: need help with current_page_itemthanks, i’ll try..