Gregg
Forum Replies Created
-
Forum: Plugins
In reply to: [WP_Places] The site is experiencing technical difficulties.@sonarnew – I too had the same problem and just discovered that you first need to install this plugin – https://ww.wp.xz.cn/plugins/cmb2/ – for WP_Places to work.
Forum: Plugins
In reply to: [Animated Blocks on Scroll] Error after last udpatePerfect … thanks so much @virgildia
Forum: Plugins
In reply to: [Animated Blocks on Scroll] Error after last udpateHi @virgildia, I just downloaded your plugin on a fresh install of WordPress 5.1.1 and wanted to test it out on the Twenty Nineteen theme. No animation settings appear under the Block tab no matter what content type I add to a block on the page or post. I tried a different theme as well (Astra), but no luck there either. I only have your plugin installed within this test environment.
Any ideas why it wouldn’t be working?Forum: Plugins
In reply to: [Tag Gallery] [Plugin: Tag Gallery] Temporary Fix to Thumbnail Issue@mrwweb – thanks so much for taking the time to post this solution. Really, really appreciated the workaround and thanks to @johnnypeck. Love it.
Forum: Plugins
In reply to: Need Help Finding a Podcast SolutionThanks @corienb … I finally discovered that I needed to subscribe, but I must say the user experience was extremely confusing. We’re doing a public radio type show so I may transfer the audio files to prx.org which includes metrics etc. Good luck on your end.
Forum: Plugins
In reply to: [iSlidex] [Plugin: iSlidex] Images Not Showing UpHi Dukessa
With my limited PHP coding skills I managed to solve the problem. I changed all references to get_posts within islidex.php to include an array for my custom post types so it looks like this:
get_posts((array('post_type' => array('post','films','showreels'))),'numberposts='.$numpost.'&cat='.$catid.'');It’s not an ideal solution since this file will the overwritten with subsequent updates to your plugin, but at least it’s working for now. I’ll try to come up with a more elegant fix.
Hopefully it helps anyone else out there that get’s stuck.
Forum: Plugins
In reply to: [iSlidex] [Plugin: iSlidex] Images Not Showing UpThanks for getting back to me Dukessa. I’ve double checked everything and it’s still not working. I got it to work on another website of mine so I’m pretty sure it must relate to the fact that I’m using custom post types instead of regular posts.
I’ll keep digging on my end.
Forum: Fixing WordPress
In reply to: I can’t preview my postsI had the same problem, but discovered that my blog address was set incorrectly. I’m running both a site and blog together. Check Settings > General and ensure that your blog address is correct e.g. htt://www.example.com/blog
I hope that helps.
Forum: Themes and Templates
In reply to: FLASH VIDEO BACKGROUND FOR WORDPRESS THEME??That’s working very well as a background Flash object. Thanks for the link.
Forum: Themes and Templates
In reply to: FLASH VIDEO BACKGROUND FOR WORDPRESS THEME??Hi sarahd
I’m designing movie web sites and need to emulate some Flash style elements like background video, background dissolves, audio and animated buttons.
I’d like to see how the embedding of swf objects works within your site. Can you post (or send) a link to your example. I see that the “work in progress” link has expired.
Any other references would be great.
Thanks,
GreggForum: Fixing WordPress
In reply to: How to Display 4 Posts on Home Page Except From Featured CategoryHi MichaelH
You’re a star! Thanks so much for your help … I really appreciate it.
Cheers,
GreggForum: Fixing WordPress
In reply to: How to Display 4 Posts on Home Page Except From Featured CategoryHi MichaelH
Thanks so much for your very prompt response and help. Everything works fine except for my “else” statement which I’m struggling to incorporate into your code. I’m sure that I’ve got the syntax wrong.
<?php $args=array( 'cat' => -3, 'showposts' => 4, 'caller_get_posts'=> 1 ); $my_query = null; $my_query = new WP_Query($args); if( $my_query->have_posts() ) { while ($my_query->have_posts()) : $my_query->the_post(); ?> <div id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>"> <?php hybrid_before_entry(); // Before entry hook ?> <div class="entry-content entry"> <?php the_excerpt( __('Continue reading', 'hybrid') . the_title( ' "', '"', false ) ); ?> <?php wp_link_pages( array( 'before' => '<p class="pages">' . __('Pages:', 'hybrid'), 'after' => '</p>' ) ); ?> </div> <?php hybrid_after_entry(); // After entry hook ?> </div> <?php endwhile; } //if ($my_query) ?> <?php else: ?> <p class="no-data"><?php _e('Sorry, no posts matched your criteria.', 'hybrid'); ?></p> <?php endif; ?> wp_reset_query(); // Restore global post data stomped by the_post(). ?> <?php hybrid_after_content(); // After content hook ?>Forum: Plugins
In reply to: [Plugin: Shadowbox JS] Not WorkingIt works like a charm. Thanks so much for your help which I really appreciate.
Forum: Fixing WordPress
In reply to: How to Exclude Posts While Using Showposts offsetYou are an absolute star Otto42. That works perfectly and the site is looking much better … thank you so much. It’s tough trying to add functionality with so little PHP experience.
Cheers.
Forum: Fixing WordPress
In reply to: How to Exclude Posts While Using Showposts offsetThanks for helping out Otto42. I just pasted the code here http://wordpress.pastebin.com/m13e97a24. It’s from a free theme called Magazeen.
Hopefully you can make sense of it.