Quantcast
Channel: WordPress.org Forums » [Jetpack - WP Security, Backup, Speed, & Growth] Support
Viewing all 37463 articles
Browse latest View live

Sending a Jetpack sitemap to Google

$
0
0

Replies: 0

Hi,

I would like to add Sitemaps of my website to the Google Search Console.
If I’m not mistaken, I think that Jetpack automatically creates Sitemaps on http://www.mywebsite.com/sitemap.xml.
When I go on http://www.mywebsite.com/sitemap.xml, I see 2 Sitemaps:
http://www.mywebsite.com/sitemap-1.xml
http://www.mywebsite.com/image-sitemap-1.xml

What should I send to Google: “www.mywebsite.com/sitemap.xml” or “www.mywebsite.com/sitemap-1.xml” AND “www.mywebsite.com/image-sitemap-1.xml”?

Other question: my website is in French (first language) and in Dutch (second language with WPML) and the url of the Dutch website is http://www.mywebsite.com/nl/
Is Google going to understand that the “/nl” pages are in another language or should I do something about it?

Thank you very much in advance for your help.


Twitter auto-share is not working properly

$
0
0

Replies: 0

Hello Everyone,
After installing and activate of Jetpack plugin on my website Kunu KD. Then I connect Jetpack to all of my social media and after posting 7-8 blog I see these blogs auto shared on my Facebook, LinkedIn and Google+ but my twitter page is empty. It’s not working there. Please tell me something to fix this problem.

Infinite Scroll not loading posts on archive/category pages

$
0
0

Replies: 0

I’ve got infinite scroll working flawlessly on a local dev environment as well as a staging site here: http://bencross.co/igr/

for some reason, the infinite scroll is not working here: https://indiegamereviewer.com/

this theme is custom built based on the _s starter theme and is using a modified version of the included Jetpack support file:

<?php
/**
 * Jetpack Compatibility File.
 *
 * @link https://jetpack.com/
 *
 * @package IGR
 */

/**
 * Jetpack setup function.
 *
 * See: https://jetpack.com/support/infinite-scroll/
 * See: https://jetpack.com/support/responsive-videos/
 */
function igr_jetpack_setup() {
	// Add theme support for Infinite Scroll.
	add_theme_support( 'infinite-scroll', array(
		'container' => 'main',
		'render'    => 'igr_infinite_scroll_render',
		'footer'    => 'page',
		'posts_per_page' => 12,
	) );

	// Add theme support for Responsive Videos.
	add_theme_support( 'jetpack-responsive-videos' );
}
add_action( 'after_setup_theme', 'igr_jetpack_setup' );

/**
 * Custom render function for Infinite Scroll.
 */
function igr_infinite_scroll_render() {
	$post_count = 0;
	while ( have_posts() ) {
		if ( is_active_sidebar( 'archive-leaderboard' ) && $post_count == 6 ) : ?>
			<div class="archive-ad">
				<?php dynamic_sidebar( 'archive-leaderboard' ); ?>
				<p class="ad-id">advertisement</p>
			</div><!-- .ad-atf -->
		<?php endif;
		the_post();
			get_template_part( 'template-parts/content-excerpt', get_post_format() );
			$post_count++;
	}
}

/**
* Custom Infinite Footer for Jetpack Infinite Scroll.
*/
function igr_custom_infinite_footer() { ?>
<div id="infinite-footer" class="infinite-footer">
	<div class="container">
		<?php wp_nav_menu( array( 'theme_location' => 'footer', 'menu_class' => 'footer-menu' ) ); ?>
		<div class="site-copyright">
			<p>Copyright &copy; 2008 - <?php echo the_date(Y); ?> indiegamereviewer.com</p>
		</div>
	</div>
</div>
<?php }

/**
* Custom Filter to replace the JetPack Infinite Scroll Footer
**/
function igr_infinite_scroll_settings( $args ) {
if ( is_array( $args ) )
    $args['footer_callback'] = 'igr_custom_infinite_footer';
    return $args;
}
add_filter( 'infinite_scroll_settings', 'igr_infinite_scroll_settings' );

