about - admin

Forum Replies Created

  • Question status -
  • Support Staff
    Keymaster

    Hi Ismail,

    thank you for posting! In the readme is stated that it’s universal guide for all our themes, and some features do not exist in other themes. Perses Mag uses text instead of logo, so that’s why there’s no logo.psd, it’s not needed.

    You’re right about usage instructions, some screenshots are outdated since media library has changed. We’ll post video tutorials on this topic.

    Slider is pretty simple, you can just add slides into it, turn it on or off through theme options, so, it can be removed. If you want something more advanced, you can disable default slider, and use plugin instead.

    If you have more questions, feel free to ask.

    Best regards,
    Sinisa

    #4804
    Support Staff
    Keymaster

    Hi Jeanette,

    theme you bought (and every our other theme) is fully working, and all the parts you see on theme demo are packed in theme.zip file. You don’t need Photoshop to finish anything with this theme (I assume you’ve read docs about changing the logo, but theme you’ve bought doesn’t have logo/image, it uses plain text in site title). Even if it uses logo/image, there’s free alternative to Photoshop and it’s called Gimp which you can use to edit logo.psd that comes with our older themes.

    If this is not the case, please describe what you mean by “not all the parts are available”, we’re here to help. Let us know!

    Best regards,
    Sinisa

    #4799
    Support Staff
    Keymaster

    Hi Nick,

    are you sure you’ve set custom fields good? Make sure it’s slide, not Slide or SLIDE.
    If this is not the case, please send me admin login info, I’ll test it (mark reply as private).

    Best regards,
    Sinisa

    #4793
    Support Staff
    Keymaster

    Sent.

    #4770
    Support Staff
    Keymaster

    Hi Shane,

    We’re sorry if you’re having troubles.

    Now, we do not allow such thread titles, we stand behind our products, and we’re here to fix the problem if exists.

    Official version of theme is the same as free, with difference in links. So, if you used our free version (from this site), then there should be no errors in switching to paid version, they are the same.

    If theme has bug, or error, re-uploading files will not fix that. If there’s error, you’ll have it from the beginning, and once you re-upload it. So, something else is the problem here, but if it’s theme fault – be sure we’ll fix that!

    Please describe the problems. What you re-uploaded and why? What wasn’t working? URL?

    Best regards,
    Sinisa

    #4761
    Support Staff
    Keymaster

    I just resent purchase receipt to Joyce, so she’ll be able to download theme from email link.

    Regards,
    Sinisa

    #4753
    Support Staff
    Keymaster

    Sorry if I wasn’t clear enough. Yes, in functions.php. You can add filter
    add_filter( 'hybrid_site_title', 'my_custom_image' );
    after this line
    add_theme_support( 'automatic-feed-links' );

    Then function:

    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;
    
    }

    After ending } of theme setup function. To be super clear you’ll add it after this:

    add_theme_support( 'automatic-feed-links' );
    add_filter( 'hybrid_site_title', 'my_custom_image' );
    }

    Regards,
    Sinisa

    #4726
    Support Staff
    Keymaster

    Hi Henny!

    1. The same way as you did for Artemis, with one key difference:

    add_filter( 'hybrid_site_title', 'my_custom_image' );

    It’s not {$prefix}_site_title but hybrid_site_title (for newer themes).

    2. Upload that image to HeradinoMag/images folder, name it for example hover-image.png. Then find this in style.css .featured-post-title. Replace

    background: #000;
    with
    background: url(images/name-of-the-image.png) no-repeat;

    #4723
    Support Staff
    Keymaster

    Hi Krissana,

    I had to modify index.php a bit to get this working. Please backup theme.
    Theme will show now the excerpts on front page and other pages, and it will skip short codes, but you need to enter excerpts manually for each post.

    If you don’t know what excerpt is, or how it’s done, just open “En Suite Bathroom” post and scroll bellow the post editor. You’ll see a field “Excerpt” and enter there post description which will show up on front page. Excerpts are hidden by default, and you can enable them in “Screen options”.

    Regards,
    Sinisa

    #4711
    Support Staff
    Keymaster

    Yes, I was asking for your WordPress login details, and these are not working too. Please try before you post. Thanks in advance!

    #4708
    Support Staff
    Keymaster

    It’s wrong password or username, please double check.

    #4706
    Support Staff
    Keymaster

    Hi Krissana,

    please leave me your username and password once again. The old one’s don’t work anymore (mark reply as private).

    #4704
    Support Staff
    Keymaster

    Hey Henny,

    you’re not suppose to change function name here:
    add_filter( "{$prefix}_site_title", 'my_custom_image' );

    Leave that.
    my_custom_image is name of the function in which you’ll change the image.

    In this function:

    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;
    
    }

    this will call the image, and this is where you need to add image URL:
    <img src="URL TO YOUR IMAGE" alt="'. esc_attr( $title ) .'" />

    You need to set change “URL TO YOUR IMAGE”, and set link to the image (full link, like https://my-site.com/myimage.jpg).

    I hope it’s more clear now. If you still need help, feel free to ask!

    #4702
    Support Staff
    Keymaster

    Hi Henny!

    In functions.php in swt_theme_setup() function (after $prefix = hybrid_get_prefix(); ) add this:

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

    Now add this function before swt_analytics2() function:

    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;
    
    }

    Just replace URL TO YOUR IMAGE with your image URL and that’s it.

    #4700
    Support Staff
    Keymaster

    Hi,

    theme doesn’t natively supports drop downs, but we’re willing to add drop downs if buyer requests that. If you purchase it, we’ll add it.

    Best regards,
    Sinisa

    #4693
Viewing 15 posts - 121 through 135 (of 163 total)