Forum Replies Created

Viewing 20 posts - 441 through 460 (of 4,903 total)
  • Author
    Posts
  • in reply to: Font #116800
    Mahesh
    Participant

    @laurenmichelleherrera: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Menu Issues on Parallax Frame #116799
    Mahesh
    Participant

    @jcmoch: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Change word Menu to Menü #116798
    Mahesh
    Participant

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

    #mobile-header-left-menu .mobile-menu-text {
    	visibility: hidden;
    	position: relative;
    }
    
    #mobile-header-left-menu .mobile-menu-text:after {
    	visibility: visible;
    	position: absolute;
    	top: 0;
    	left: 5px;
    	content: "Menü";
    }

    Regards,
    Mahesh

    in reply to: Main Menu is missing after update v4.5.4 t0 4.6.2 #116794
    Mahesh
    Participant

    @emree025: Sidr Menu was replaced by Custom Menu script in Version 4.6.
    Where actually do you want the menu to appear? Currently, its right below the Logo.

    Regards,
    Mahesh

    in reply to: featured widget content #116747
    Mahesh
    Participant

    @wolpertinger: Does this issue persist on parent theme as well? Do you have any plugins? Try disabling the plugins and check if that resolves the issue.

    Regards,
    Mahesh

    in reply to: clean journal header image and header top menu #116745
    Mahesh
    Participant

    @prafulla: Please post in your site url.

    Regards,
    Mahesh

    in reply to: Edit/remove sliding header on home page #116744
    Mahesh
    Participant

    @dariajanssen: The image you’ve mentioned is from the Featured Slider, to disable this section, go to Dashboard=> Appearance=> Customize=> Featured Slider=> Slider Options and select Disable in Enable Slider option.

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Include featured image in search results #116740
    Mahesh
    Participant

    @rawikltd: Thank you 🙂 I could access it and have corrected it. If you want to change it anytime, go to Dashboard=> Appearance=> Customize=> Theme Options=> Content Featured Image Option and select the image size you desire or disable to remove the featured image.

    Regards,
    Mahesh

    Mahesh
    Participant

    @paedagogisches-zentrum: You have an issue in your child theme. The style.css is not loading properly. The code should be copied into child theme’s functions.php not in style.css.
    Let me know further.

    Regards,
    Mahesh

    in reply to: How to remove link on author in the breadcrumb #116735
    Mahesh
    Participant

    @dlyscouleurs: I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review? Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated.
    https://wordpress.org/support/theme/catch-responsive/reviews/#postform

    Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know.

    Regards,
    Mahesh

    in reply to: Featured image to side, not top, makes sloppy layout #116734
    Mahesh
    Participant

    @lizzie: There is a small bug in the theme. This will be fixed on the next update. We’ll let you know as soon as the update is released.

    Regards,
    Mahesh

    in reply to: Mobile Menu doesn't work #116733
    Mahesh
    Participant

    @ibass: Its because of the Custom CSS you are using. Please remove the following CSS:

    .sidr-open .mobile-menu a { color: #ffffff; }
    .sidr { background-color: #560001; }
    .sidr ul li:hover>a, .sidr ul li:hover>span, .sidr ul li.active>a, .sidr ul li.active>span, .sidr ul li.sidr-class-active>a, .sidr ul li.sidr-class-active>span { background: none #560001; color: #fff; box-shadow: none; }
    .sidr ul li ul li a, .sidr ul li ul li span { background: none #ffffff; color: #ffffff; box-shadow: none; }
    .sidr ul li ul li:hover>a, .sidr ul li ul li:hover>span, .sidr ul li ul li.active>a, .sidr ul li ul li.active>span, .sidr ul li ul li.sidr-class-active>a, .sidr ul li ul li.sidr-class-active>span { box-shadow: none; }
    .sidr ul li { border-color: #ffffff; }
    #header-content { padding: 0; clip: rect(1px 1px 1px 1px); /* IE7 */ clip: rect(1px, 1px, 1px, 1px); position: absolute; }

    Regards,
    Mahesh

    in reply to: Insert Category Excerpts into Static Front Page #116732
    Mahesh
    Participant

    @sandysandybalascak-com: 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, create page.php and content-cat.php file and copy the code from the link below respectively.

    page.php: http://bit.ly/2qRx7MN

    content-cat.php: http://bit.ly/2qWcPgc

    Let me know if any problem.

    Regards,
    Mahesh

    Mahesh
    Participant

    @paedagogisches-zentrum: 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 function.php add the following codes:

    if ( ! function_exists( 'clean_education_child_polylang_invalidcache' ) ) :
    /**
     * Template for Clearing Polylang Invalid Cache
     *
     */
    function clean_education_child_polylang_invalidcache() {
    	delete_transient( 'clean_education_promotion_headline' );
    } // clean_education_child_polylang_invalidcache
    endif;
    add_action( 'after_setup_theme', 'clean_education_child_polylang_invalidcache' );
    
    function clean_education_child_polylang() {
    	if ( function_exists( 'pll_register_string' ) ) {
    		$options 	= clean_education_get_theme_options();
    
    		$promotion_title           = $options['promotion_headline_title'];
    		$promotion_content         = $options['promotion_headline_content'];
    		$promotion_button_text_1   = $options['promotion_headline_button'];
    		$promotion_button_text_2   = $options['promotion_headline_button_2'];
    
    		pll_register_string( 'promotion_title', $promotion_title );
    		pll_register_string( 'promotion_content', $promotion_content );
    		pll_register_string( 'promotion_button_text_1', $promotion_button_text_1 );
    		pll_register_string( 'promotion_button_text_2', $promotion_button_text_2 );
    	}
    }
    add_action ( 'admin_init', 'clean_education_child_polylang' );

    Then use the plugin’s string translation.

    Regards,
    Mahesh

    in reply to: Problems with theme update #116615
    Mahesh
    Participant

    @sziszi: I checked your site and the Additional CSS is working fine. Let me know further.

    Regards,
    Mahesh

    in reply to: Footer menu not displayed on mobile devices #116614
    Mahesh
    Participant

    @maciejrzeszutko: I hope I was able to resolve your issue. Would you mind taking a few minutes to write a review for me please? I’d really love to know what you think of my support. Your feedback is deeply valued as it will help potential clients read about your experience and also help me improve.
    https://wordpress.org/support/theme/clean-magazine/reviews/#postform
    Thank you so much for your help!

    Regards,
    Mahesh

    Mahesh
    Participant

    @kakkerlat: I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review? Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated.
    https://wordpress.org/support/theme/full-frame/reviews/#postform
    Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know.

    Regards,
    Mahesh

    in reply to: Is Full Width possible? #116612
    Mahesh
    Participant

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

    .site {
        max-width: unset;
    }

    Regards,
    Mahesh

    in reply to: Menu – Line separator #116570
    Mahesh
    Participant

    @vasikk: Thank you so much for your valuable review and rating. I have read your comments. They were really helpful. I greatly appreciate you took the time to write them. Have a nice day! Thank you!

    Regards,
    Mahesh

    in reply to: Problems with theme update #116567
    Mahesh
    Participant

    @sziszi: Please post in your site url.

    Regards,
    Mahesh

Viewing 20 posts - 441 through 460 (of 4,903 total)