tdturn2
Forum Replies Created
-
This isn’t likely theme related. It’s a bare bones custom theme – but I did try disabling everything and the depicter css file still isn’t loading.
This was reported previously by another user.
Sure. The slider is still set to a fixed height of 600px. After the update, it’s 100vh and it won’t let me update it. https://thewordisout.com/
I tried rolling back and it broke things worse. So I’m back on 1.3.2.
I originally set a fixed height of the slider that’s now being ignored and it’s forcing full viewport height. When I try to update it, it just throws 503 errors.
Thank you, all. It ended up being some blank lines at the bottom of my function.php that I hadn’t noticed. I appreciate the quick feedback and help!
Forum: Plugins
In reply to: [Zero Spam for WordPress] Gravity Forms entry sent to spam in errorYep, I had to go back to Askimet for now since Gravity has a built in feature allowing it to be disabled. With WPZS, technically you can disable it for Gravity in the settings, however, it is still active and the Spam queue is still collecting everything.
Forum: Plugins
In reply to: [Zero Spam for WordPress] Conflict with Gravity FormsAny follow up on this topic? I’m still getting a lot of legitimate entries marked as Spam. Will have to deactivate for now.
Forum: Plugins
In reply to: [Zero Spam for WordPress] Gravity Forms entry sent to spam in errorThis is a big problem for me as well and WPZS is now marking a majority of my legitimate submissions as Spam.
I will have to disable as well until it’s addressed.
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Custom post type (podcast) not showing in RSSWell, I figure out how to get it to feed into the homepage RSS. I had to disable the option to do so within the settings and put it manually within functions.php.
// ADDING PODCAST TO HOMEPAGE QUERY function my_get_posts( $query ) { if ( is_home() && $query->is_main_query() ) $query->set( 'post_type', array( 'post', 'podcast' ) ); return $query; } // ADDING PODCAST TO RSS function mycustomfeed_cpt_feed( $query ) { if ( $query->is_feed() ) $query->set( 'post_type', array( 'post', 'podcast' ) ); return $query; } add_filter( 'pre_get_posts', 'mycustomfeed_cpt_feed' );
So, it shows up now, however, the RSS feed doesn’t validate and is throwing errors due to this line:
<enclosure url="https://s3.amazonaws.com/ats-ymc/YMC_Episode003.mp3" length="" type=""/>
The length and type values are null. Any thoughts or ideas how to resolve this?
Forum: Fixing WordPress
In reply to: cleaning postsThe code is good, the errors I was getting is unrelated to this code.
Forum: Fixing WordPress
In reply to: cleaning postsIs there a better place on this forum to submit a question like this?