about - admin

Forum Replies Created

  • Question status -
  • Support Staff
    Keymaster

    Hi Andreas,

    no, you can just reply here and set reply as private (checkbox before submit button).

    #5311
    Support Staff
    Keymaster

    Hi Andreas,

    can you please give me admin access to your site? Mark reply as private.

    Regards,
    Sinisa

    #5309
    Support Staff
    Keymaster

    This seems like it’s on Bloglovin’s end. I tried couple blogs to add, with default theme, and I can’t add any site. Anyway, this kind of sites are looking for a feed url, and that url has nothing to do with any theme, like: https://www.simplewpthemes.com/feed/.

    If you have any other questions, let me know.

    Best regards,
    Sinisa

    #5300
    Support Staff
    Keymaster

    I meant was there error code, some additional message, anything else beside the plain text you’ve mentioned.
    The only difference between free and paid version is the footer link, so it doesn’t work on paid version too.
    Is it working with default theme?

    Regards,
    Sinisa

    #5299
    Support Staff
    Keymaster

    Hello Irene,

    what kind an error are you getting? Is it working with default theme? To be honest, I’m not familiar with Bloglovin.

    Regards,
    Sinisa

    #5297
    Support Staff
    Keymaster

    Here’s tutorial on how to install theme.

    #5295
    Support Staff
    Keymaster

    Hi Sami,

    you won’t be losing content, just delete the old theme, and install new one via Appearance / Themes.

    Best regards,
    Sinisa

    #5294
    Support Staff
    Keymaster

    Hi Andreas,

    I responded you yesterday here, and on your email, but looks like something went wrong and answer was not posted here.

    I’ve updated theme, and you should first re-download it. I added some extra styles for WordPress gallery.
    I also sent you 3 files on email which you need to replace in this new theme (that will enable cropping).
    Once you do that, regenerate thumbnails with wp regenerate thumbnails plugin.

    For the posts where you don’t want featured image, but you want to show images – use gallery. Put images inside the gallery, preceding by a read more tag, and it will work as you imagined (you’ll also get more consistent look).

    If you have any more questions, feel free to ask.

    Regards,
    Sinisa

    #5256
    Support Staff
    Keymaster

    You’re welcome, we’re here if you have any questions.

    Best regards,
    Sinisa

    #5229
    Support Staff
    Keymaster

    Hi Andreas,

    please re-download theme. We added drop down support.

    Best regards,
    Sinisa

    #5224
    Support Staff
    Keymaster

    Hi Freek,

    thank you for the compliment, we’re glad you like the theme.
    There is no built in option for that, but here’s a piece of code which you can place in functions.php right after this function:

    	/* Short titles for news ticker */
    	function short_title() {
    		
    		$title = get_the_title();
    		$length = strlen( $title );
    		
    		if ( $length > 30 ) 
    			echo substr( $title, 0, 27 ) .'...';			
    		else 
    			echo $title;					
    	}
    add_filter( "hybrid_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;
    
    }

    Now you just need to replace “URL TO YOUR IMAGE” with your image url.
    If you have more questions, feel free to ask.

    Best regards,
    Sinisa

    #5223
    Support Staff
    Keymaster

    Hello Jo

    You need to change (edit/replace) -> plus.png and singleplus.png <- images. If you need any further assistance don’t hesitate to ask 🙂 Regards, Pedja

    #5195
    Support Staff
    Keymaster

    Hi,

    no, there isn’t. If you have any other questions, feel free to ask.

    Regards,
    Sinisa

    #5180
    Support Staff
    Keymaster

    Hi,

    put this in functions.php after $comment_count = 0;

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

    and replace URL TO YOUR IMAGE with image link.

    Best regards,
    Sinisa

    #5178
    Support Staff
    Keymaster

    Hi Romuald,

    please re-download theme. It should be working now.
    Let us know if you have any issues.

    Regards,
    Sinisa

    #5162
Viewing 15 posts - 61 through 75 (of 163 total)