Forum Replies Created

Viewing 20 posts - 2,721 through 2,740 (of 4,908 total)
  • Author
    Posts
  • in reply to: Header Image Slider #99603
    Mahesh
    Participant

    @ffwa: I recommend you to hire a customizer for this.

    Regards,
    Mahesh

    in reply to: Remove Or Disable Featured Slider On Mobile Version #99601
    Mahesh
    Participant

    @mataiblis70: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    @media screen and (max-width: 767px) {
    	#main-slider {
    		display: none;
    	}
    }

    Regards,
    Mahesh

    in reply to: post meta item locations #99600
    Mahesh
    Participant

    ikh1: For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php , add the following code:

    function adventurous_footer_meta() {
    
    	// Translators: used between list items, there is a space after the comma.
    	$categories_list = get_the_category_list( __( ', ', 'adventurous' ) );
    
    	// Translators: used between list items, there is a space after the comma.
    	$tag_list = get_the_tag_list( '', __( ', ', 'adventurous' ) );
    
    	$date = sprintf( '<a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s">%4$s</time></a>',
    		esc_url( get_permalink() ),
    		esc_attr( get_the_time() ),
    		esc_attr( get_the_date( 'c' ) ),
    		esc_html( get_the_date( 'n/d/Y' ) )
    	);
    
    	// Translators: 1 is category, 2 is tag, 3 is the date and 4 is the author's name.
    	if ( $tag_list ) {
    		$utility_text = __( '<span class="on-date">%1$s</span> <span class="in-category">%2$s</span><span class="sep">, </span><span class="in-tag">%3$s</span>', 'adventurous' );
    	} elseif ( $categories_list ) {
    		$utility_text = __( '<span class="on-date">%1$s</span> <span class="in-category">%2$s</span>', 'adventurous' );
    	}
    
    	printf(
    		$utility_text,
    		$date,
    		$categories_list,
    		$tag_list
    	);
    }

    Then go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .entry-header .entry-meta {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: 2 images #99598
    Mahesh
    Participant

    @thepilgrim1938gmx-com: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Fatal Error In Blog Page #99597
    Mahesh
    Participant

    @luismarioochoa: You are using child theme, please try using parent theme, and check if the issue persist. If not, the issue is within the child theme.

    Regards,
    Mahesh

    in reply to: Menu overlapped by site origin hero #99596
    Mahesh
    Participant

    @chinseng93: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .main-navigation {
        z-index: 100;
    }

    Regards,
    Mahesh

    in reply to: Justify Excerpts #99484
    Mahesh
    Participant

    @scatmax: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Featured Content Image and Title in one Line #99482
    Mahesh
    Participant

    @robincox: Can you at least send me an image of the issue you are facing. It may help me to help you.

    Regards,
    Mahesh

    in reply to: Featured Slider?? #99480
    Mahesh
    Participant

    @jessy:
    1. This can be avoided using Custom Menus. If you want to use Post slider instead, I recommend you to upgrade to pro.
    2. Full-width layout is a Pro feature, I recommend you to upgrade to pro. Please post in your site URL, may I be able to help you with Custom CSS.

    Regards
    Mahesh

    in reply to: Featured Image not displaying in a particular page #99473
    Mahesh
    Participant

    @luismarioochoa: Seems like you are using a child theme. Please switch to Parent theme and check if the issue persists.
    And yes, please check the meta box options for header image too. Go to edit page and scroll to FullFrame Options and click on Header Featured Image Options and click enable and Update. Hope this helps.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Turn Featured Slider off only on smartphones #99464
    Mahesh
    Participant

    @accucomm: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    @media screen and (max-width: 767px) {
        #feature-slider {
            display: none;
        }
    }

    Regards,
    Mahesh

    in reply to: WooCommerce Side Bar #99463
    Mahesh
    Participant

    @bigoslesli: There has been a small bug in the theme which is causing the issue and will be fixed in the next update which will be released soon.
    To fix the issue, you can create child theme, then add the following code in child theme’s functions.php:

    function jomsom_woocommerce_start() {
        echo '<div id="primary" class="content-area"><main role="main" class="site-main woocommerce" id="main"><div class="woocommerce-wrap">';
    }
    
    function jomsom_woocommerce_end() {
        echo '</div><!-- .woocommerce-wrap --></main><!-- #main --></div><!-- #primary -->';
    }

    You can find more details on creating child theme HERE.

    Regards,
    Mahesh

    in reply to: How to edit text in entry-meta (Posted on etc.) #99457
    Mahesh
    Participant

    @makintour: The string is in file inc/template-tags.php line 86. You can either modify this line (NOT RECOMMENDED – as you’ll lose it on theme update). Or create a child theme and add following code in your child theme’s functions.php. You can find more details on creating child theme HERE.

    function fabulous_fluid_posted_on() {
    	$time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
    	if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
    		$time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time><time class="updated" datetime="%3$s">%4$s</time>';
    	}
    
    	$time_string = sprintf( $time_string,
    		esc_attr( get_the_date( 'c' ) ),
    		esc_html( get_the_date() ),
    		esc_attr( get_the_modified_date( 'c' ) ),
    		esc_html( get_the_modified_date() )
    	);
    
    	$posted_on = sprintf(
    		esc_html_x( 'Posted on %s', 'post date', 'fabulous-fluid-pro' ),
    		'<a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . $time_string . '</a>'
    	);
    
    	$byline = sprintf(
    		esc_html_x( 'by %s', 'post author', 'fabulous-fluid-pro' ),
    		'<span class="author vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '">' . esc_html( get_the_author() ) . '</a></span>'
    	);
    
    	echo '<span class="posted-on">' . $posted_on . '</span><span class="byline"> ' . $byline . '</span>'; // WPCS: XSS OK.
    
    }

    Note: Please change Posted on to your desired text in the above code.

    Regards,
    Mahesh

    in reply to: Justify Excerpts #99456
    Mahesh
    Participant

    @scatmax: Please post in your site url, so I can see the issue. How are you getting image in excerpt? I’m a bit confused. Let me know further.

    Regards,
    Mahesh

    in reply to: Pagination issue article on mobile #99455
    Mahesh
    Participant

    @paologrosso: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Featured Content Image and Title in one Line #99454
    Mahesh
    Participant

    @robincox: Please post in your site url. So I can see the changes you’ve made and the issue you are facing.

    Regards,
    Mahesh

    in reply to: Article pictures aren't show on blog page #99424
    Mahesh
    Participant

    @arurazagmail-com: I do understand what you mean. But just to check whether it is a theme issue or not, I recommend to change the theme and check if the sharing works or not. If the problem persists, its not a theme issue and we’ll be unable to help on that. But if you do not get any problem on other theme, let me know, and we’ll see through it. And please let me know which plugin and version are you using?

    Regards,
    Mahesh

    in reply to: Pagination issue article on mobile #99422
    Mahesh
    Participant

    @paologrosso: Didn’t notice that earlier. Its kinda weird. May be problem of caching. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Layout Options and make sure, Show Excerpt is selected in Archive Content Layout option.
    Let me know further.

    Regards,
    Mahesh

    in reply to: H1 is clickable on pages #99421
    Mahesh
    Participant

    @wouwonline: For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then copy content-page.php file from parent theme folder to your child theme folder. And edit the the file. Go to line 18 and replace:
    <h1 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php echo esc_attr( sprintf( __( 'Permalink to %s', 'catch-kathmandu' ), the_title_attribute( 'echo=0' ) ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
    with the following:
    <h1 class="entry-title"><?php the_title(); ?></h1>

    Regards,
    Mahesh

    in reply to: new additions to child theme css not reading #99399
    Mahesh
    Participant

    @effess: Its okay, I’m glad that you found the issue. Have a nice day!

    Regards,
    Mahesh

Viewing 20 posts - 2,721 through 2,740 (of 4,908 total)