Questions tagged [jetpack]

Jetpack is a WordPress plugin that enables self-hosted WordPress installs to connect to WordPress.com to get additional features, powered by its cloud infrastructure.

Jetpack is a WordPress plugin that enables self-hosted WordPress installs to connect to WordPress.com to get additional features, powered by its cloud infrastructure.

445 questions
0
votes
1 answer

How to make middle view sit in bound of between two images? (JetpackCompose)

I have such a view @Composable fun LongText() { ConstraintLayout( ) { val (leftImg, headerTitle, rightImg) = createRefs() Image( modifier = Modifier .constrainAs(leftImg) { …
0
votes
1 answer

What to put in parameters of a Screen when putting it in a composable of nav host in jetpack navigation

I have a Screen ( composable function ) that gets It's data from view model ( a list and two function to remove and add data in it ). @Composable fun MainScreen( notes: List, onAddNote: (Note) -> Unit, onRemoveNote: (Note) ->…
0
votes
0 answers

How can I select only ONE element in a list (jetpack compose)?

I have a list of Address and I want that my users select only ONE of them. LazyColumn { items(list.values.size) { index -> SelectAddress( info = AddressList, modifier = Modifier, …
0
votes
3 answers

How can I select only 3 element in a grid/list (jetpack compose)?

I have a Grid with two columns and 6 elements, but I need that the user select only 3 elements In the first @Composable I put the value in this way: LazyVerticalGrid( columns = GridCells.Fixed(2), ) { items(list.values.size)…
0
votes
2 answers

Jetpack Compose and ViewModel-Instantiation

What does the following line of code do? fun NotesApp(noteViewModel: NoteViewModel = viewModel()) { The default parameter confuses me. The class, which inherits from ViewModel, is called NoteViewModel. Wouldn't the default parameter be:…
cluster1
  • 4,968
  • 6
  • 32
  • 49
0
votes
1 answer

Can I use optional parameter in path in Jetpack Compose Navigaiton?

I have this navigation graph fun NavGraphBuilder.manageAvailabilityGraph() { composable( "availability/{id}", arguments = listOf( navArgument("id") { type = NavType.StringType nullable…
0
votes
2 answers

jetpack is in offline mode in wordpress. how to enable it and connect to our wordpress.com account

When I am done with jetpack plugin installation. My jetpack dashboard shows the popup like jetpack is offline you can't use some feature in disable mode. How to fix this problem as well as how to connect with my Wordpress.com Account?
0
votes
0 answers

How to get options from Wordpress Jetpack

I create wordpress theme with infinite scroll (from Jetpack plugin) and I don't know how to get Jetpack option for this feature. I must get this option to create alternative pagination if infinite scroll is disabled. I try to use two solutions, but…
Michael
  • 131
  • 1
  • 6
0
votes
2 answers

Jetpack sharing buttons placement css

I guess that Jetpack places their sharing icons at the end of posts by default. How can I place them on top of post under H1 post title? Thanks!
Zee
  • 1
  • 1
0
votes
2 answers

wordpress jetpack unwanted border in bootstrap email input

I'm using the subscription form from Jetpack in Wordpress. I've Boostrappified the jetpack form as best I can with custom js, but can't seem to get rid of a pesky border - inside - the border provided by Bootstrap. The same thing appears on Chrome,…
0
votes
1 answer

How do I display image titles, descriptions or caption for wp_get_attachment_image galleries?

I am trying to insert code into my wordpress themes single portfolio file, to display the titles or descriptions of portfolio images. My theme uses Jetpack Portfolios and the file content-single-portfolio is where a gallery of images is called for…
0
votes
1 answer

Remove Jetpack’s Open Graph meta tags for specific page

I want to remove Jetpack’s Open Graph meta tags for certain page by page/post ID. I have tried to add this code to the theme function.php add_filter( 'jetpack_enable_open_graph', '__return_false' ); It works but for the entire post/page. So, how to…
0
votes
1 answer

Unable to install jetpack on my wordpress website

When trying to install jetpack on my wordpress website, I receive this message: The Jetpack server was unable to communicate with your site http://xx[IXR -32300: transport error: http_request_failed cURL error 28: Connection timed out after 10001…
0
votes
1 answer

Trying to hack the wordpress jetpack php to allow publicizing of already published posts

I published a post on my blog and something went wrong in transmission and the post was not pushed to email, facebook, linkedin etc. But now that the post is published, i can't go back and tick the checkboxes taht allow me to post to facebook. What…
TheIronKnuckle
  • 7,224
  • 4
  • 33
  • 56
0
votes
0 answers

How to connect Jetpack to Wordpress.org when the database URL does not have a "." (i.e. how to disable dev_mode_"

I am an absolute beginner. I am not even aware of some of the terms. So basically I am using Wordpress.org to build a website on my Mac. Everything works just fine. However, I would like to connect my desktop Wordpress app and on my Android. The…