troventrip
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hestia] Excerpt Showing “0”Thanks, let me try that and will let you know how I get on.
Forum: Themes and Templates
In reply to: [Hestia] Excerpt Showing “0”Hi,
For the videos I’m using the VideoPress block, but I don’t think it’s related to that as the issue also occurs when there is no video and just no text. Interesting on your replication, that’s exactly how I want mine to look ??
For the excerpts I’m not filling in the meta excerpt box when creating a new post, it seems to be just pulling the first 40 words from the post itself. Could it be something to do with that?
Thanks
Forum: Themes and Templates
In reply to: [Hestia] Excerpt Showing “0”Update: I’ve had to amend my page to work around the error so the above link won’t show it anymore, but the error can be seen on the link below:
https://troventrip.com/posts-page-error/
Thanks
Update: I’ve had to amend my homepage to work around the error so the above link won’t show it anymore, but the error can be seen on the link below:
https://troventrip.com/home-page-error/
Thanks
- This reply was modified 3 years, 11 months ago by troventrip.
- This reply was modified 3 years, 11 months ago by troventrip.
Forum: Themes and Templates
In reply to: [Hestia] Excerpt Showing “0”Hi @bvytis
Apologies for the late reply, I must have missed the notification of your reply.
The issue can be seen on this page for the top post (The Winter of Our Discontent).
It may be replacing the Read more… when there is no text in the post.
Thanks
Forum: Plugins
In reply to: [Custom Post Type UI] Newsletter HelpThanks a lot for looking into it. I’ve had a look through myself and will give some things a try, although my coding skills are probably best rated as beginner level ??
Will let you know if I manage to get it to work.
Forum: Plugins
In reply to: [Custom Post Type UI] Newsletter HelpI’m using MailOptin at the moment, it seems like a great plugin for building subscription popups and designing the emails which get sent out etc. I had a look through the code but couldn’t figure out where it was that defined the post type. Would be amazing if you were interested in it to have a look!
Forum: Plugins
In reply to: [MC4WP: Mailchimp for WordPress] Custom Post TypesOk thanks for your reply @hchouhan. I’m pretty new to this and still trying to figure out the differences between some of the email plugin’s functionality, thanks for the info.
Forum: Plugins
In reply to: [Custom Post Type UI] CPT posts not showing in Latest Posts blockHi @bazzablue,
I had the same issue but solved it using the below code (I used the Code Snippet plugin to add it). List your custom post types in the array.
function custom_post_in_home_loop( $query ) {
if ( is_home() && $query->is_main_query() )
$query->set( ‘post_type’, array( ‘post’, ‘CPT’) ); // replace deals with your CPT name
return $query;
}
add_filter( ‘pre_get_posts’, ‘custom_post_in_home_loop’ );Great, thanks @collizo4sky!
Hi @ryankienstra Yes that sounds like it will work, let me give that a try. Thanks for your help!
Forum: Plugins
In reply to: [Featured Video Plus] Elementor Pro Posts WidgetThank. I’ve tried a couple of methods using ACF but I can’t get it to work as well as this plugin appears to do! I’ll give it another go.
Forum: Plugins
In reply to: [Genesis Blocks] Custom Block SlugHi @lukecarbis , yes that’s exactly what I wanted, thanks a lot! Works perfectly, thank you!
Forum: Fixing WordPress
In reply to: Error Uploading Large ImagesIf anyone else comes across this topic and is interested, it wasn’t a memory size issue it was a problem when uploading from the frontend with the Gutenberg blocks. I fixed it following this guide… https://navinrao.com/the-response-is-not-a-valid-json-response/
Thanks @gt3themes I think I’ve found a workaround for what I wanted. Thanks for your help.