Pls help!!

Discussion in 'BizWay WordPress Theme' started by wilson1stop, May 23, 2013.

Thread Status:
Not open for further replies.
  1. wilson1stop

    wilson1stop New Member

    Joined:
    Mar 5, 2012
    Messages:
    7
    Likes Received:
    0
    Hi Admins, My Site: http://wmj.my

    My Questions:
    How to add ads banner/leaderboard (align to most right-side) just beside of my top logo. eg/ http://inkthemes.com/wpthemes/blogstrendfashionblog/
    How to remove/hide [Posted by] authors in posts/pages?
    How to change {Read more} image to text-based Read more...
    How to change {Search} & {Send} image to button-based?
    How to limit 200 characters in summary posts?

    My suggestions:
    Pls enable open in new windows for Social Networks instead of same window. (self-modified)
    Pls troubleshoot the tracking code, it's not working. (self-modified)
    Pls add BACKUP & RESTORE functions for saving Theme Options.
    Possible to add Gzip functions or Minify CSS/JS functions?

    Thank you for your helps and supports, I'm very appreciated it...
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    1.For your first issue

    Go to header.php present in your theme directory and replace current code
    Code:
     <div class="grid_24">
          <div class="header">
            <!--Start Logo-->
            <div class="logo"> <a href="<?php echo home_url(); ?>"><img src="<?php if (inkthemes_get_option('inkthemes_logo') != '') { ?><?php echo inkthemes_get_option('inkthemes_logo'); ?><?php } else { ?><?php echo get_template_directory_uri(); ?>/images/logo.png<?php } ?>" alt="<?php bloginfo('name'); ?>" /></a></div>
              <!--End Logo-->
          </div>
        </div>
    with code given below

    Code:
        <div class="grid_24">
          <div class="header">
          <div class="grid_sub_8 sub_alpha">
            <!--Start Logo-->
            <div class="logo"> <a href="<?php echo home_url(); ?>"><img src="<?php if (inkthemes_get_option('inkthemes_logo') != '') { ?><?php echo inkthemes_get_option('inkthemes_logo'); ?><?php } else { ?><?php echo get_template_directory_uri(); ?>/images/logo.png<?php } ?>" alt="<?php bloginfo('name'); ?>" /></a></div>
              <!--End Logo-->
          </div>
          </div>
          <div class="grid_sub_16 sub_omega">
          <a href="Enter your link address"><img src="Enter your image address"/></a>
          </div>
        </div>
    Sending image for reference
    [​IMG]


    2.For your second issue

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .content-bar .post .post_meta .posted_by {
    display: none;
    }
    3.
    Please explain your third issue little more.

    4.For your fourth issue

    Go to functions.php present in your theme directory and add the code given below

    Code:
    function custom_excerpt_length( $length ) {
        return 200;
    }
    add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );
    Sending image for reference

    [​IMG]


    Thanks for your all suggestions
    We will try to add these options in our future updates.
     
  3. wilson1stop

    wilson1stop New Member

    Joined:
    Mar 5, 2012
    Messages:
    7
    Likes Received:
    0
    Hi Gourav,

    Thank for your helpful replied, here is more info as you needed.

    No.1 it's working, but is that possible to make 5px between leaderboard ads and menu bar?

    No.2 Solved with thank.

    No.3, I preferred display button-based r text-based instead of showing image-based buttons.
    http://wmj.my/wp-content/themes/bizwaytheme/images/side-search.png
    http://wmj.my/wp-content/themes/bizwaytheme/images/read-more.png

    No.4 is working good in English characters, but NOT working in chinese characters, any ideas?

    Thank again in advance.
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    1.For your first issue

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .menu-container {
    margin-top: 5px;
    }
    2.For your second issue

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .content-bar .post .post_content .read_more{
    background:none;
    text-indent: 0;
    }
    .content-bar .post .post_content .read_more:hover{
    background:none;
    text-indent: 0;
    }
    3.For your third issue

    Go to searchform.php present in your theme directory and follow the instruction as shown in image given below

    [​IMG]

    Now,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .searchform input[type="submit"]{
    background:none;
    text-indent: 0;
    }
     
    .top-search .searchform input[type="submit"]{
    text-indent: -99999px;
    }
    4.For your fourth issue

    Excerpt does not count the Chinese character because they are inline, Break the line and make some spaces between the characters, It may solve your problem.
     
  5. wilson1stop

    wilson1stop New Member

    Joined:
    Mar 5, 2012
    Messages:
    7
    Likes Received:
    0
    Hi Gourav, Thanks for your helpful supports, it was solved.
     
Thread Status:
Not open for further replies.

Share This Page