InHouse
Forum Replies Created
-
Forum: Plugins
In reply to: [Nested Pages] Automatically hide draft pages from nav menu@takeok I had to manually edit the WP menu in order to remove the draft page. The automatic sync seemed to have stopped working at least temporarily. The other solution I’ve found is manually deleting all pages from the WP menu and then re-syncing the Nested Pages layout so it regenerates the menu items. Not sure why things quit working like that.
Forum: Plugins
In reply to: [Ultimate Reviews] “axe” – Web Accessibility Testing Form FieldsThanks so much for the response. Are you able to provide an ETA on these fixes? I’m not trying to be pushy at all but we’ve been tasked with making websites ADA compliant but the review forms are holding this up. A timeline will help buy us time with our clients. Thanks again!
Forum: Plugins
In reply to: [Awesome Weather Widget] CSS for background colour?Yes.
.awesome-weather-wrap { background: #4f622e!important; }
Forum: Developing with WordPress
In reply to: Add Character in front of headings in RSS feed contentGood call @joyously ! I added a check to my previous reply above.
Forum: Developing with WordPress
In reply to: Add Character in front of headings in RSS feed contentThanks @joyously
For anyone else this may help, here’s what I ended up adding to my function.php file. My goal was to add a dash in front of all
<h4>
tags.function wod_feed_headers($content) { if ( 'wod' === get_post_type() ) { $content = str_replace( array('<h4>'), '<br/><p></p><h4>– ', $content ); return $content; } } add_filter( "the_content_feed", "wod_feed_headers" );
Forum: Fixing WordPress
In reply to: Cycle2 Slideshow Fails to Initialize in WP Block PreviewFor now I have added the scripts to my ‘render_template’ file rather than via wp_enqueue_script and Cycle2 is initializing properly. Maybe there’s a better way to accomplish this but I’m still learning the best practices.
<script src="<?php echo bloginfo('template_url'); ?>/scripts/jquery.cycle2.min.js" type="text/javascript" defer></script>
Forum: Fixing WordPress
In reply to: Cycle2 Slideshow Fails to Initialize in WP Block PreviewOh man, I had no idea the block preview wasn’t native to WP >5.0! Sorry for the confusion. Blocks are still very new to me. I appreciate your help and I will post back here once I get to the bottom of the issue.
Forum: Fixing WordPress
In reply to: Cycle2 Slideshow Fails to Initialize in WP Block PreviewNo, Cycle2 is a jquery library I am enqueueing manually.
The block preview is what I’m describing; not previewing the post on the front-end. Here’s a screenshot: https://www.dropbox.com/s/ptbiwxo3oancopt/Screen%20Shot%202019-05-29%20at%204.57.11%20PM.png?dl=0
Can you confirm that the way I have enqueued the script will not apply to the block preview and only the block editor? It’s in my original post.
Forum: Fixing WordPress
In reply to: Cycle2 Slideshow Fails to Initialize in WP Block Preview@coreymckrill Respectfully, I disagree but thanks for taking the time to reply ?? The Advanced Custom Fields portion is working as expected. Where I’m falling short is initializing the Cycle2 slideshow in the block preview in the post editor. I was only including the information about ACF to be as thorough as possible. Any other insights are certainly welcome!
Forum: Fixing WordPress
In reply to: Facebook Video oEmbed Not WorkingAh, this is working now. May have been seeing the oembed cache as @cockyduck mentioned. Once I added ‘www’ to the URL it finally resolved (although it took a long time). Thanks again all for the help.
Forum: Fixing WordPress
In reply to: Facebook Video oEmbed Not WorkingOh wow, I just saw these replies. No email notification on this thread for some reason.
Thanks so much @biranit for the function! Does this work for the admin as well? I’m still experiencing the issue when attempting to embed in a post and an ACF oembed field. Both fail to embed so the front-end is a non-issue. I increased the time to 60 but they’re not embedding.
Here’s a video of me attempting to embed the video in an oembed custom field: https://www.dropbox.com/s/86g9x52aukrutf3/Screen%20Recording%202019-05-14%20at%203.29.13%20PM.mov
Yes, I can disable debugging for now.
This answer is confusing to me as well. The post doesn’t explain how to clear the notice. I’m using the shortcode below to display the form on a page. The notice displays in admin and front end. There are no custom functions used anywhere in the theme I developed or in plugins. What needs to be done to clear the notice? Obviously I’ll be disabling debugging but ideally I clear all notices and warnings when updating WP and plugins.
echo do_shortcode('[contact-form-7 id="6"]');
Sent! Thanks.
Thanks for the clarification. Does the pro version support this? I’d consider buying if the pro version would definitely fix this scenario.