Forum Replies Created

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • in reply to: Order of Posts on Homepage News module #171543
    ebetech
    Participant

    @Skandha, ah-ha! Sorry about that. Turns out, I was using the wrong account to view my subscription. Logged into my other account and found the update. Thanks! Sorry for the bother.

    in reply to: Order of posts on homepage #171072
    ebetech
    Participant

    Sorry, I should have originally posted in the Clean Education Pro forum.

    Thanks for your hard work! Have a great day.

    in reply to: Order of posts on homepage #170988
    ebetech
    Participant

    Greetings! My websites are also experiencing this issue. But we are using Clean Education Pro theme.

    Do you have an update? Or the fix-it code?

    Thanks!

    PS – I left a positive review on WP.

    in reply to: Search Results not displaying Shortcode content #156812
    ebetech
    Participant

    Never mind. After some research, I found the solution. It appears to be a WordPress core design. To display the shortcode content in results, add the following to your functions.php:

    //Replace wp_trim_excerpt with a commented out strip_shortcodes()
    function improved_trim_excerpt($text) {
    	$raw_excerpt = $text;
    	if ( '' == $text ) {
    		$text = get_the_content('');
    
    		//$text = strip_shortcodes( $text );
    
    		$text = apply_filters('the_content', $text);
    		$text = str_replace(']]>', ']]>', $text);
    		$text = strip_tags($text);
    		$excerpt_length = apply_filters('excerpt_length', 55);
    		$excerpt_more = apply_filters('excerpt_more', ' ' . '[...]');
    		$words = preg_split("/[\n\r\t ]+/", $text, $excerpt_length + 1, PREG_SPLIT_NO_EMPTY);
    		if ( count($words) > $excerpt_length ) {
    			array_pop($words);
    			$text = implode(' ', $words);
    			$text = $text . $excerpt_more;
    		} else {
    			$text = implode(' ', $words);
    		}
    	}
    	return apply_filters('improved_trim_excerpt', $text, $raw_excerpt);
    }
    remove_filter('get_the_excerpt', 'wp_trim_excerpt');
    add_filter('get_the_excerpt', 'improved_trim_excerpt');

    Thanks for the quick reply. Awesome theme. Awesome support.

    in reply to: Missing Options in Customize Colors #133395
    ebetech
    Participant

    Many thanks and cheers!

    in reply to: Change Default No-Featured-Image Images #128222
    ebetech
    Participant

    Thanks for the feedback. No need to hire. I can do it. Take care!

    in reply to: Multisite/Network Licensing Fee #115180
    ebetech
    Participant

    For the life of me, I cannot find the “yearly subscription” fee on your website. Is it $49 per year? Do you offer bulk discounts, like for 5 or 10 years? Also, do you have a changelog for Clean Education Pro? Thanks again!

    in reply to: Override Primary Menu via Child Theme #115057
    ebetech
    Participant

    Awesome, that worked. Why didn’t I see that? Also, I forgot to include the new child file in the functions.php file.

Viewing 8 posts - 1 through 8 (of 8 total)