Eduardo Zulian
Forum Replies Created
-
Forum: Plugins
In reply to: [IssueM] Contributing via GitHubAwesome, thanks! I’ll mark it as resolved. ??
Forum: Plugins
In reply to: [IssueM] Older issues don't have a landing page?Yep, it’s possible just by checking an option on your settings page. Here you can see how to do it: https://zeen101.com/documentation/why-are-my-past-issues-using-a-different-layout-to-my-current-issue/
Forum: Fixing WordPress
In reply to: Admin Color Scheme Doesn't Change Color on front end (3.8)Since the admin color configuration works on a user basis, I don’t think this can be accomplished. You can try, however, to set a new default admin bar color on the front end.
Forum: Fixing WordPress
In reply to: Admin Color Scheme Doesn't Change Color on front end (3.8)I wrote a little plugin called Admin Bar Color which allows you to use the new colors schemes on your front end admin bar.
Hope it helps!
Forum: Plugins
In reply to: [Widget Subtitle] Show in the Title header@jberg1, Thanks for the kind words!
And you guys are right, it sounds more reasonable to have this subtitle inside the widget title wrapper. Would you mind testing version 1.1 and see if it fits your need? Subtitle wrapper tag, classes and output are now filterable. For the latter, you can now use the following in you
functions.php
:<?php /** * Filter subtitle position and display it after the widget title tag is closed * * @param string $html The output * @param string $after_title_tag Widget after_title tag * @param string $subtitle The widget subtitle * @return string $html The output */ function widget_subtitle_new_position( $output, $after_title_tag, $subtitle ) { $output = $after_title_tag . $subtitle; return $output; } add_filter( 'widget_subtitle_position', 'widget_subtitle_new_position', 10, 3 ); ?>
Forum: Plugins
In reply to: [Admin Color Schemes] additional colors in frontendHey lustek, I think I solved it!
Forum: Plugins
In reply to: [Widget Subtitle] Show in the Title headerCould you please tell me what’s the difference that this is going to make? It’s just a matter of opinion or am I missing something?
Forum: Plugins
In reply to: [Widget Subtitle] Show in the Title headerExactly! That’s why you have a
.widget-subtitle
class:<span class="widget-subtitle">Your widget subtitle</span>
Forum: Plugins
In reply to: [Widget Subtitle] Show in the Title headerThe purpose of the subtitle is to be an additional markup for your title. If we leave the subtitle inside the widget title container, they’ll have the same style, right?
Forum: Plugins
In reply to: [Post Format Gallery Widget] Cannot see galley postsCossTas,
Do you have the post format Gallery registered on your theme?
Forum: Plugins
In reply to: [A Featured Page Widget] Plugin hookHey, Thomas. No problem at all!
Ok, let me get this straight: you want the ability to change the post thumbnail based on the page you’re visiting? Is that it? And we could have a filter for it, is that what you’re asking?
Bye!
Forum: Plugins
In reply to: [WP-PostRatings] Remove RATING column from Admin ScreensYou can remove these columns through the same filters in your functions.php file:
/** * Remove WP-PostRatings custom columns */ function remove_ratings_column( $columns ) { if ( array_key_exists( 'ratings', $columns ) ) unset( $columns['ratings'] ); return $columns; } add_filter( 'manage_posts_columns', 'remove_ratings_column' ); add_filter( 'manage_pages_columns', 'remove_ratings_column' );
Forum: Plugins
In reply to: [A Featured Page Widget] Plugin hookHi Thomas!
Yes, that is possible, but it wasn’t in my plans till now. So, are you trying to display some custom fields inside your widget area, right? And what about that alternative image?
Forum: Fixing WordPress
In reply to: Custom post type not working with paginationFelipe, WordPress support forums are also available in Português do Brasil.
Lá podemos te ajudar em português. : )
Forum: Fixing WordPress
In reply to: Accessing global $post from oembed_dataparse add_filterAaron, maybe I am too late, but maybe you should check out this piece of code!