Okay
  Public Ticket #3564170
Blog articles without read more, linking
Closed

Comments

  • Gerdy started the conversation

    Hi there


    I would like to disable the click on the title, just the articles with images and video embed options directly under each other on the main blog page. 

    How can I tweak that please.

    Thanks a lot in advance

  •  1,560
    Laborator replied

    Hi there,

    If you want to disable title links from being clickable then add the following CSS to Custom CSS:

    .wpb_wrapper .lab-blog-posts .blog-post-entry .blog-post-content-container .blog-post-title a, 
    .blog-posts .post-item .post-details .post-title a {
        pointer-events: none;
    }
    

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  • Gerdy replied

    Ok, thanks, that works, but I want to see the complete text from the article as well as the embedded video's I placed in an article. How can I make that visible? 

    "..." are added now and I can't see the images or videos on the posts, articles.

    https://www.vdmgraphics.com/blog-2/

    Thank you very much Art

  •  1,560
    Laborator replied

    Hi there,

    To increase the post excerpt you will need a custom code or a plugin that will handle that, as it is not a WordPress built in feature, and customizations are not part of the theme support but this time we can give it a try and increase the excerpt to show the full post.

    Can you please share your site credentials here, because we need to login to your site and see this issue live. Your information is safe (private) in this thread.

    To include your credentials click Insert Credentials button in the editor toolbar. (See how)

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  •   Gerdy replied privately
  •  1,560
    Laborator replied

    Hi Gerdy,

    I've added the following PHP code under functions.php file:

    /* Show full content instead of excerpt */
    add_filter( 'get_the_excerpt', 'wp256_use_content_as_excerpt', 10, 2 );
    function wp256_use_content_as_excerpt( $excerpt, $post ) {
        return  $post->post_content ;
    }
    

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  • Gerdy replied

    Thank you very much Art, and how do I get it responsive again? I mean, the embedded video's in the blog?

    Regards

    Gerdy

  •  1,560
    Laborator replied

    Hi Gerdy,

    I am not sure I understand your question about responsiveness, could you please be more specific as it is not clear what you want to achieve.

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  • Gerdy replied

    Hi Art,

    Well I mean, the embedded videos are not responsive now. They do not align with the complete width of the text.

    It has to be like in the 1st video from the Attachment and if it is scaled down (to wacht it mobile), the embedded video's have to be scaled down also, same as the text.

    Regards

    Gerdy

    Attached files:  example.jpg

  •  1,560
    Laborator replied

    Hi Gerdy,

    That is not theme-related and it does have to do with how you choose to embed videos from Vimeo, I have recorded my screen to show the process of how the videos should be embedded to your site if you want them to be full-width and responsive:

    https://d.pr/v/eHTsEP

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group