Hilas
Forum Replies Created
-
Any solution?
Printscreen
The last 3 menu links not always clickable. If I maximize and minimize chatbox, then it works, but if after minimization I refresh the website, it works until the chat icon loads.- This reply was modified 5 years, 8 months ago by Hilas.
I can’t click on the menu which is above expanded customer chat, but only then it’s minimized while using on the laptop. If I expand chat then I can click on all menu, but if I minimize it and refresh the page, again I can’t click on the menu.
It seems the same problem. Any suggestions?thanks yani,
and where i can change widget background color?
and where i can customize month and week name? i want to translate to my native language.
tanks.
i want to change the background (the shadow) in the widget, but i dont no where in the css.
need to know an answer to this question too.
thanks.
Forum: Fixing WordPress
In reply to: How to remove author from posts?thanks a lot. problem resolved.
Forum: Fixing WordPress
In reply to: How to remove author from posts?author.php
<?php if(isset($_GET['author_name'])) : $curauth = get_user_by('slug', $author_name); else : $curauth = get_userdata(intval($author)); endif; ?> <div id="author-page"> <?php echo get_avatar($curauth->user_email, '90', $avatar); ?> <h1>About <?php echo $curauth->nickname; ?></h1> <?php echo $curauth->user_description; ?> </div><!-- author-page --> <h2 id="author-page-posts-title">Articles Published by <?php echo $curauth->nickname; ?></h2>maybe here i need to change something?
Forum: Fixing WordPress
In reply to: How to remove author from posts?in author-template.php i found:
* Display the name of the author of the current post.
function the_author( $deprecated = '', $deprecated_echo = true ) { if ( !empty( $deprecated ) ) _deprecated_argument( __FUNCTION__, '2.1' ); if ( $deprecated_echo !== true ) _deprecated_argument( __FUNCTION__, '1.5', __('Use <code>get_the_author()</code> instead if you do not want the value echoed.') ); if ( $deprecated_echo ) echo get_the_author(); return get_the_author();i need to change something here? or i’m looking in wrong place?