nsoltan
Forum Replies Created
-
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Publicize custom contentThank you for trying!
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Publicize custom contentHi again!
I used “Functionality”-plugin, I switched to the one you suggested, still the same (lack-of) effect π
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Publicize custom contentfunction jeherve_publicize_hashtags() { $post = get_post(); if ( ! empty( $post ) ) { // Grab the tags of the post $post_tags = get_the_tags( $post->ID ); // Append tags to custom message if ( ! empty( $post_tags ) ) { // Create list of tags with hashtags in front of them $hash_tags = ''; foreach( $post_tags as $tag ) { $hash_tags .= ' #' . $tag->name; } // Create our custom message $custom_message = get_the_title() . ' ' . $hash_tags; update_post_meta( $post->ID, '_wpas_mess', $custom_message ); } } } // Save that message function jeherve_cust_pub_message_save() { add_action( 'save_post', 'jeherve_publicize_hashtags' ); } add_action( 'publish_post', 'jeherve_cust_pub_message_save' );Forum: Themes and Templates
In reply to: [Fukasawa] Infinite scrollStill no luck π
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Publicize custom contentHi again! Using the online interface I see the # when creating a post. Publicize is publishing the post with the normal template just fine when posting via python and mobile, but no #.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Publicize custom contentHi Jeremy! Do you mean the plugin you wrote? Currently neither that or the linked plugin are working while using the WordPress mobile app or importing posts through the python wp-library π
Thanks for the reply Jeremy! Turns out it was was the theme not working with it.
Forum: Themes and Templates
In reply to: [Fukasawa] Infinite scrollTried out changing the on-post-load to change the original $blocks, still no desired effect.
// When Jetpack Infinite scroll posts have loaded $( document.body ).on( 'post-load', function () { var $container = $('.posts'); //Edited: $blocks.masonry( 'appended', $container, isAnimatedFromBottom ) $blocks.imagesLoaded(function(){ $blocks.masonry({ itemSelector: '.post-container' }); // Fade blocks in after images are ready (prevents jumping and re-rendering) $(".post-container").fadeIn(); });Forum: Themes and Templates
In reply to: [Fukasawa] Infinite scrollThe original implementation seems to bug out when reaching many items (i.e like page 4-5 on my website).
I tried replacing as such:
// When Jetpack Infinite scroll posts have loaded $( document.body ).on( 'post-load', function () { var $container = $('.posts'); //Edited: $container.masonry( 'appended', $container, isAnimatedFromBottom ) $blocks.imagesLoaded(function(){ $blocks.masonry({ itemSelector: '.post-container' }); // Fade blocks in after images are ready (prevents jumping and re-rendering) $(".post-container").fadeIn(); });as per: http://desandro.github.io/masonry/docs/methods.html
But then it only loads one column leaving the other rows untouched..
Forum: Themes and Templates
In reply to: [Fukasawa] Infinite scrollI believe the culprit code is somewhere in here:
// When Jetpack Infinite scroll posts have loaded $( document.body ).on( 'post-load', function () { var $container = $('.posts'); $container.masonry( 'reloadItems' ); $blocks.imagesLoaded(function(){ $blocks.masonry({ itemSelector: '.post-container' }); // Fade blocks in after images are ready (prevents jumping and re-rendering) $(".post-container").fadeIn(); });Forum: Plugins
In reply to: [phpbb_recent_topics] [Plugin: phpbb_recent_topics] Interesting bugSolved it! Had forgotten to allow the mysql user to select from the forum DB.
Forum: Plugins
In reply to: [phpbb_recent_topics] [Plugin: phpbb_recent_topics] Interesting bugSeems to only happen on my linux servers, not windows.