lisajwells
Forum Replies Created
-
Yessiree! All better now. Thank you, Daniel.
Forum: Plugins
In reply to: [Popup by Supsystic] Click on certain link / button in WidgetI made it work by:
1) allowing shortcode in widgets by placing this in functions.php:
add_filter('widget_text', 'do_shortcode');
2) using the shortcode like this:
<a id="blog-popup-btn" class="button small" href="https://[supsystic-show-popup id=100]"> Click here to find out</a>
Have you seen this documentation?
https://www.imagely.com/docs/creating-new-thumbnails/
It includes CUSTOMIZE THUMBNAIL PREVIEW CROP
It is possible to remove these functions in the child theme like so:
//Remove a function from the parent theme function remove_parent_filter(){ //Have to do it after theme setup, because child theme functions are loaded first remove_filter( 'the_content', 'xsbf_add_container', 5, 1 ); remove_filter( 'the_content', 'xsbf_end_container', 1999, 1 ); } add_action( 'after_setup_theme', 'remove_parent_filter' );
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] XML ERROR when plugins activeHi Daniel.
My host has set my PHP memory to their max (256M). I tried setting in my config file:
define('WP_MEMORY_LIMIT', '512M');
define('WP_MAX_MEMORY_LIMIT', '512M');
which I am assuming will never be met since the host has allocated 256M. Still the errors.My site is not super big, but does have a page with a number of YouTube embeds which necessitated the max memory for PHP. I’ve seen a lot of sites with a lot more than 9 active plugins, so it surprises me that they seem that memory hungry.
I see, though, that this is not an issue with BackWPup, but rather an issue with my site that BackWPup is discovering. I am at a loss now and and everything seems to be working, so I may live with the error—not my usual modus operandus.
Thanks for your attention