icenexus
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comments Disappeared When Upgrading to WordPress 4.4I have encountered the same problem too for my site. I did tests and it’s not related to my theme nor plug-ins. It’s only a problem that happens if I update to 4.4 ??
Forum: Plugins
In reply to: [WP Hide Post] Posts are not hidingI think I found a fix.
In php file, I changes below:
function wphp_is_front_page() { return is_front_page(); }
to:
function wphp_is_front_page() { return is_home(); }
Forum: Plugins
In reply to: [Social Slider Feed] "No Images Yet" after upgradeThank you so much! I would really appreciate it!
Forum: Plugins
In reply to: [Social Slider Feed] "No Images Yet" after upgradeI see. Can there be an option of not saving it to my media library? I am having issues with host size already and would like to minimize the saving of images :/ can’t the plug–in just pull the image link and not save it?
Would love an option for this in update.
Forum: Plugins
In reply to: [Social Slider Feed] "No Images Yet" after upgrade@jetonr I have something to add; other than the images not showing, the instagram images get saved to my media gallery too—how can I stop that from happening? There’s no toggle to stop it.
Forum: Plugins
In reply to: [Social Slider Feed] Images not showingI have something to add; other than the images not showing, the instagram images get saved to my media gallery too—how can I stop that from happening? There’s no toggle to stop it.
Thanks. Let me know how it goes. I tried it again yesterday and it still didn’t work. ??
yeah today it just got fixed. Thank you.
Though indeed, when I try to put this code:
function jetpackme_exclude_related_post( $exclude_post_ids, $post_id ) {
// $post_id is the post we are currently getting related posts for
$exclude_post_ids[] = 1037; // Exclude post_id 1037
$exclude_post_ids[] = 1038; // Also exclude post_id 1038
return $exclude_post_ids;
}
add_filter( ‘jetpack_relatedposts_filter_exclude_post_ids’, ‘jetpackme_exclude_related_post’ );The related posts just disappear. Does this piece of code have any error on it?
And whenever I use this code:
function jetpackme_exclude_related_post( $exclude_post_ids, $post_id ) {
// $post_id is the post we are currently getting related posts for
$exclude_post_ids[] = 1037; // Exclude post_id 1037
$exclude_post_ids[] = 1038; // Also exclude post_id 1038
return $exclude_post_ids;
}
add_filter( ‘jetpack_relatedposts_filter_exclude_post_ids’, ‘jetpackme_exclude_related_post’ );All my related posts go away (this is what I detected had made my related posts disappear in the first place)
But I remember before that with this code in, my related posts will still show. (I got this code in: https://jetpack.me/support/related-posts/customize-related-posts/)