davidbisset, to wordpress
@davidbisset@phpc.social avatar

Just wanted to say thanks to these global sponsors for supporting the WordPress Community:

#Automattic (#Jetpack and WordPress.com)
Awesome Motive (#WPBeginner)
Bluehost
GoDaddy
#WooCommerce

https://make.wordpress.org/community/2024/01/09/2024-global-sponsors-announcement/

#WordPress #WordCamp

chikorita157, to random
@chikorita157@sakurajima.moe avatar

Nobody asked for this :yor_knife:

cutefloor, to retrogaming

Jetpack: Christmas Special! is a freeware edition of Jetpack, published in 1993 by Software Creations. In this game, the player takes on the role of Santa Claus and explores Christmas-themed levels, collecting gifts and presents while facing various challenges. It features a level editor and supports up to eight players using a keyboard and/or joysticks.

Merry Christmas!

https://www.youtube.com/watch?v=zOD6k386lf8

#Jetpack #Xmas #GamingHistory #RetroGaming #Gameplay #DOSGames

noellemitchell, to wordpress
@noellemitchell@mstdn.social avatar

I'm now following over 100 blogs on WordPress/Jetpack app! 😄 Always looking for more blogs to follow on there.

#WordPress #Jetpack #RSS #blog

chris, to wordpress
@chris@mstdn.chrisalemany.ca avatar

Jetpack is a horrible Wordpress plugin. The bloat is real and off the charts. Just look at the long list of conflicts with other plugins. There I said it. 😡
#Wordpress #Jetpack
https://jetpack.com/support/getting-started-with-jetpack/known-issues/

dorkboycomics, to ArtificialIntelligence
SirTapTap, to wordpress
@SirTapTap@mastodon.social avatar

Oh speaking of #wordpress and #selfhost woes, any good payment processing stuff for that?

Was looking at #jetpack but didn't see the 10% fee (on TOP of Stripe, who actually does the work!!). I already got #Stripe, so anything that integrates with that is good.

I also have Paypal and Patreon, but the point is more to have as direct and 'on premise' a form as possible not just send traffic over. Plus fuck paypal

girdy, to random
jake, to wordpress

heya @wordpress does anyone here have experience with the Wordpress Newsletter feature, using your WP site as newsletter similar to Substack, etc.

Particularly from a self hosted (Jetpack) standpoint, but any experience is appreciated.

#wordpress #jetpack #newsletter

josh, to wordpress

Why is #Wordpress telling us to stop using the official app and switch to #jetpack? So weird...

Hansonthebike, to random
@Hansonthebike@mastodon.world avatar

Over the last month, I had troubles with my web site. It was off line too often. I contacted the provider and they couldn’t see any evidence. It kept happening. I mentioned it often happened at night. The explanation was that bots (such as #Jetpack) are checking the server if it is on line and it might be crowded. It kept happening, but now for 8 hours and in the morning. That is inconvenient as I time my new post releases through social media. So what is the issue? 1/3 (cliffhanger) 🎬

kuketzblog, to wordpress German
@kuketzblog@social.tchncs.de avatar

Achtung vor Phishing-E-Mails, die WordPress-Nutzer adressieren. Nicht drauf reinfallen und die integrierten Buttons anklicken, die führen zu Phishing- bzw. Schadcode-Seiten. Zwei Beispiele habe ich beigefügt. 👇

#wordpress #phishing #malware #schadsoftware #vulnerability #schwachstelle

thomaskujawa,
@thomaskujawa@social.tchncs.de avatar

@kuketzblog Gut, wenn man weder #Elementor noch #Jetpack hat. 🫣

Edent, to HowTo
@Edent@mastodon.social avatar

🆕 blog! “Rewriting WordPress's JetPack Related Posts Shortcode”

I like the JetPack related post functionality. But I wanted to customise it far beyond what the default code allows for. So here's how I went from this: To this: Documentation The complete documentation for related posts is pretty easy to follow. This is an adaptation of "Use Jetpack_Rel…

👀 Read more: https://shkspr.mobi/blog/2023/10/rewriting-wordpresss-jetpack-related-posts-shortcode/

#HowTo #jetpack #php #wordpress

blog, to HowTo
@blog@shkspr.mobi avatar

Rewriting WordPress's JetPack Related Posts Shortcode
https://shkspr.mobi/blog/2023/10/rewriting-wordpresss-jetpack-related-posts-shortcode/

I like the JetPack related post functionality. But I wanted to customise it far beyond what the default code allows for.

So here's how I went from this:

The old layout has three items, with small images and indistinct text.

To this:

The new layout has 4 items, each boxed off, with a larger image and more distinct text.

Documentation

The complete documentation for related posts is pretty easy to follow.

This is an adaptation of "Use ".

Remove the automatic placement

You can turn off the original "related posts" by adding this to your theme's functions.php:

function jetpackme_remove_rp() {    if ( class_exists( 'Jetpack_RelatedPosts' ) ) {        $jprp = Jetpack_RelatedPosts::init();        $callback = array( $jprp, 'filter_add_target_to_dom' );        remove_filter( 'the_content', $callback, 40 );    }}add_filter( 'wp', 'jetpackme_remove_rp', 20 );

Add the new Related Posts

In your theme's index.php (or wherever else you like) you can add this code to insert the new related posts functionality:

if ( is_single() ) {    echo "<section>";        echo do_shortcode( '[jprelp]' );    echo "</section>";}

Create the new functionality

And this goes in your theme's functions.php file. I've commented it as best I can. Let me know if you need more info.

function jetpackme_custom_related() {    //  Check that JetPack Related Posts exists    if (            class_exists( 'Jetpack_RelatedPosts' )            && method_exists( 'Jetpack_RelatedPosts', 'init_raw' )    ) {            //  Get the related posts            $related = Jetpack_RelatedPosts::init_raw()                ->set_query_name( 'edent-related-shortcode' )                 ->get_for_post_id(                    get_the_ID(),   //  ID of the post                    array( 'size' => 4 )//  How many related items to fetch                );            if ( $related ) {                //  Set the container for the related posts                $output = "<h2 id='related-posts'>The Algorithm™ suggests:</h2>";                $output .=   "<ul class='related-posts'>";                foreach ( $related as $result ) {                    $related_post_id = $result['id'];                    // Get the related post                    $related_post = get_post( $related_post_id );                    //  Get the attributes                    $related_post_title = $related_post->post_title;                    $related_post_date  = substr( $related_post->post_date, 0, 4 ); // YYYY-MM-DD                    $related_post_link  = get_permalink( $related_post_id );                    //  Get the thumbnail                    if ( has_post_thumbnail( $related_post_id) ) {                        $related_post_thumb = get_the_post_thumbnail( $related_post_id, 'full',                             array( "class"   => "related-post-img",                                   "loading" => "lazy" //   Lazy loading and other attributes                            )                         );                    } else {                        $related_post_thumb = null;                    }                    //  Create the HTML for the related post                    $output .= '<li class="related-post">';                    $output .=    "<a href='{$related_post_link}'>";                    $output .=       "{$related_post_thumb}<p>{$related_post_title}</p></a>";                    $output .=    "<time>{$related_post_date}</time>";                    $output .= "</li>";                }                //  Finish the related posts container                $output .="</ul>";            }        //  Display the related posts        echo $output;    }}add_shortcode( 'jprel', 'jetpackme_custom_related' );   //  Shortcode name can be whatever you want

Bit of CSS to zhuzh it up

Feel free to add your own styles. This is what works for me.

.related-posts  {    list-style: none;    padding: 0;    display: inline-flex;    width: 100%;    flex-wrap: wrap;    justify-content: center;}.related-posts > * {    /* https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_flexible_box_layout/Controlling_ratios_of_flex_items_along_the_main_axis#combining_flex-grow_and_flex-basis */    flex: 1 1 0;}    .related-post {        min-width: 10em;        max-width: 20em;        text-align: center;        margin: .25em;        border: .1em var(--color-text);        border-style: solid;        border-radius: var(--border-radius);        position: relative;        display: flex;        flex-direction: column;        min-height: 100%;        overflow: clip;    }        .related-post h3 {            font-size: 1em;            padding-top: .5em;        }        .related-post img {            object-fit: cover;            height: 9em;            width: 100%;            border-radius: 0 1em 0 0;            background: var(--color-text);            display: inline-block;        }        .related-post p {            margin: 0 .25em;        }        .related-post time {            font-size: .75em;            display: block;        }

ToDo

  • Use transients to store the data to prevent repeated slow API calls?
  • Perhaps some teaser text?
  • Adjust the layout so the date always floats to the bottom?

https://shkspr.mobi/blog/2023/10/rewriting-wordpresss-jetpack-related-posts-shortcode/

#HowTo #jetpack #php #WordPress

SirTapTap, to wordpress
@SirTapTap@mastodon.social avatar

Anyone else using #Wordpress #jetpack? IT keeps forgetting it's settings, mostly the Social stuff.

flameeyes, to wordpress
@flameeyes@mastodon.social avatar

If someone has still not read my complaint about the deceiving #Jetpack Stats pricing change for #WordPress, please head to https://flameeyes.blog/2023/09/24/wordpress-kills-the-blogger-star/

ktvsnac, to wordpress

Ha! #WordPress #Jetpack just added back a blogroll component! (a block this time, of course, because block block block everything is a block don't you want to use blocks?)

Edent, to wordpress
@Edent@mastodon.social avatar

🆕 blog! “Getting WordPress / JetPack Subscriber Counts via the API... the hard way”

People can subscribe to receive my blog via email. This is managed by the JetPack plugin. I want to be able to display something like "Join 1,234 subscribers and receive updates via email". So, how do I get the subscriber count from the API? As documented in the JetPack H…

👀 Read more: https://shkspr.mobi/blog/2023/09/getting-wordpress-jetpack-subscriber-counts-via-the-api/

#api #jetpack #wordpress

Edent, to wordpress
@Edent@mastodon.social avatar

Is there any way to get the number of #jetpack email subscribers via an API?

https://wordpress.org/support/topic/get-number-of-jetpack-email-subscribers-via-an-api/

#WordPress

PlaystationPixy, to Blog Dutch

Dear Diary...
A new #blogpost is live now.
One where I was in Germany, where I traveled back home and tried to pick up on my routine again.

Journal - Week 33 🏡 , August 2023
https://cynnisblog.wordpress.com/2023/08/22/journal-week-33-%f0%9f%8f%a1-august-2023/

#AmWriting #Blog #WordPress #JetPack #MyLife #Vacation #Blaugust #Blaugust2023

nerdyblinddude, to Blog

Whew! Now that the hard part of moving my #blog over to #Wordpress is done, I have a #question for all the Wordpress admins out there: I'm looking for a #accessible #theme for my blog that will comply with #A11Y standards, looks good both on #desktop and #mobile screens and most importantly is #free Anyone got any #recommendations It would also help if the theme is compatible with #JetPack as I use that plugin to make it possible for #IAWriter to connect and let me publish straight to Wordpress.

kerfuffle, to Kotlin
@kerfuffle@mastodon.online avatar

I already have so many hobbies, yet I also want to look into #Kotlin Multiplatform for #Wasm & #Jetpack Compose, now that the Garbage collector and #JavaScript heap issues have been addressed. Would be great to have a serverside-first approach as an alternative to the #frontend frameworks that just can't manage to pull me in.

cliophate, to wordpress
@cliophate@overkill.social avatar

#Jetpack for #Wordpress is so spammy!

jake4480, to writing
@jake4480@c.im avatar

Going through Samsung Notes to ensure I transfer the correct weird bits and blurbs of ideas I've frantically typed throughout the last months/years for potential development into WordPress posts via the excellent Jetpack app for Android.

(I know I could write these blurbs directly in Jetpack, but the thing is, not all my notes would necessarily be turned into blog posts, as some are just random notes to myself).

Anyway, the reason for my semi-obsessive note taking is a creativity-related concept I've been grappling with for 30 years now.

Throughout the years, I've found that no matter HOW great and memorable your idea is, you will NOT remember it later. There are exactly two paths. You need to 1) write it down AS SOON AS YOU THINK OF IT, so you can remember it and enjoy it or scrap it later, or, 2) get used to a 'zen' kind of acceptance thing for ideas, to just let them go when you can't remember them later.

The price of remembering an idea is writing it down immediately, wherever you are. Somewhere you can find it.

Or maybe your thing is voice notes, if you remember to check them. I don't like voice stuff. I'm old. I write! 🤣

#writing #WritingProcess #WordPress #Jetpack #Android #ideas #creativity #memory #MemoryTricks #Samsung #RememberingIdeas #SamsungNotes #blogs #blogging #BlogIdeas

PlaystationPixy, to Blog Dutch
  • All
  • Subscribed
  • Moderated
  • Favorites
  • JUstTest
  • kavyap
  • DreamBathrooms
  • cubers
  • osvaldo12
  • mdbf
  • magazineikmin
  • normalnudes
  • InstantRegret
  • rosin
  • Youngstown
  • slotface
  • khanakhh
  • ethstaker
  • Leos
  • ngwrru68w68
  • everett
  • cisconetworking
  • tacticalgear
  • anitta
  • thenastyranch
  • Durango
  • tester
  • GTA5RPClips
  • modclub
  • megavids
  • provamag3
  • lostlight
  • All magazines