Forum Replies Created

Viewing 20 posts - 681 through 700 (of 4,903 total)
  • Author
    Posts
  • 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

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

    @vasikk: Checked you child theme and found the issue. In you child theme’s style.css, you have following code in line 43. Please remove it.

    #branding .menu-access-wrap {
        display: none !important;
    }

    After removing the code, please clear all caching and check if that resolves the issue.

    Regards,
    Mahesh

    in reply to: Exclude sidebar from a single page? #115019
    Mahesh
    Participant

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

    .page-id-383.no-sidebar.content-width #main {
        width: 100%;
    }

    Regards,
    Mahesh

    in reply to: Exclude sidebar from a single page? #115015
    Mahesh
    Participant

    @shestyln: I understand what you mean. Parallax Frame free version has limited features. It only features No Sidebar(Content Width) option. Full width option is available in Pro version. I recommend you to upgrade to Pro.
    This can be achieved with Custom CSS too. Please post in your site url with the specific page and credentials.

    Regards,
    Mahesh

    in reply to: Exclude sidebar from a single page? #115008
    Mahesh
    Participant

    @shestyln: Yes, this is possible. Go to edit page of the very page you want to exclude the sidebar, scroll down to the bottom. And select No Sidebar(Content Width) option in Layout Option in Parallax Frame Options. Then click Update.

    Regards,
    Mahesh

    Mahesh
    Participant

    @blizzard-watsongmail-com: Clean Education Free version has only right sidebar feature. If you want to have left sidebar, I recommend you to upgrade to Pro version. If you want to have vertically menu on the right sidebar, go to Dashboard=> Appearance=> Menus then Create a menu and drag all the pages (menu items) you want to display in as menu and click Save Menu. Then Go to Dashboard=> Appearance=> Widgets and drag and drop Custom Menu widget to Primary Sidebar widget area and select the menu you’ve just created and click Save.
    Let me know if any problem.

    Regards,
    Mahesh

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