Steve
Forum Replies Created
-
Forum: Reviews
In reply to: [Flexible Quote Rotator Plus] Great for any smoothly rotatable textThanks for the kind word, appreciated!
Forum: Plugins
In reply to: [Flexible Quote Rotator Plus] Fatal Error, PHP, entire site went downOk, great. Glad you got it figured out, and thanks for letting me know!
Forum: Plugins
In reply to: [Flexible Quote Rotator Plus] Migration from Flexi Quote RotatorGreat, glad it helped/worked out. I’ll try to take a look a the padding.
Forum: Plugins
In reply to: [Flexible Quote Rotator Plus] Migration from Flexi Quote RotatorHi – There’s no automated mechanism. You could use cpanel/mysql to do an export/import.If you know how to use those tools….
Be aware that this plugin might behave a bit differently than the older flexible quote rotator plus. Good luck!
Forum: Reviews
In reply to: [Flexible Quote Rotator Plus] it works after allHey,sorry you’re having trouble. Let me know the shortcode you attempted to use when you got the “quotes not found” issue. That usually means there was a javascript error of some type.
if you have time, please post the URL of your site. I’d like to see the border line issue.
thanks
Forum: Fixing WordPress
In reply to: How to delete left and right margins in twenty sixteen themethat was even more painful. I created a child theme, then a full-width-php file like below.
not saying this is the best way etc.i’m not an expert…. but worked for me….
<?php
/*
Template Name: Full Width
*/get_header(); ?>
<div id=”primary” class=”content-area”>
<main id=”main” class=”site-main” role=”main”>
<?php
// Start the loop.
while ( have_posts() ) : the_post();
// Include the page content template.
get_template_part( ‘template-parts/content’, ‘page’ );
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) {
comments_template();
}// End of the loop.
endwhile;
?>
</main><!– .site-main –></div><!– .content-area –>
<?php get_footer(); ?>Forum: Fixing WordPress
In reply to: How to delete left and right margins in twenty sixteen themeIf I remember correctly, I did it via css…. something like below. Not sure that was the only change thou….
.single-post #secondary {
display: none;
}.single-post #primary {
width: 100% !important;
}Forum: Fixing WordPress
In reply to: Need help with transfer of domainthis page might help.
Forum: Plugins
In reply to: [Flexible Quote Rotator Plus] Hebrew supportUnfortunately no. I based this code on an older plugin, which didn’t have that support. I’ll look into what it would take to add it, I can see it definitely would be helpful.
Forum: Plugins
In reply to: [Flexible Quote Rotator Plus] More formatting optionsThanks for the feedback/suggestions. I’ll add those to my list of enhancements. Good ideas all. I don’t have the time right now, but hopefully at some point during the summer.
Forum: Plugins
In reply to: [Flexible Quote Rotator Plus] Scheduled QuotesHum, never thought of that, I like the idea thou. No, at this time it can’t do that. I’ll consider for another release, although I’m not sure when that will be. Right now I’m working on a new but similar plugin that will be responsive, etc. When that one is done i’ll update this one with similar functionality.
I don’t think there’s a size limit, but i’ve never tested it with a really really long quote.
Forum: Plugins
In reply to: [Flexible Quote Rotator Plus] How to Bold the TitleI know this is way too late, but just in case somebody else wants to do this:
to change the color of the title, add this CSS (i like to use the Custom CSS Manager plugin for this)
h4.title19911 {
color:black !important;
}See this page for example. i changed the color from gray to black:
http://stevelescure.net/flexible-quote-rotator-plus/
to find the class name (title19911 in my case), in Chrome right click the field, then click “Inspect”).
Forum: Plugins
In reply to: [Flexible Quote Rotator Plus] Add next/prev buttons pleaseThanks. Just FYI. I’m working on an enhancement add Prev/Next buttons, and also make it responsive.
Forum: Plugins
In reply to: [Flexible Quote Rotator Plus] What's WP Capability?I’m going to mark this topic as resolved.
I’d be interested in hearing anybody else’s thoughts on this issue.
Forum: Plugins
In reply to: [Flexible Quote Rotator Plus] What's WP Capability?Hello again,
Since I think it’s possible some people might want Editors to add/modify quotes, i suggest you modify your site’s functions.php to handle this issue.
I wrote/tested this code – below – after you add it only Administrators will be able to edit/modify the quotes. just cut and paste it into functions.php.
hope this helps.
add_action( ‘admin_menu’, ‘my_remove_menu_pages’ );
function my_remove_menu_pages() {
if (!current_user_can(‘administrator’)) {
remove_submenu_page( ‘tools.php’,’flexi-quote-rotator-plus.php’ );
}
}see the page below if you are not familiar with how to modify the functions.php file.