How to have Tiled Galleries like in WordPress.com?
Tiled galleries have been proprietary feature of wordpress.com, but later also released as Jetpack feature since version 2.1 of it.
Tiled galleries have been proprietary feature of wordpress.com, but later also released as Jetpack feature since version 2.1 of it.
you can try this if (is_admin()){ function my_remove_meta_boxes() { global $typenow; if( ‘YOUR_CUSTOM_POST_TYPE’ == $typenow ) { remove_meta_box(‘sharing_meta’, ‘YOUR_CUSTOM_POST_TYPE’, ‘high’); } } add_action( ‘admin_menu’, ‘my_remove_meta_boxes’ ); } Which removes the metabox registered by the jetpack plugin. Just make sure to change YOUR_CUSTOM_POST_TYPE with the actual name of your custom post type.
In short: make sure that the Jetpack plugin is installed and enabled, and also that the Jetpack Lite plugin is not enabled. I found out that Edit CSS is provided not by WordPress itself but by the plugin Jetpack. Jetpack was still installed; I had a Jetpack menu right below Dashboard. But when I opened … Read more
Redirect to another page using contact form 7? [closed]
You could probably just buffer the output from comments_popup_link in a separate function. function get_comments_popup_link( $zero = false, $one = false, $more = false, $css_class=””, $none = false ) { ob_start(); comments_popup_link( $zero, $one, $more, $css_class, $none ); return ob_get_clean(); }
Expanding on Shines good find that its an iframe, i came up with this: If you can get a HTML element in next to the iframe (so that its a sibling to the iframe) you could make the parent and the iframe position relative and this new element (we can call the new element blockie) … Read more
Use FireBug to inspect the HTML element holding the social icons. If the container has an ID assigned such as: <div id=”social-icons”> … </div> you can style it using CSS by adding some margin: #social-icons img { margin: 8px; }
Filtering get_permalink in Jetpack / ShareDaddy
These Jetpack settings are stored on WordPress.com. You can refresh them by refreshing permalinks as @GhostToast suggested. You can also force an update of your Jetpack settings by going to the Jetpack menu in your dashboard, and disconnecting then reconnecting to WordPress.com.