malvouz
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hanamoto] Menu doesn't show up, and more.Hi,
I have visited your website. I think you had already solve your web when I visited.
For Facebook page, please copy the correct script from facebook page.
I will mark this question as resolved, if you any further question, please open a new ticket.
Forum: Themes and Templates
In reply to: [Hanamoto] the slider doesnt show in the Hanamoto themeHi,
I build this theme for “my latest posts” option. I do not build this theme for static page. Static page means you have to choose one page to show as your homepage.
PS: I marked this thread as resolved. Please do not hesitate if you need inquire to me.
Thanks.
Forum: Themes and Templates
In reply to: [Hanamoto] How to add breaks to slider descriptionsHi,
This theme does not support for break line, I just want to a user only use simple description for their image.
PS: I will marked this thread as resolve.
Thanks.
Forum: Reviews
In reply to: [Customizr] Review from DeveloperThanks for your reply Nikeo. I have already read your code in customizr theme. There are multiple tone of line code. Amazing!
Last but not least, thanks for reply. I get motivated from you. ??
Forum: Themes and Templates
In reply to: [Baris] Hide title & font colorMake title not showing:
Go to dashboard -> appearance -> editor
Open header.php
find this code
<header> <h1><a href="<?php echo home_url(); ?>"><?php echo get_bloginfo('name'); ?></a></h1> <span></span> <p><?php echo get_bloginfo('description', 'display'); ?></p> <?php get_sidebar('left'); ?> <?php get_sidebar('right'); ?> <div class="clear"></div> </header>
then delete this code
<h1><a href="<?php echo home_url(); ?>"><?php echo get_bloginfo('name'); ?></a></h1> <span></span> <p><?php echo get_bloginfo('description', 'display'); ?></p>
Change font color
Open style.css
To change a blue color:
find this code with Control+F/* --- Link --- */ #content h2 a { color:#468ACA; } a, #content h2 a:hover{ text-decoration:none; } a:hover { text-decoration:underline; } /* --- Link Colors --- */ a, ul.sidebar li.widget_text a { color:#468ACA; }
and changes 468ACA with color code that you want.
—
Please remark this question as resolved if you enough for my answer and rate our theme.
Thanks,
MalvouzForum: Themes and Templates
In reply to: [Hanamoto] customizing the hanamoto theme1. Open header.php
Look at
<div class="container"> <div id="page" class="row">
put this code after that code
<div class="span12"> <img src="your banner"> </div>
I recommended with width 940px.
2. Open header.php. Deleted all code inside span4. (Like you said, I guest you understand HTML and CSS)
3. Open inc/theme-functions.php
At very bottom find this code
<script type="text/javascript"> jQuery(window).load(function(){ jQuery('.flexslider').flexslider({ animation: "slide", controlNav: "thumbnails", start: function(slider){ jQuery('body').removeClass('loading'); var slide_control_width = 100/<?php echo $number; ?>; jQuery('.flex-control-nav li').css('width', slide_control_width+'%'); } }); }); </script>
Change to
<script type="text/javascript"> jQuery(window).load(function(){ jQuery('.flexslider').flexslider({ animation: "slide", controlNav: "thumbnails", slideshow: "false" start: function(slider){ jQuery('body').removeClass('loading'); var slide_control_width = 100/<?php echo $number; ?>; jQuery('.flex-control-nav li').css('width', slide_control_width+'%'); } }); }); </script>
4. You have to go to css/bootstrap.css, all font that you want to change is there.
If you like, please mark question as solved, and rate this theme. ??
Forum: Fixing WordPress
In reply to: WordPress Page Source on browserstry to disable one by one of your plugin, and check immediately after you disable it. you will know which plugin cause this.
Forum: Themes and Templates
In reply to: [Baris] adding imagesHi cosmindu, thanks for your kind of word.
for you problem. Open header.php
this line is for display title and description on header.
<h1><a href="<?php echo home_url(); ?>"><?php echo get_bloginfo('name'); ?></a></h1> <span></span> <p><?php echo get_bloginfo('description', 'display'); ?></p>
If you want add image or logo. Add this line right below title and description code, you will see playstation’s logo from this code.
<center><img src="https://s.www.ads-software.com/images/notableusers/playstation-2x.png" height="" width=""></center>
If you want to use only your logo. you can delete title and description code.
Note: You could customize both height and width.
—
If you like, please mark this question as solved.
Thanks,
MalvouzForum: Themes and Templates
In reply to: [Baris] I can not add a comment on pageHi 1ns1de, that is a bug and thanks for asking. I had fix that. Now, you could comment on that page.
How to fix:
Open page.php and find this code:<p class="meta-date"> <?php comments_popup_link( __( 'Leave a comment', 'baris' ), __( '1 comment', 'baris' ), __( '% comments', 'baris' ) ); ?> <?php edit_post_link( __( 'Edit →', 'baris' ), '<span class="separator">|</span>', '' ); ?> </p>
add
<?php comments_template( '', true ); ?>
below that code and the result:
<p class="meta-date"> <?php comments_popup_link( __( 'Leave a comment', 'baris' ), __( '1 comment', 'baris' ), __( '% comments', 'baris' ) ); ?> <?php edit_post_link( __( 'Edit →', 'baris' ), '<span class="separator">|</span>', '' ); ?> </p> <?php comments_template( '', true ); ?>
If you like, please mark this question as solved.
Cheers,
MalvouzForum: Themes and Templates
In reply to: [Baris] bottom of the pageHi harrywar,
I did not see this. Thanks for asking this question. I will include this on the next update.
For now, what you have to do is open content.php and found this code:
<?php $tags_list = get_the_tag_list( '<span class="separator">|</span>', ', ' ); if ( $tags_list ): ?>
and change into this
<span class="separator">|</span> <?php $tags_list = get_the_tag_list( '', ', ' ); if ( $tags_list ): ?>
and do this for single.php too. So, you have to edit two files (content.php and single.php).
If you like, please mark this question as solved.
Thanks,
MalvouzForum: Fixing WordPress
In reply to: Gallery PaginationIt must be show “Previous Image” and “Next Image” if you using WordPress Gallery to show photos.
1. Make a new post
2. Add some photos and choose WordPress Gallery
3. Link your image to attachment file.
4. PostIn front, click one of photos. It should be appear.
Forum: Fixing WordPress
In reply to: Gallery PaginationI hope I got what you mean.
<?php if(is_attachment()): ?> <?php previous_image_link( false , __('← Previous Image', 'themes name')); ?> <?php next_image_link( false , __('Next Image →', 'themes name')); ?> <?php endif; ?>
try those code at single.php or wherever you want.