Some adjustments should be made on the blog page.

This topic has 15 replies, 4 voices, and was last updated 9 hours, 53 minutes ago ago by Andrew Mitchell

  • Avatar: Murad
    Murad
    Participant
    May 10, 2024 at 19:04

    Hello,

    1) I want to remove the printer part from the article. The size of the title image in the article is too large, is it possible to reduce it?

    2) I want you to remove the search box, Uncategorized category, ARCHIVES section.

    3) I want my posts to be on my blog page.

    Content is visible for topic creator and
    support staff only.
    Files is visible for topic creator and
    support staff only.
    14 Answers
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    May 11, 2024 at 08:08

    Hello, Murad,

    Thank you for reaching out to us with your requests. We are more than happy to assist you with the modifications you need for your website.

    1/ Custom CSS code:

    .single-post .meta-post {
        display: none;
    }
    .single-post .wp-picture img {
        max-width: 300px;
    }
    .single-post .post-heading {
        background: none !important;
    }

    2/ Appearance > Widgets > edit the content of the Main sidebar.

    https://xstore.helpscoutdocs.com/article/199-how-to-remove-the-uncategorized-category-from-wordpress

    3/ Select the Blog page here https://prnt.sc/XTaNWsXhsQSy

    If you have any additional questions or concerns, please do not hesitate to reach out to us. Our support team is always available to assist you.

    Best Regards,
    8Theme’s Team

    Avatar: Murad
    Murad
    Participant
    May 11, 2024 at 08:52

    1) https://prnt.sc/XTaNWsXhsQSy My blog page does not appear on the link you sent me.

    2) Make the title part of my blog post under the image as in the link.
    Let it be these three. it’s time to share the post. The look counter. Comments.

    3) Let the first letter of the title be large, the others are small.

    Content is visible for topic creator and
    support staff only.
    Files is visible for topic creator and
    support staff only.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    May 11, 2024 at 14:03

    Hello, Murad,

    1/ Please check now – https://prnt.sc/lth32zdhqsDn

    2/ Do you mean post-comments-count is not shown? Please make sure that this situation is not caused by your custom code in the child theme. To do so, go to Appearance > Themes > activate parent theme and check the result. Please note that we are not responsible for your custom code in the child theme.

    3/ Have you solved this https://prnt.sc/H0QQgIG1mTdW ?

    Best Regards,
    8Theme’s Team

    Avatar: Murad
    Murad
    Participant
    May 11, 2024 at 16:56

    I have sent you a sample picture and a link to the site. I want you to do it just like there.

    Content is visible for topic creator and
    support staff only.
    Files is visible for topic creator and
    support staff only.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    May 12, 2024 at 10:07

    Hello, Murad,

    We are writing to seek clarification regarding your recent response, as it was not entirely clear to us.

    Could you please confirm whether the comments count is displayed when the parent theme is activated?

    Best Regards,
    8Theme’s Team

    Avatar: Murad
    Murad
    Participant
    May 12, 2024 at 10:49

    The number of comments is displayed, my request is different. I have sent you a sample picture and a link to the site. I want you to do it just like there.

    Content is visible for topic creator and
    support staff only.
    Files is visible for topic creator and
    support staff only.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    May 12, 2024 at 16:33

    Hello, Murad,

    Private Content

    Best Regards,
    8Theme’s Team

    Content is visible for topic creator and
    support staff only.
    Avatar: Murad
    Murad
    Participant
    May 12, 2024 at 16:55

    I want you to make my stellage site blog posts like the post of my vacuum cleaner site that I forwarded to you. (i want you to add the parts I drew in the picture to my stellage site)

    Content is visible for topic creator and
    support staff only.
    Files is visible for topic creator and
    support staff only.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    May 13, 2024 at 08:59

    Hello,

    Private Content

    Best Regards,
    8Theme’s Team

    Content is visible for topic creator and
    support staff only.
    Avatar: Murad
    Murad
    Participant
    May 13, 2024 at 11:30

    Yes, it happened. Keep the other parts, but remove the author part.

    Content is visible for topic creator and
    support staff only.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    May 13, 2024 at 13:18

    Hello,

    We suggest you explore the solutions provided in the following discussions:
    https://www.8theme.com/topic/how-to-hide-author-meta-in-single-post/
    https://www.8theme.com/topic/post-meta-on-single-post/

    Best Regards,
    8Theme’s Team

    Avatar: Murad
    Murad
    Participant
    May 13, 2024 at 17:33

    I have sent you my ftp server information. On my other site, you did this for me. I want you to do the same action on this site.

    Content is visible for topic creator and
    support staff only.
    Avatar: Justin
    Luca Rossi
    Support staff
    May 14, 2024 at 08:13

    Hi @Murad,

    To remove the author part from the post meta, please add the following code under functions.php file locates in your child theme:

    
    function etheme_byline($atts = array() ) {
    
    	$atts = shortcode_atts( array(
    		'author' => 0,
    		'time' => 0,
    		'slide_view' => 0,
    		'ID' => null,
    		'views_counter' => true,
    		'in_slider' => false,
    		'single' => false
    	), $atts );
    
    	$blog_layout 		   = etheme_get_option( 'blog_layout', 'default' );
    	if ( $atts['in_slider'] ) {
    		$atts['views_counter'] = false;
    	}
    
    	?>
    	<div class="meta-post">
    		<?php do_action('etheme_before_post_meta_content', $atts['single']); ?>
    		<?php if( ! in_array( $blog_layout , array( 'timeline', 'timeline2', 'grid2' ) ) || $atts['single'] ): ?>
    			<time class="entry-date published updated" datetime="<?php echo get_the_time('F j, Y', $atts['ID']); ?>">
    				<?php echo get_the_time(get_option('date_format'), $atts['ID']); ?></time>
    
    			<?php if ( $atts['time'] ):
    				esc_html_e( 'at', 'xstore' );
    				echo get_the_time( get_option( 'time_format' ), $atts['ID']);
    			endif;
    
    		elseif( $atts['slide_view'] == 'timeline2' ) :
    			esc_html_e( 'Posted by', 'xstore' );
    			the_author_posts_link();
    		endif;
    
    		if ( $atts['views_counter'] && etheme_get_option( 'views_counter', 1 ) ): ?>
    			<span class="meta-divider">/</span>
    			<?php etheme_get_views( $atts['ID'], true );
    		endif;
    
    		if(comments_open($atts['ID']) && ! post_password_required($atts['ID']) ) :
    			if ( !$atts['in_slider']) { ?>
    				<span class="meta-divider">/</span>
    			<?php }
    			if ($atts['ID'] ):
    
    				$comments_number = get_comments_number( $atts['ID'] );
    
    				if ($comments_number === 0) {
    					$comments_number = '<span>0</span>';
    				} elseif($comments_number === 1){
    					$comments_number = '<span>1</span>';
    				} else{
    					$comments_number = '<span>' . $comments_number . '</span>';
    				}
    
    				printf(
    					'<a href="%s" class="post-comments-count">%s</a>',
    					get_the_permalink($atts['ID']),
    					$comments_number
    
    				);
    
    			else:
    				comments_popup_link('<span>0</span>','<span>1</span>','<span>%</span>','post-comments-count');
    			endif;
    		endif; ?>
    		<?php do_action('etheme_after_post_meta_content', $atts['single']); ?>
    	</div>
    	<?php
    }
    

    Hope it helps!

    Avatar: Andrew Mitchell
    Andrew Mitchell
    Support staff
    May 20, 2024 at 10:55

    Dear Murad,

    We hope you’re reveling in the experience our theme brings! Your enthusiasm is what fuels our passion. Would you be so kind as to channel that energy into a 5-star rating on ThemeForest? Your feedback is the spark that lights our way!

    Click here to spread the love: https://themeforest.net/downloads

    Thank you for being an integral part of our journey!

    Best Regards,
    The 8Theme Team

  • Viewing 15 results - 1 through 15 (of 15 total)

The issue related to '‘Some adjustments should be made on the blog page.’' has been successfully resolved, and the topic is now closed for further responses

We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.