Forum Replies Created

Viewing 7 posts - 31 through 37 (of 37 total)
  • Posted in:
  • in reply to: How do I change the Portfolio hover colour? #140714
    conorlumsden
    Member
    Post count: 37

    Hi Kyle,

    Thanks for the reply! That doesn’t seem to be working for me. The hover colours are different from box to box, first one is coral red, the next one is black, then blue, green etc.

    in reply to: How do I change the Portfolio hover colour? #140633
    conorlumsden
    Member
    Post count: 37

    I was messing around with the Inspect Element tool in Chrome and was able to edit the color from there (see attached). What is the best way to go about making all of hover colors black?

    Attachments:
    You must be logged in to view attached files.
    in reply to: Video height issue #105582
    conorlumsden
    Member
    Post count: 37

    Yeah, that worked, thanks! Is there something I can do about the other missing CSS?

    in reply to: Video height issue #105581
    conorlumsden
    Member
    Post count: 37

    I just bought it maybe a month ago! Will try this now and see if it works. Thanks Ed!

    in reply to: Featured Image/Facebook preview issue #100245
    conorlumsden
    Member
    Post count: 37

    I added this to functions.php and it seemed to fix it. Thanks for the help Kyle and Melanie.

    // Facebook Open Graph
    add_action('wp_head', 'add_fb_open_graph_tags');
    function add_fb_open_graph_tags() {
    	if (is_single()) {
    		global $post;
    		if(get_the_post_thumbnail($post->ID, 'thumbnail')) {
    			$thumbnail_id = get_post_thumbnail_id($post->ID);
    			$thumbnail_object = get_post($thumbnail_id);
    			$image = $thumbnail_object->guid;
    		} else {	
    			$image = ''; // Change this to the URL of the logo you want beside your links shown on Facebook
    		}
    		//$description = get_bloginfo('description');
    		$description = my_excerpt( $post->post_content, $post->post_excerpt );
    		$description = strip_tags($description);
    		$description = str_replace("\"", "'", $description);
    ?>
    <meta property="og:title" content="<?php the_title(); ?>" />
    <meta property="og:type" content="article" />
    <meta property="og:image" content="<?php echo $image; ?>" />
    <meta property="og:url" content="<?php the_permalink(); ?>" />
    <meta property="og:description" content="<?php echo $description ?>" />
    <meta property="og:site_name" content="<?php echo get_bloginfo('name'); ?>" />
    
    <?php 	}
    }
    
    function my_excerpt($text, $excerpt){
    	
        if ($excerpt) return $excerpt;
    
        $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
    	 ]+/", $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('wp_trim_excerpt', $text, $excerpt);
    }
    in reply to: Featured Image/Facebook preview issue #99911
    conorlumsden
    Member
    Post count: 37

    Sorry, I should mention that the problem still persists.

    in reply to: Featured Image/Facebook preview issue #99904
    conorlumsden
    Member
    Post count: 37

    Thank you for the quick reply! I have deactivated all plugins and have tried on different computers. I don’t think I had ever put it into maintenance mode either.

Viewing 7 posts - 31 through 37 (of 37 total)