vespino
Forum Replies Created
-
Forum: Plugins
In reply to: [wp-flickr-press] HTTPS APIDoes the plugin also make it possible to insert albums or photosets?
Forum: Plugins
In reply to: [wp-flickr-press] HTTPS APIGreat! Thank you.
Forum: Plugins
In reply to: [JSON API] Complete "content" in get_category_posts methodSolved the problem by adding the following to my functions.php file:
function remove_more_json_api($content) {
if(get_query_var(‘json’)){
global $post;
$content = preg_replace(‘/<!–more(.*?)?–>/’,”,$post->post_content);
}
return $content;
}
add_filter(‘the_content’, ‘remove_more_json_api’, 1);Forum: Plugins
In reply to: [JSON API] Complete "content" in get_category_posts methodI have changed this:
$this->set_content_value();
To:
$this->set_value(‘content’, apply_filters(‘the_content’, $wp_post->post_content));
in the models/post.php file as a temporary solution. If someone has a better one, one that will not reset when an update presents itself, I’d love to hear it!
Forum: Plugins
In reply to: [JM Twitter Cards] automatically take excerpts of postsI just found out if I place the description I’m looking for in the description field of “All in one SEO” that JM Twitter Cards uses this text on Twitter, so I’m happy now ??
Forum: Plugins
In reply to: [JSON API] Desktop/mobile browser different resultProblem solved. This was caused by WPtouch.
Forum: Plugins
In reply to: [JM Twitter Cards] automatically take excerpts of postsHaha, thought so. Which block should I configure or change?
Forum: Plugins
In reply to: [JM Twitter Cards] automatically take excerpts of postsI don’t seem to have an option page for this plugin. Only this https://awesomescreenshot.com/07e2bnr7d9
Forum: Plugins
In reply to: [JM Twitter Cards] automatically take excerpts of postsI have activated the meta box function, but don’t quit understand what I have to do next.
Forum: Plugins
In reply to: [JM Twitter Cards] automatically take excerpts of postsI think what he means is that he would like the twitter:description to be the excerpt field instead of the first words from the content field. That is what I’d like to have also if possible.
Forum: Plugins
In reply to: [Post Types Order] e.ui.isOverAxis is not a functionYes! In my case it was easy content types.
Aha, thanks that was not clear to me :S
Forum: Plugins
In reply to: [WPML Page Order] [Plugin: WPML Page Order] Plugin does not workI have looked into the plugin issue and found the solution. The jQuery part is hooked on ‘#myPageOrderList’ but this is no where on the page because the ID of the
- in which the sortable items are located is ‘order’.
Problem solved!