about - admin

Forum Replies Created

  • Question status -
  • Support Staff
    Keymaster

    You’re right, meta tag is added but on single page. Add this to your functions.php:

    add_filter( "{$prefix}_meta_author", '__return_false' );

    after

    add_filter( "{$prefix}_site_title", 'site_title_span' );

    Regards,
    Sinisa

    #4931
    Support Staff
    Keymaster

    Hey Ali,

    the code is right, but I’ve missed to tell you that code will work only if you put it after this line:
    add_filter( "{$prefix}_site_title", 'site_title_span' );

    So, it would be like this:

    
    add_filter( "{$prefix}_site_title", 'site_title_span' );	
    
    add_filter( "{$prefix}_site_title", 'my_custom_image' );
    
    function my_custom_image( $title ) {
    
            $tag = ( is_front_page() ) ? 'h1' : 'div';
            $title = get_bloginfo( 'name' );
            $site_url = get_option( 'siteurl' );
            $img = '<a title="'. esc_attr( $title ) .'" href="'. esc_url( $site_url ) .'"><img src="URL TO YOUR IMAGE" alt="'. esc_attr( $title ) .'" /></a>';
            $title = sprintf( '<%1$s id="site-title">%2$s</%1$s>', tag_escape( $tag ), $img );    
    
            return $title;
    
    }
    
    #4930
    Support Staff
    Keymaster

    Hi Jeremy,

    WordPress update is not the cause, however I’ve just tested it with latest WordPress, it’s all fine as I expected. If your site is online, send me login details (mark reply as private), this way it’s hard to point you, and it’s trivial thing probably.

    Unfortunately, I can’t let you swap themes, but I’m always here to help you out if you’re stuck. The easiest way is to put site online, and I can quickly act and explain you later what’s happening.

    Regards,
    Sinisa

    #4929
    Support Staff
    Keymaster

    Hi Ali,

    author meta tag is added by some plugin, not by theme. I’m guessing it’s SEO plugin. The easiest way to figure it out is to disable one by one plugin, and see if it disappears. Then search through plugin options and disable it.

    Best regards,
    Sinisa

    #4918
    Support Staff
    Keymaster

    Please login again and go to your account page: https://www.simplewpthemes.com/account/.
    You’ll be able to download files again from “Downloads” tab.

    Best regards,
    Sinisa

    P.S.
    You should look into spam folder if you’re not receiving our emails. It might not work if I resend emails, they might end up in spam again 🙂

    #4916
    Support Staff
    Keymaster

    I’ve resent you purchase receipt, please re-download theme, it’s updated. Let me know if problem exists, and if it does, please send me your URL, admin username and password (mark reply as private). Let me know!

    Regards,
    Sinisa

    #4868
    Support Staff
    Keymaster

    Hi Juan,

    theme isn’t suppose to do that, that’s what you need to do. You’re adding your own content to the site, widgets that you want, menus and so on. I see you figured it out by now. If you have any questions, feel free to ask!
    We’re here to help.

    Best regards,
    Sinisa

    #4861
    Support Staff
    Keymaster

    Hi Ali,

    the easiest way is to change the post date, or you can add this to theme setup function (functions.php):

    function remove_category( $query ) {
    if ( $query->is_home ) {
       $query->set('cat', '-1');
    }
    return $query;
    }
    add_filter('pre_get_posts', 'remove_category');
    #4856
    Support Staff
    Keymaster

    Yes, it is the same.

    #4855
    Support Staff
    Keymaster

    Hi Nadezda,

    just remove this from header.php:

    <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/cufon-yui.js"></script>
    <script type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/Hattori_Hanzo_300.font.js"></script>
    <script type="text/javascript">
    $(document).ready(function() {
    Cufon.replace('h1',{hover: true})('h2',{hover: true})('h3',{hover: true})('h4',{hover: true})('h5',{hover: true})('h6',{hover: true})('.description',{hover: true})('#top li a',{hover: true});
    });
    </script>
    

    and then you’ll be able to set custom font in style.css.

    Best regards,
    Sinisa

    #4845
    Support Staff
    Keymaster

    Thanks for clarifying. Well, the best thing is to edit image! Make it 445px and problem solved. This is by far the best solution, cause you’ll reduce site loading time.

    You can edit image within WordPress. Just go to media library, upload image, click edit and crop it if you don’t have Photoshop. If you do, here’s video tut on how to do it:

    Regards,
    Sinisa

    #4823
    Support Staff
    Keymaster

    Hi Iana,

    You want this?
    https://postimg.org/image/ru9mg51dx/

    If so, find #slider-wrap in style.css and change margin-bottom: -30px; to margin-bottom: 0px;. That’s it.

    Regards,
    Sinisa

    #4821
    Support Staff
    Keymaster

    Here’s video tutorial on how to set up slider:

    #4819
    Support Staff
    Keymaster

    Setting thread as resolved due to inactivity.

    #4813
    Support Staff
    Keymaster

    Great! 🙂

    #4809
Viewing 15 posts - 106 through 120 (of 163 total)