ColinD
Forum Replies Created
-
Forum: Plugins
In reply to: [Featured Authors Widget] where in the database is the featured author storedForum: Plugins
In reply to: [Featured Authors Widget] where in the database is the featured author storedAs with widgets generally, all widget settings are stored in the options table.
Forum: Fixing WordPress
In reply to: Customizer admin-ajax.php 404WP 4.5.3
Site5Forum: Fixing WordPress
In reply to: Customizer admin-ajax.php 404I guess I should have mentioned I did that before posting. Yes, problem persists regardless of theme and with no plugins active.
Forum: Plugins
In reply to: [Featured Authors Widget] Bad LinksHi Bill,
The links to the authors’ posts are constructed on line 91 of the plugin:
<li><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" class="featured-contrib-story"><?php the_title(); ?></a></li>The link is constructed using
the_permalink()which is a properly escaped WordPress core function. I think you’ll need to look elsewhere in your environment to determine why the_permalink() would be echoing incorrectly escaped URLs.Colin
Forum: Plugins
In reply to: [Featured Authors Widget] Bad LinksHi Bil,
Your sample looks like you’ve found an alternative. Sorry I wasn’t able to respond in time. I’ll double check that the output is properly escaped as I prep the plugin for WP 4.6
Colin
Forum: Plugins
In reply to: [Featured Authors Widget] Changing the css?Styling should be done in your theme (style.css)
Forum: Plugins
In reply to: Removing WooThemes Sensei actions via an external plugin class fileTo remove an action from a theme I found this worked for me. The priority of the add_action seemed to be the key.
/** * Remove Sensei Comments Action * */ function themename_sensei_remove_comments(){ remove_action( 'sensei_comments', array(Sensei()->frontend, 'sensei_output_comments' )); } add_action( 'sensei_comments', 'themename_sensei_remove_comments', 5);Forum: Plugins
In reply to: Plugin: Sensei – Remove action via another pluginTo remove an action from my theme I had to do
/** * Remove Sensei Comments Action * */ function themename_sensei_remove_comments(){ remove_action( 'sensei_comments', array(Sensei()->frontend, 'sensei_output_comments' )); } add_action( 'sensei_comments', 'themename_sensei_remove_comments', 5);The priority of my add_action seemed to be the key.
Forum: Plugins
In reply to: [Featured Authors Widget] Display 0 posts – does not workHi,
Sorry about that. I’d never considered that edge case. Please use v2.0.2.
Cheers,
ColinForum: Plugins
In reply to: [Featured Authors Widget] After Update Plugin couses WP White screenShoot. Sorry about that. Please grab v2.0.1 that fixes my error.
Forum: Plugins
In reply to: [Email Before Download] Submit Button Keeps SpinningI’ve updated the page here with both the plain CF7 form via its shortcode and the same form via the EBD shortcode.
Forum: Plugins
In reply to: [Email Before Download] Submit Button Keeps Spinningyes, CF7 works independantly as does DM 1.6.3
Thanks for the prompt response.
Colin
Forum: Plugins
In reply to: [Contact Form 7] Attach a media item to an emailAwesome. Thank you. It was obviously difficult for me to find this info on my own. Could I suggest adding a tooltip or other method for linking to further instructions in a future release?
Forum: Plugins
In reply to: [Featured Authors Widget] How to change the alignment of images and texts?Each author is in a wrapper, ‘cd-fa-wrap’
Inside that there are two blocks that each have a fixed width and are floated left
‘avatar-wrap’ is the image. In the example, it’s 60px wide.
‘cd-fa-info’ is the author’s name and posts. In the example, its 160px wide.
You’ll need to apply a clearfix to the author wrapper.If you have a responsive design and your column width changes you’ll need to adapt that a bit. There are probably better approaches but since that site wasn’t responsive that was fastest for me.