Chris A. a11n
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Images keep line breakingYou may want to try displaying your images inside of a standard WordPress gallery. Galleries allow you to display your images in a grid formation inside of posts and pages.
You can find the instructions on how to implement galleries in this codex article: https://codex.www.ads-software.com/The_WordPress_Gallery
Forum: Reviews
In reply to: [WP Migrate Lite - WordPress Migration Made Easy] What a Time SaverJust wanted to chime in here and confirm what Jeff stated early.
The free version does not migrate image files from one location to another, that functionality is only available in the pro version.
Having said that, the free version will still perform a URL find & replace across all image paths & URLs in your database.
As Jeff mentioned though, you’ll still need to manually move your images files from server to another.
Thanks for the kind words! I’m glad to hear our work is making your development easier. Have you taken a look at the pro version? Could help you out even more. If you have any questions about it, shoot me an email at [email protected].
Forum: Plugins
In reply to: [Advanced Excerpt] Does not work on pages set to frontpageAre you able to try out a development version for me?
I believe we’ve made some improvements in the way of page based front pages.
Forum: Plugins
In reply to: [Advanced Excerpt] Allow "Insert Read More Tag" button to override everythingFeel free to open a pull request if you’d like: https://github.com/deliciousbrains/wp-advanced-excerpt
Forum: Plugins
In reply to: [Advanced Excerpt] Plugin interfering with MailchimpHi frogs4ever,
I just did some testing locally, here’s my findings.
- With Advanced Excerpt enabled the site’s RSS feed <b>will be</b> altered.
- Checking the “Posts RSS Feed” option under “Disable On” in the Advanced Excerpt settings will disable this functionality.
I also ran into some weird caching problems when viewing my local RSS feed. I was able to circumvent this issue by refreshing the RSS feed a bunch of times after making a change.
In short, I’m unable to replicate the problem you’re currently having.
If you go to Settings > Reading in your WordPress dashboard which option is checked under the heading “For each article in a feed, show”?
Cheers,
Chris
Forum: Plugins
In reply to: [Advanced Excerpt] Installed plugin, no effect on excerptsAre you positive that you’re editing the correct template file?
What if you instead try using the
the_advanced_excerpt()
function instead?Forum: Plugins
In reply to: [Advanced Excerpt] Plugin interfering with MailchimpHi frogs4ever,
I’m not entirely sure how Mailchimp works, where is it pulling the content from? Are you using a plugin for this? Is it pulling the content from your RSS feed?
Any additional information would be helpful here.
Cheers,
Chris
Forum: Plugins
In reply to: [Advanced Excerpt] Hide images (jpg) while showing emoticons (gifs) ?Hi 7lHd,
Unfortunately that isn’t a feature in the plugin at the moment.
Apologies for the inconvenience.
We be accept to accept a pull request for this feature here if you manage to figure it out: https://github.com/deliciousbrains/wp-advanced-excerpt
Cheers,
Chris
Forum: Plugins
In reply to: [Advanced Excerpt] Plugin keeps resetting to default settingsHi joshuaiz,
I’m not entirely sure why this is happening as I’m unable to replicate the problem myself. Can you consistently reproduce the problem?
Does it reset the settings on every page load?
Cheers,
Chris
Forum: Plugins
In reply to: [Advanced Excerpt] Custom Replace & Action HookYou can use the filter
advanced_excerpt_content
to further modify the excerpt.Forum: Plugins
In reply to: [Advanced Excerpt] Strip Everything but a given ID or classYou can completely skip excerpt filtering on a per post basis using the
advanced_excerpt_skip_excerpt_filtering
filter.You can then manually filter certain excerpts and format them as you wish.
Forum: Plugins
In reply to: [Advanced Excerpt] Strip Everything but a given ID or classHi davidstreck,
Unfortunately that is not an option at this stage.
Cheers,
Chris
Forum: Plugins
In reply to: [Advanced Excerpt] Selectively disable custom template OR filter contentCurrently there’s no easy way to do this within the plugin. I could create a filter that would allow you to skip the excerpt filtering in certain circumstances, I’ll make sure I add that in the next release.
Forum: Plugins
In reply to: [Advanced Excerpt] Installed plugin, no effect on excerptsHi anaboz,
As per the www.ads-software.com docs on
get_the_content()
https://codex.www.ads-software.com/Function_Reference/get_the_content
If you use plugins that filter content (add_filter( ‘the_content’ )), then this will not apply the filters, unless you call it this way (using apply_filters):
<?php apply_filters( ‘the_content’, get_the_content( $more_link_text, $stripteaser, $more_file ) ); ?>
Otherwise you instead simply use
the_content()
Does this help at all?