radektj
Forum Replies Created
-
Forum: Plugins
In reply to: [Recent Posts Widget Extended] “read more” has no link. It’s only text.I don’t know, check the post and excerpt field.
Forum: Plugins
In reply to: [Recent Posts Widget Extended] “read more” has no link. It’s only text.The default function, eg.
[rpwe limit="10" thumb="true" excerpt="true" readmore="true" readmore_text="Read More »"]
and active link
https://www.ads-software.com/plugins/recent-posts-widget-extended/ and SHORCODE EXPLANATION/Here’s the full default shortcode arguments
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Avoid text breakcustom css:
.rpwe-title { -ms-word-wrap: normal; word-wrap: normal; -webkit-hyphens: none; -ms-hyphens: none; hyphens: none; }
Forum: Plugins
In reply to: [Advanced Random Posts Widget] tag=”” attribute for Shortcode is brokentag="123"
123 – tag id
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Date in non russian formatwp-content/plugins/recent-posts-widget-extended/includes/functions.php and line 173:
$date = get_the_date();
replace
$date = get_the_date(get_option('date_format'));
Forum: Plugins
In reply to: [Recent Posts Widget Extended] WSODConflict? check all plugins, custom codes etc.
For what it’s worth, I deactivated and removed, then re-installed it and everything was fine. Very strange.
??
- This reply was modified 6 years, 4 months ago by radektj. Reason: fixed
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Display all categories assigned to a postForum: Plugins
In reply to: [Advanced Random Posts Widget] TAG after TITLE1. plugins/advanced-random-posts-widget/includes/posts.php and line 96:
$html .= '<a class="arpw-title" href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . esc_attr( get_the_title() ) . '</a>';
replace (words, eg. 5)
$html .= '<a class="arpw-title" href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . wp_trim_words( get_the_title(), 5 ) . '</a>';
or characters (eg. 30)
$html .= '<a class="arpw-title" href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . mb_strimwidth( get_the_title(), 0, 30, '...' ) . '</a>';
2.
.arpw-category { margin-bottom: 10px; }
Forum: Plugins
In reply to: [Advanced Random Posts Widget] TAG after TITLE1. I don’t understand… settings->Extras and you can configure excerpt (auto from content or Excerpt field)
2/3.
.arpw-title, .arpw-summary, .arpw-category, .arpw-tags { float: left; clear: both; }
4.
.arpw-thumbnail { padding: 2px; border: 1px dotted #ddd; }
Forum: Plugins
In reply to: [Advanced Random Posts Widget] TAG after TITLEtop and bottom:
.arpw-tags p { margin-top: 0; margin-bottom: 0; }
thumbnail and position – widget settings, Thumbnail->Thumbnail Alignment
line – custom css:
.arpw-li { border-bottom: 1px solid #ddd; }
Forum: Plugins
In reply to: [Advanced Random Posts Widget] TAG after TITLE$html .= '<span class="arpw-category">Categories: ' . get_the_category_list(', ') . '</span>';
how to reduce p margin (under tags), custom css:
.arpw-tags p { margin-bottom: 0; }
Forum: Plugins
In reply to: [Advanced Random Posts Widget] TAG after TITLEplugins/advanced-random-posts-widget/includes/posts.php and the tag code above line 98:
$html .= '<span class="arpw-tags">' . get_the_tag_list('<p>Tags: ',', ','</p>') . '</span>';
Forum: Plugins
In reply to: [Advanced Random Posts Widget] Unload css file?plugins/advanced-random-posts-widget/arpw.php and remove the code (line 131-138):
/** * Enqueue front-end style. * * @since 0.0.1 */ function plugin_style() { wp_register_style( 'arpw-style', trailingslashit( ARPW_ASSETS ) . 'css/arpw-frontend.css' ); }
custom css – Appearance->Customize->Additional CSS
cache – I can’t help