Daniel Drake
Forum Replies Created
-
Forum: Plugins
In reply to: [Flexible Recent Posts] Can't check categoriesNothing on Javascript, but there is a 404 error.
[19:15:40.375] GET https://84.208.70.249/wp-content/plugins/flexible-recent-posts/scripts/frp.min.js?ver=3.7.1 [HTTP/1.1 404 Not Found 1639ms] [19:15:43.625] Usage of getPreventDefault() is not recommended. Use defaultPrevented instead. @ https://widgets.wp.com/notes/notes-widget.min.js?v=20131201:2 [19:15:43.737] Usage of getPreventDefault() is not recommended. Use defaultPrevented instead. @ https://84.208.70.249/wp-admin/load-scripts.php?c=1&load%5B%5D=jquery-core,jquery-migrate,utils&ver=3.7.1:4 [19:15:44.193] Usage of getPreventDefault() is not recommended. Use defaultPrevented instead. @ https://s1.wp.com/_static/??-eJzTLy/QzcxLzilNSS3WzwKiwtLUokoopZdVrKOPT4FubmZ6UWJJql5uZh5McXJ+XklqXglIbUF+cUluanFxYnoqUNY+19bQ2NzcyMzc0twkCwDeoSwW:4
Forum: Plugins
In reply to: [Flexible Recent Posts] Can't check categoriesYes, it is.
I’ve found a replacement plugin, so it’s not urgent. But very strange still.
Forum: Plugins
In reply to: [Smooth Slider] Maximum content size (in words)moXnesdesign,
Since this plugin appears not to be maintained anymore, my suggestion is to look for a different slider plugin. Look for one with mobile interface integration.
Forum: Plugins
In reply to: [Smooth Slider] Embed on homepage – helpIt won’t show up automatically. Here are three ways of including it:
1. In your template file, use one of the template tags, like so:
<?php if ( function_exists( 'get_smooth_slider' ) ) : get_smooth_slider(); endif; ?>
2. Create a new dynamic sidebar area and use the Smooth Slider widget.
3. Use one of the shortcodes with the do_shortcode function.
Forum: Plugins
In reply to: [Smooth Slider] integrated font themeIt’s not easy, but possible.
First, create your own skin for Smooth Slider, as discussed here: https://www.ads-software.com/support/topic/cant-edit-css-file-1?replies=2
Then, edit your skin’s style.css file and change the font-family values to the font you want.
Forum: Plugins
In reply to: [Smooth Slider] "Add this post/page to Smooth slider" by DefaultIn this file:
/wp-content/plugins/smooth-slider/smooth-slider.php
find this line:
if(is_post_on_any_slider($post_id)) { $extra = 'checked="checked"'; }
and remove the if-clause. The line should simply read:
$extra = 'checked="checked"';
Forum: Plugins
In reply to: [Smooth Slider] Can't edit CSS fileMarie,
Start by creating your own skin folder in:
/wp-content/plugins/smooth-slider/css/skins
The best way is to make a copy of the ‘sample’ folder already there, and naming it something like ‘marie’.
Then, in the Settings panel, find:
Smooth Slider Styles to Use on Other than Post/Pages
In the drop-down menu, change the value from ‘default’ to ‘marie’. (It should be in there.)
Now your slider will always follow that style.css file in ‘marie’. Note that it will also override style choices in your Settings panel.
Forum: Plugins
In reply to: [Smooth Slider] Add date to smooth sliderTo add a date, you’ll need to edit this file:
/wp-content/plugins/smooth-slider/slider_versions/smooth_1.php
Find this section:
foreach($posts as $post) { $post_id = $post->ID;
Directly below it, add:
$post_date = $post->post_date;
Find this section:
if($permalink!='') { $html .= '<h2 '.$smooth_slider_css['smooth_slider_h2'].'><a '.$smooth_slider_css['smooth_slider_h2_a'].' href="'.$permalink.'">'.$post_title.'</a></h2><span '.$smooth_slider_css['smooth_slider_span'].'> '.$slider_excerpt.'</span>
Using HTML and the $post_date variable, add the date somewhere within that code. I added mine after the </h2> tag and before the <span> tag.
There’s some similar code in the following ‘else’ statement. Consider adding your date there too.
If you want to add the author, do a similar thing using $post->post_author.
single-ai1ec_event.php worked like a charm. Thanks!
Forum: Plugins
In reply to: Facebook Connect – Avatars in P2/Prologue/RaskSeconded; I’d like to know as well.
– Daniel