benklocek
Forum Replies Created
-
Forum: Plugins
In reply to: [Enable Media Replace] Page content erased after replacing an imageI’ve experienced this too, with Beaver Builder. Thanks for coming out with a fix!
Forum: Plugins
In reply to: [Simple Custom CSS Plugin] Googlebot 301 redirectsI’m wondering about this as well. Any suggestions?
Ah, thanks! Might want to fix that default at some point.
Forum: Plugins
In reply to: [Rocket Maintenance Mode & Coming Soon Page] PHP7 Compatible?This is in :/wp-content/plugins/rocket-maintenance-mode/includes/libs/MCAPI.class.php.
FWIW, this is in the MailChimp library included with the plugin, so unless you are using that feature, you should be good.
Forum: Plugins
In reply to: [Disable Embeds] Disable embeds on same siteThanks Pascal! Unfortunately, it doesn’t appear to be working: https://backpackinglight.com/forums/topic/myog-2p-4-season-semi-geodesic-tent/#post-3413945
I’ve edited and resaved the offending post, but it’s still showing the embeds.
Using Disable Embeds Version 1.3.0, WP Version 4.5.3
Forum: Plugins
In reply to: [Disable Embeds] Disable all URL and Make them plain texts onlyOpened a new ticket.
Forum: Plugins
In reply to: [NS Cloner - Site Copier] Plugin doesn't use full memory sizeI had to set both in wp-config.php for it to work:
define(‘WP_MEMORY_LIMIT’, ‘1500M’);
define(‘WP_MAX_MEMORY_LIMIT’, ‘1500M’);Forum: Plugins
In reply to: [Better Google Analytics] Caching IssueThank you! I’ll pass that on to them.
Forum: Plugins
In reply to: [Simple Custom CSS Plugin] Style not applied to SSL pagesI’m getting the same errors. The sccss is being loaded with the correct protocol, but the browser seems to think the content is being loaded over http. I think it has to do with how the sccss_maybe_print_css() function is operating.
My suggestion would be to write the file to drive (uploads/sccss/ or something). Multiple benefits to be gained by going this route: file can be cached, avoids this https issue, avoids extra DB hit on every page load.
Forum: Plugins
In reply to: [SendGrid] Adding Categories and unique args to emails via wp_mail $headers+1 on this request.
Simply adding a filter as @alpha1beta describes in the last sentence would be awesome!
You can use the
bbppt_eligible_post_types
filter to set the post_types you want to allow. The default includes post and pages. Add the following to your theme’s functions.php file./** * Disable BBPress Comments on pages */ add_filter( 'bbppt_eligible_post_types', 'mytheme_bbpress_comments_on' ); function mytheme_bbpress_comments_on(){ return array('post'); }
Forum: Plugins
In reply to: [Redirection] Export redirects, and what to do when changing domainThe export functionality seems to have disappeared in a recent update. The docs here: https://urbangiraffe.com/plugins/redirection/ show a different interface with links to each export type.
Something is amiss.
Forum: Plugins
In reply to: [Broadcast] Custom Fields FilterYes, that does the trick.
And thanks Edward for your great support (on all support requests for your plugins).
Forum: Plugins
In reply to: [Broadcast] Custom Fields FilterLooks like I have 6. Someones been BUSY! ??
On 11: In broadcasting_modify_post.php does $broadcasting_data contain the original post content?
How does one use these actions? Is is just as usual in my plugin or functions.php?
add_action('broadcasting_modify_post', 'my_modifying_function');
Forum: Plugins
In reply to: [Broadcast] Prevent Updated Child Post Overwrite?Does this prevent only when the child has been changed? The docs are not clear.