Hurz
Forum Replies Created
-
Forum: Plugins
In reply to: [WPeMatico RSS Feed Fetcher] YouTube Feed – image and video in post@etruel That would be a GREAT thing, thank you for all your feedback!
And to add a 2nd question .. where exactly do i past that code in?
Thank you for your hint. As i am not sure, would this work then for posts with the category “news” to be excluded from publicize:
/** * Do not trigger Publicize if the post uses the <code>news</code> cat. */ function jeherve_control_publicize( $should_publicize, $post ) { // Return early if we don't have a post yet (it hasn't been saved as a draft) if ( ! $post ) { return $should_publicize; } // Get list of tags for our post. $tags = wp_get_post_cats( $post->ID ); // Loop though all cats, and return false if the cat's name is <code>news</code> foreach ( $cats as $cat ) { if ( 'news' == $cat->name ) { return false; } } return $should_publicize; } add_filter( 'publicize_should_publicize_published_post', 'jeherve_control_publicize', 10, 2 );Forum: Plugins
In reply to: [WPeMatico RSS Feed Fetcher] YouTube Feed – image and video in postHello,
Thank you for your quick answer, but what feature does that? I am not sure which feature that is not included in the free version describes what I would need.
Thank you
HurzI would also know that, as some news are not to be shared on social media.
Forum: Fixing WordPress
In reply to: WP 4.3 update no longer aviable in dashboard after plugin updateThe update was there today again, but check again did nothing yesterday. Strange, but thx for the hint!
Forum: Plugins
In reply to: [Easy Social Icons] update to 1.2.4.1 – than WP update to 4.3 goneThe update simply was there again today and worked. Strange, but thx for the hint, that would have been my next step.
Forum: Plugins
In reply to: [Easy Social Icons] line under iconsThank you very much! That did the trick .. i just entered
ul.cnss-social-icon li{border-bottom:none!important;}
into my style.css of my child theme .. perfectly.
Great work!
Forum: Plugins
In reply to: [Easy Social Icons] line under iconsThe line is still there on Win 7 + IE and FF as well as on Win 10 + Chrome. It is not very visible but it confuses me 🙂 I uploaded a image of the part that i made a bit bigger:
If i set the icons to vertical order (what makes no sense on my layout, but i tried) the line is under each icon and streches nearly the whole length of the sidebar.