As I mentioned this is working on two separate “clones” of the site. Please help!

Thanks!

  • This topic was modified 20 minutes ago by bencross02.

Why, do you think, there’s a 400 view difference between Google and Jetpack stat

$
0
0

Replies: 0

I am at a loss as to why there would be such a large variance between JetPack stats and Google’s stats on the views for my pages.

The variance has been 200 views for a few days, but today it’s 400.

And, my Adsense earnings are not in line with the JetPack number of views. I tend to think Google is doing something weird, but … I’m open to suggestions.

Lazyload on product images

$
0
0

Replies: 0

I am using the Jetpack Lazyload. The lazyload works well but on the product page, the main image does not load and the thumbnails load over where the image should be.

I put the following code into functions.php:

function exclude_lazyload_single_product() {
if ( is_product() ) {
return false;
} else {
return true;
}
}
add_filter( ‘lazyload_is_enabled’, ‘exclude_lazyload_single_product’, 10, 3 );

It worked great until the last update. Is there something I should do to amend this so that it works properly?

migrating stats from WordPress.com

$
0
0

Replies: 0

Hi – I’d like to migrate my stats from my wordpress.com blog to a self-hosted site. Can someone help me with this?

old site – singlewaitingjoyful.wordpress.com
new site – claricefong.com

I’ve already installed the Jetpack plugin on my wordpress.org / self-hosted site 🙂

Thank you!

Clarice

Jetpack Facebook-widget scroll issue on Safari

$
0
0

Replies: 0

The Jetpack Facebook-widget doesn’t allow scrolling under Safari. It’s all fixed so content is being cut off at the end. Works fine under Firefox though.

Publicize on facebook

$
0
0

Replies: 1

Hello,
when I share my posts on facebook with publicize on my fb page, it’s written “published by : wordpress”. I don’t want people know that I’m using wordpress because of the possible hackers. I would like that it writes “published by : Vivons Soi” (the name of my facebook page and the link that corresponds.)
How can I modify that ? I can edit the code but I don’t know where.
Thank’s a lot.


How to remove “Project Type:” from the tile of Projects

$
0
0

Replies: 0

Hi, I have looked for a filter or CSS snippet that will remove the words “Project Title:” from Project pages. I want the Category to still how.
Example. I create a Project Called Books.
When I click on the the Book Project it shows as the Page Title:
Project Type: Books
I just want it to say
Books
I found this css snippet

.tax-jetpack-portfolio-type .page-title {
  display: none;
}

But it removes the page title too. Removing Books.

Anyone know of a filter or CSS code?
I appreciate any help!
Thank you in advance

How to remove jetpack.css in frontend

$
0
0

Replies: 0

How can I remove the style wp-content/plugins/jetpack/css/jetpack.css? It is being enqueued in fronted but I don’t need it.

I’ve tried all of these snippets, none works:

add_action( 'wp_print_styles',  'cyb_deregister_styles', 100 );
function cyb_deregister_styles() {
    wp_dequeue_style('jetpack_css');
    wp_deregister_style('jetpack_css');
}

add_action( 'wp_enqueue_scripts',  'cyb_deregister_styless', 100 );
function cyb_deregister_styless() {
    wp_dequeue_style('jetpack_css');
    wp_deregister_style('jetpack_css');
}

add_action( 'init',  'cyb_deregister_styless', 100 );
function cyb_deregister_styless() {
    wp_dequeue_style('jetpack_css');
    wp_deregister_style('jetpack_css');
}
  • This topic was modified 2 hours, 3 minutes ago by cybmeta.
  • This topic was modified 2 hours, 3 minutes ago by cybmeta.

publicize with more than one facebook fan page

$
0
0

Replies: 0

I have several fan pages, but i can just conect the main one, the old one. How can I conect jetpack with another different facebook fan page?

