cogdog
Forum Replies Created
-
Forum: Plugins
In reply to: [FeedWordPress] Fatal Error on Adding New FeedReported also as in issue in developer’s GitHub repo
Forum: Plugins
In reply to: [Post Views Counter] Dashboard Graph Empty?I wish I had an answer because my dashboard graph went empty (it was working maybe 3 weeks ago0
Forum: Plugins
In reply to: [Simple Blog Stats] Count One Higher on Footer Widget in PostYup resolved.
Forum: Plugins
In reply to: [Simple Blog Stats] Count One Higher on Footer Widget in PostThanks for the follow-up, Jeff, you are a valuable exception here on providing quick and responsive help.
No I had no luck adding any of the query reset commands after my main loop. Since this is my own child theme I found an easier solution to roll my own simple shortcode:
// ----- short code for number of things in this splot add_shortcode('splotcount', 'splot_count_splots'); function splot_count_splots() { return wp_count_posts()->publish; }Forum: Plugins
In reply to: [Simple Blog Stats] Count One Higher on Footer Widget in PostThanks for the quick response. It’s my child theme, so I should be able to do a loop reset.
Thanks Karen, deactivating Scheduled Post Trigger seems to have cleared it.
That’s been on the site a while, probably as some of the other timed scripts on the custom theme are triggered by events triggered by user visits.
But Jetpack’s tweeting is now on the right time, thanks.
Forum: Plugins
In reply to: [Simple Blog Stats] Shortcode for count of posts/types with a specific term?That’s not the right shortcode to use for counting posts by category, should be something like:
[sbs_posts cat="cat_slug_name"]The value of
cat=""should be the slug name for your category, not id, which you find in your Posts -> Categories settingIt’s better to set up and test shortcodes in the plugin settings page or refer to https://wordpress.org/plugins/simple-blog-stats/#installation
Forum: Plugins
In reply to: [Simple Blog Stats] Shortcode for count of posts/types with a specific term?This is awesome, Jeff. It’s a all to rare reward when a developer not only listens to your idea, but makes it real.
Forum: Developing with WordPress
In reply to: Showing custom oEmbed preview outputs in GutenbergI am having the same problem. My code returns the embed as expected in the classic editor and a front end site editor, but fails in the Gutenberg block editor. For some reason beyond my skill level the WP_Embed class is returning false
The code I am testing is:
function embed_extras_register_h5p(){ $regex_url = '#https://h5pstudio\.ecampusontario\.ca/content/([0-9]+)#i'; wp_embed_register_handler( 'h5p', $regex_url, 'embed_extras_handler_h5p' ); } function embed_extras_handler_h5p( $matches, $attr, $url, $rawattr ) { $embed = sprintf( '<div class="h5p-embed"><iframe src="https://h5pstudio.ecampusontario.ca/h5p/%1$s/embed" width="894" height="314" frameborder="0" allowfullscreen="allowfullscreen"></iframe></div>', esc_attr($matches[1]) ); return $embed; }Forum: Developing with WordPress
In reply to: Register Embed For PadletI have no idea. I cannot find any mention of it, though it would seem they do. There does not seem to be any public full list of oembed providers. It does work here
Forum: Themes and Templates
In reply to: [Chaplin] Fatal error with themeJust experienced this on site where Chaplin used as parent theme. The Theme interface reported it broken with fatal error, with options at bottom to delete or resume (?) Neither did a thing. Manually deleting the theme via ftp and uploading a copy of 2.1.3 fixed it.
Forum: Fixing WordPress
In reply to: Add giphy to Embed DocumentationThanks for confirming.
Forum: Developing with WordPress
In reply to: No Media Embeds for non-loggedin users on front-end formThanks- but I am not writing about what happens when a post is saved (my theme is using wp_insert() to make a post), this works as expected. Naked URLs are in the saved post, but renders as embeds when published.
This was authored not logged in via http://splot.ca/boom/dropper/
I hoping to use the in-editor embeds that happen natively when logged in and using the visual editor– This must be done via ajax since it happens before any http transaction takes place. As far as I can decipher, it is done via mce-view.js. I’d like to know how to make the in-editor embed previews work for non logged in users (it works when logged in)
- This reply was modified 6 years, 10 months ago by cogdog.
Forum: Fixing WordPress
In reply to: Add giphy to Embed DocumentationOn some more testing, I am able to auto embed giphy URLs on multiple self hosted WP sites using different themes.
Strangely enough as it worked when I first tested in 2018, the editor on WordPress.com does not render an embedded preview of a giphy URL, but does manage to do so when published.
Forum: Themes and Templates
In reply to: [Chaplin] Portfolio post types and ChaplinYou really do not want to be editing the Chaplin theme, your changes will be lost when it is updated. This is the reason to do mods as a child theme.
I’m doing this for a project where I have one custom post type and three custom taxonomies. It takes some code lifting to do! I am not sure I can get everything in. If you look in
functions.phpyou will find the meta data constructor functionchaplin_get_post_meta. It looks like he has hooks in where you could add in a child theme functions.php functions to add post_meta data:// Allow output of additional meta items to be added by child themes and plugins do_action( 'chaplin_start_of_post_meta_list', $post_meta, $post_id );I ended up copying the entire
chaplin_get_post_metafunction to my functions.php and changed it to betoolkit_get_post_meta, and from there I added my own extra code for doing my metadata, e,g,// Module Taxonomy if ( in_array( 'module', $post_meta ) && has_term( '', 'module', $post_id ) ) : $has_meta = true; ?> <li class="post-jetpack-portfolio-type meta-wrapper"> <span class="meta-icon"> <span class="screen-reader-text"><?php esc_html_e( 'Modules', 'chaplin' ); ?></span> <?php chaplin_the_theme_svg( 'bookmark' ); ?> </span> <span class="meta-text"> <?php the_terms( $post_id, 'module', __( 'Module: ', 'chaplin' ) . ' ', ', ' ); ?> </span> </li> <?php endif;This means in my templates that I made a copy of
content.phpchanged tocontent-tool.phpfor my CPT, and call me own metadata function from theretoolkit_the_post_meta( $post->ID, 'single-top' );It took even more legwork to get the archives working… You might go with JetPack since there is built in support for that, but I loathe the JetPack stuff.