Forum Replies Created

Viewing 20 posts - 681 through 700 (of 4,908 total)
  • Author
    Posts
  • Mahesh
    Participant

    webrightcaid: Please use the following CSS:

    #feature-slider .entry-container {
        left: unset;
        width: 100%;
        position: unset;
        padding: 20px;
    }

    And about opacity, there was a typo in the above code it should be rgba instead of rbga. I’ve corrected it now. Sorry for that.

    Regards,
    Mahesh

    in reply to: Problem with parallax frame pro all frames! #115156
    Mahesh
    Participant

    @tripandtripsa-s-a: Sorry but the link to image is not working. Please use the share link. Right now, it asks for your credentials.

    Regards,
    Mahesh

    in reply to: Translate "leave a comment" in french #115155
    Mahesh
    Participant

    @jmlan: Its working fine on mine. Check the image in the link below:
    http://bit.ly/2oWkOhp
    Please post in your site url.

    Regards,
    Mahesh

    in reply to: Display Featured Image on Post #115154
    Mahesh
    Participant

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

    Regards,
    Mahesh

    in reply to: Multisite/Network Licensing Fee #115153
    Mahesh
    Participant

    @ebetech: Generally saying, yes it is a one time fee. Once you purchase the theme, it is yours for the life time and no extra payment is required and you can use it on as many as you have owned without any third party involvement. But if you do want regular updates of the theme (highly recommended), you’ll need yearly subscription (pay the cost yearly – the cost is same). However, you can skip the year or have gaps in between. Hope you understand.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Mobile Menu Not Displaying #115152
    Mahesh
    Participant

    @rbrown3rd: Do you have any plugins installed? Please disable all the plugins one by one and check if that resolves the issue. Seems like some plugin is conflicting with the theme. Let me know further.

    Regards,
    Mahesh

    in reply to: Translate "leave a comment" in french #115099
    Mahesh
    Participant

    @jmlan: Thank you for using Lucida Pro. The theme doesn’t have any translation file yet so that’s why no translation. The translation can be achieved in two ways.
    1. Make the translation file (.po and .mo files) ( as Contribution )
    2. Override the function and use the french translated string for “Leave a comment”
    For option 2.
    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 CSS:

    function lucida_entry_meta() {
    	echo '<p class="entry-meta">';
    
    	$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() )
    	);
    
    	printf( '<span class="posted-on">%1$s<a href="%2$s" rel="bookmark">%3$s</a></span>',
    		sprintf( _x( '<span class="screen-reader-text">Posted on</span>', 'Used before publish date.', 'lucida-pro' ) ),
    		esc_url( get_permalink() ),
    		$time_string
    	);
    
    	if ( is_singular() || is_multi_author() ) {
    		printf( '<span class="byline"><span class="author vcard">%1$s<a class="url fn n" href="%2$s">%3$s</a></span></span>',
    			sprintf( _x( '<span class="screen-reader-text">Author</span>', 'Used before post author name.', 'lucida-pro' ) ),
    			esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
    			esc_html( get_the_author() )
    		);
    	}
    
    	if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) {
    		echo '<span class="comments-link">';
    		comments_popup_link( esc_html__( 'Laissez un commentaire', 'lucida-pro' ), esc_html__( '1 Comment', 'lucida-pro' ), esc_html__( '% Comments', 'lucida-pro' ) );
    		echo '</span>';
    	}
    
    	edit_post_link( esc_html__( 'Edit', 'lucida-pro' ), '<span class="edit-link">', '</span>' );
    
    	echo '</p><!-- .entry-meta -->';
    }

    Regards,
    Mahesh

    Mahesh
    Participant

    @yut666: There is some issue with .po and .mo file in German translation files. Please use the translation file from the link below. Let me know if any problem.
    http://bit.ly/2qnX31H

    Regards,
    Mahesh

    in reply to: Removing page from the homepage (Clean Box) #115096
    Mahesh
    Participant

    @chrisverrall: Thank you, we really appreciate it.

    Regards,
    Mahesh

    in reply to: Display Featured Image on Post #115095
    Mahesh
    Participant

    @shestyln: Go to Dashboard=> Appearance=> Theme Options=> Layout Options and select Full Size in Single Page/Post Image Layout option.

    Regards,
    Mahesh

    in reply to: Removing page from the homepage (Clean Box) #115092
    Mahesh
    Participant

    @chrisverrall: Thank you for your appreciation. If you like my support and Clean Box theme then please support by providing your valuable review and rating at https://wordpress.org/support/view/theme-reviews/clean-box?rate=5#postform
    Have a nice day!

    Regards,
    Mahesh

    in reply to: Double gap between features #115087
    Mahesh
    Participant

    @tiphaineb: Yes, its clear and I checked the same on our server but got no such issue. So it would be better to check on your site and sort out the issue. Let me know further.

    Regards,
    Mahesh

    in reply to: Front page – latest posts – limit number #115085
    Mahesh
    Participant

    @tiphaineb: You mean to use other pagination type? Go to Dashboard=> Appearance=> Customize=> Theme Options=> Pagination Options and select Numeric in Pagination type.

    Regards,
    Mahesh

    in reply to: Removing page from the homepage (Clean Box) #115084
    Mahesh
    Participant

    @chrisverrall: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    .home #content {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Mobile Menu Text Color #115083
    Mahesh
    Participant

    @steinundtechnik: Go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    #hgroup-wrap ul.menu a {
        color: #831515;
    }

    Regards,
    Mahesh

    in reply to: Woo Commerce Sidebar Not Showing #115082
    Mahesh
    Participant

    @sydneyjb: For fully WooCommerce compatibility, I recommend you to upgrade to Pro version. Only Pro version is fully compatible with WooCommerce. The option you seek is featured in Pro version.

    Regards,
    Mahesh

    Mahesh
    Participant

    @blizzard-watsongmail-com: Thank you for using Clean Education Pro.

    Regards,
    Mahesh

    in reply to: Primary Menu Missing After Update #115074
    Mahesh
    Participant

    @vasikk: Checked your site, seems you’ve already hidden the menu in the mobile. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Removing page from the homepage (Clean Box) #115069
    Mahesh
    Participant

    @chrisverrall: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Mobile Menu Text Color #115068
    Mahesh
    Participant

    @bigoslesli: Thank you so much for helping us out. We really appreciate it. Have a nice day!


    @steinundtechnik
    : How may I help you further, please clarify more. I don’t quite get you in “but first navigation-point is only visible after touching menu icon!”

    Regards,
    Mahesh

Viewing 20 posts - 681 through 700 (of 4,908 total)