Himadri Goswami

Forum Replies Created

Viewing 15 posts - 46 through 60 (of 84 total)
  • Author
    Posts
  • in reply to: GD + Caching :: Feedback Wanted #407580

    Himadri Goswami
    Expired Member
    Post count: 86

    Can somebody tell me best settings for WP rocket? When I install this, my ad listing page breaks

    in reply to: Black Friday For Renewals? #406763

    Himadri Goswami
    Expired Member
    Post count: 86

    I have not found any discount code only. What is it?

    in reply to: Blog post sidebar #404584

    Himadri Goswami
    Expired Member
    Post count: 86

    I added this for single post type printf(‘%s’, get_avatar( get_the_author_meta( ‘user_email’ ), 60 ));
    and changed the order of metas

    here is the code

    
    
    <?php
    function directory_theme_entry_meta() {
    	if ( is_sticky() && is_home() && ! is_paged() ) {
    		printf( '<span class="sticky-post">%s</span>', __( 'Featured', 'directory-starter' ) );
    	}
    
    	$format = get_post_format();
    	if ( current_theme_supports( 'post-formats', $format ) ) {
    		printf( '<span class="entry-format">%1$s<a href="%2$s">%3$s</a></span>',
    			sprintf( '<span class="screen-reader-text">%s </span>', _x( 'Format', 'Used before post format.', 'directory-starter' ) ),
    			esc_url( get_post_format_link( $format ) ),
    			get_post_format_string( $format )
    		);
    	}
    
    	
    
    	if ( 'post' == get_post_type() ) {
    		if ( is_singular() || is_multi_author() ) {
    		    printf('%s', get_avatar( get_the_author_meta( 'user_email' ), 60 ));
    			printf( '<span class="byline"><span class="author vcard"><span class="screen-reader-text">%1$s </span><a class="url fn n" href="%2$s">%3$s</a></span></span>',
    				_x( 'Author', 'Used before post author name.', 'directory-starter' ),
    				esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
    				get_the_author()
    			);
    		}
    
    		$categories_list = get_the_category_list( _x( ', ', 'Used between list items, there is a space after the comma.', 'directory-starter' ) );
    		if ( $categories_list ) {
    			printf( '<span class="cat-links"><span class="screen-reader-text">%1$s </span>%2$s</span>',
    				_x( 'Categories', 'Used before category names.', 'directory-starter' ),
    				$categories_list
    			);
    		}
    
    		$tags_list = get_the_tag_list( '', _x( ', ', 'Used between list items, there is a space after the comma.', 'directory-starter' ) );
    		if ( $tags_list ) {
    			printf( '<span class="tags-links"><span class="screen-reader-text">%1$s </span>%2$s</span>',
    				_x( 'Tags', 'Used before tag names.', 'directory-starter' ),
    				$tags_list
    			);
    		}
    	}
    
    if ( in_array( get_post_type(), array( 'post', 'attachment' ) ) ) {
    		$time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
    
    		$time_string = sprintf( $time_string,
    			esc_attr( get_the_date( 'c' ) ),
    			get_the_date(),
    			esc_attr( get_the_modified_date( 'c' ) ),
    			get_the_modified_date()
    		);
    
    		printf( '<span class="posted-on"><span class="screen-reader-text">%1$s </span><a href="%2$s" rel="bookmark">%3$s</a></span>',
    			_x( 'Posted on', 'Used before publish date.', 'directory-starter' ),
    			esc_url( get_permalink() ),
    			$time_string
    		);
    	}
    
    	if ( ! is_single() && ! post_password_required() && ( comments_open() || get_comments_number() ) ) {
    		echo '<span class="comments-link">';
    		comments_popup_link( __( 'Leave a comment', 'directory-starter' ), __( '1 Comment', 'directory-starter' ), __( '% Comments', 'directory-starter' ) );
    		echo '</span>';
    	}
    }
    in reply to: Blog post sidebar #404581

    Himadri Goswami
    Expired Member
    Post count: 86

    Thanks,

    one more question. I edited directory starter/lib/entrymeta

    but when I moved this to childtheme Supreme directory same folder or in lib, seems doesnot work. How to achieve it?

    in reply to: Blog post sidebar #404576

    Himadri Goswami
    Expired Member
    Post count: 86

    Okay done. I am only stuck in one thing.

    the blog sidebar shows list styles for recent reviews also. How to hide/remove it?

    https://ehospital.in/alopecia-treatment-options/

    in reply to: Blog post sidebar #404519

    Himadri Goswami
    Expired Member
    Post count: 86

    please ignore it. I am working on.

    Regards

    in reply to: Blog post sidebar #404489

    Himadri Goswami
    Expired Member
    Post count: 86

    even it is appearing in https://ehospital.in/register/

    in reply to: Blog post sidebar #404481

    Himadri Goswami
    Expired Member
    Post count: 86

    Yes, somewhat that is correct. But now its appearing on buddypress pages like profile page.
    Would like to know how did you achieve that?

    Secondly, these are appearing like list style
    Thirdly, can I add another sidebar to blog archive here? https://ehospital.in/updates/

    Regards


    Himadri Goswami
    Expired Member
    Post count: 86

    I think my question is skipped 🙂

    in reply to: How do I edit Template in Supreme Directory #403517

    Himadri Goswami
    Expired Member
    Post count: 86

    I want to remove the featured image on the top

    in reply to: Rating sorting Problem #403491

    Himadri Goswami
    Expired Member
    Post count: 86

    Thanks a lot.
    Is there a way to add most helpful to sorting.

    in reply to: Send Enquiry mails only received by Admin #403220

    Himadri Goswami
    Expired Member
    Post count: 86

    Okay, got it. Mail is not sent to business owner, but to the email of listing. Everything working fine

    in reply to: Send Enquiry mails only received by Admin #403218

    Himadri Goswami
    Expired Member
    Post count: 86

    Hi, I am using AMazon SES and I find there is bounces whenever Send Inquiry mails are sent.
    I had no bounces otherwise in past few weeks

    in reply to: Send Enquiry mails only received by Admin #403213

    Himadri Goswami
    Expired Member
    Post count: 86

    I forgot to mention, I use Amazon SES

    in reply to: Bug Reporting : Review Section #403156

    Himadri Goswami
    Expired Member
    Post count: 86

    please ignore as I have changed the theme to Supreme Directory

Viewing 15 posts - 46 through 60 (of 84 total)