Tag Info

New answers tagged

0

Here's the direction to go, I think: The WP Infinite Scroll plugin works by identifying your page's navigation and then, I think, loading the next link found there. So instead modifying the query on single.php, I'm now trying to modify the pagination. I've tried several pagination functions, such as posts_nav_link() and twentytwelve_content_nav( ...


0

There is no standard for a content.php in WordPress, that’s why you cannot find in the Codex. Some themes use it to render the post content. So instead of … while ( have_posts() ) { the_post(); ?><li <?php post_class(); ?>> <?php the_title( '<h2><a href="' . get_permalink() . '">', '</a></h2>' ...


2

I see 3 ways to edit Jetpack Mobile theme: 1. Use Jetpack's Custom CSS module Jetpack includes a module named "Custom CSS" that allows you to add your own custom CSS without having to edit your theme stylesheet. The custom CSS editor (under Appearance > Edit CSS) also includes an option to include this custom CSS in Jetpack's mobile theme. You could ...


0

Something is wrong with your jetpack. Try disabling other plugins, or uninstalling and reinstalling jetpack. Or seeing if you can update it. The javascript is not loading correctly for you on the admin area for some reason. I would also view source and see where those ?ver=2:1 strings are. Those seem odd with the / in front of them. Usually ver goes ...


0

Finally this was solved by disabling some Jetpack modules. I am not sure which one did it, but I suspect the spell checker. To disable a Jetpack module, go to the Jetpack page on the dashboard, then click "Learn More" on a module. The "Configure" button changes to "Deactivate", so now you can disable the module. (This seems a bit counterintuitive and ...


0

wp_mail does not support rich formatting, so you can't just embed the image in the body. It does, however, support attachments. If you read about the function, you'll see it has a parameter for attachments. Try hooking your attachment there instead: http://codex.wordpress.org/Function_Reference/wp_mail $attachments (string or array) (optional) Files ...


1

It seems that your Urchin is configured to measure hits on your server instead of page views (this is speculation since I do not have the link to your site). The high number could only be explained by the fact that one pageview would require multiple elements on your site (js files, css files, images, etc). GA and Jetpack always have discrepancies and that ...


0

You don't see an Activate link on modules that are already active. If you want to deactivate it, click the Learn More link, then you'll find a Deactivate link.


0

Not all Jetpack features need to be activated. This one in particular just adds a dropdown menu option in the gallery settings. See the Jetpack website for more information on this feature.


7

We just committed a new function to Jetpack Trunk, and it should be enabled in the next release, Jetpack::is_module_active() -- http://plugins.trac.wordpress.org/changeset/716884 Then you can just call: if( class_exists( 'Jetpack' ) && Jetpack::is_module_active( 'contact-form' ) ) {} Or at least, you will once the next version releases, and the user ...


0

Well, the response should be JSON only. Not some HTML with JSON at the end. Seems like the WordPress SEO plugin installed uses output buffering to output the meta tags in the HTML header. Have you tried deactivating this plugin or others? Maybe you can deactivate output buffering in the plugin alltogether.



Top 50 recent answers are included