thanks

  • This topic was modified 2 hours, 35 minutes ago by colomet.

Jetpack has added a ‘log in with WordPress’ link to my login screen

$
0
0

Replies: 0

Hi,

How do I remove the ‘log in with WordPress’ link from my log in page?

Kind regards,
Nico
Adsler.co.uk

Jetpack Update disabled some settings?

$
0
0

Replies: 0

Hello Jetpack,

I am using your plugin since several years and I am quite happy with it. My blog is on: https://blog.webernetz.net .

During an update in the last few days the plugin disabled a couple of settings, for example the “Site stats” and the “Allow users to subscribe to your posts and comments and receive notifications via email”. Don’t know why. Do you have similar reports?

Furthermore, I am currently missing the meta tags e.g. for twitter cards. They disappeared and I don’t know why. I even don’t find an option to enable it. Do you have an idea?

Thanks a lot,
Johannes

jetpack tiled mosaic with caption

$
0
0

Replies: 0

Hello,

I would like to display the caption of my images in the tiled mosaic galleries, is it possible and how?

Thanx 4 your help!

Gaël

On my website Jetpack Is showing Wrong stats

$
0
0

Replies: 3

Hi I need help to fix the issue, my website is showing other site status not sure why. can you please check is it connection issue any thing else ? how to fix ?

Screenshot:http://prntscr.com/m78pfh

also created a ticket with jetpack support but didn’t got any reply yet.

email is: [email address removed from public forum]

  • This topic was modified 3 hours, 18 minutes ago by James Huff. Reason: email address removed from public forum

captcha for jetpack blog subscription widget

$
0
0

Replies: 0

Akismet spam protection is not preventing spam subscription to blog.
Is there any way to add captcha to jetpack subscription widget.

Also how to stop sending new user registration email to admin.

Regards,
Ak

Jetpack stats can’t load the file https://stats.wp.com/e-201903.js

$
0
0

Replies: 1

Since yesterday Jetpack stats is not registering all visitors. In total yesterday I have 45 pageviews. Normally at least 300.

When I opened the web developer toolbar of Chrome I can see that the file below cant be loaded.

https://stats.wp.com/e-201903.js

Error:
400 Bad Request
The plain HTTP request was sent to HTTPS port
nginx

The file https://stats.wp.com/e-201902.js works without any problems.

Thank you!

site stats doesn’t load

$
0
0

Replies: 0

site stats doesn’t load after i set dns only in cloudflare

Accidentally marked two referrers as spam

$
0
0

Replies: 0

I thought that the action button was telling that those two referrers WERE spam, not that clicking the button would make them spam. Then when I clicked on it, I thought it was confirming that they were no longer marked spam. Now they’re both gone and I have no way to see them or get them back. It’s the first day my site is live, and now my stats are ruined. I want to be able to see the two referrers that I marked as spam, but I no longer have the ability to do so.

My site is https://loribethclark.com
And one of the referrers was mailchimp. I don’t remember who the other one was, and I can’t see who is marked as spam.

Could someone please unblock those two referrers so I can see the stats from them?

Jetpack Carousel errors in Dev Mode

$
0
0

Replies: 0

Hi Guys,

I’m running Jetpack in Development Mode on the site shown below.

Since updating to Jetpack 6.9 from 6.8.1 the site’s Jetpack Carousel now generates the following error in Chrome Inspector when cycling through images:

“Failed to load resource: the server responded with a status of 400 … yada, yada”

Identical errors now occur on all of my sites set up the same way. I’m aware that Dev Mode has some limited features, but these new errors are a bit alarming.

Any ideas what may be causing them?

Thanks.

https://www.chicoconcours.com/2018/12/winners-2018/

WordPress 5.0.3 with Classic Editor
Self-hosted on WP Engine
PHP 5.6
Jetpack 6.9
Chrome 71 on Mac Yosemite

Viewing all 37463 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>