cathyka
Forum Replies Created
-
I’m having the same issue and I would like to solve it with a custom function. (but Im a bit of a noob with wp functions)
BUT I have an idea that I think could work…
The pinterest content is being added when the page/past is being “updated” AND the editor is “visual”. The extra content does not get saved when the editor is “text”
(at least for me)So… If there was a function that switched the editor from “visual” to “text” right before the update—then theoretically no code would be added.
Thoughts?
(current versions of genisis and wordpress)
Shortcode is working in search results with excerpts. the_excerpt( $content )Functions has
add_filter( ‘widget_text’, ‘shortcode_unautop’ );
add_filter( ‘widget_text’, ‘do_shortcode’ );
add_filter( ‘the_excerpt’, ‘shortcode_unautop’);
add_filter( ‘the_excerpt’, ‘do_shortcode’);Tried so many variations in the repeater with no joy….
if (has_excerpt() ) {
$shortcode = the_excerpt( $content );
echo do_shortcode($shortcode);
} else genesis_do_post_title();Still love ALM… its making my site beautiful… just wish I could get this one last thing to work.
ThanksIt was a theme conflict. Figured it out.
Forum: Plugins
In reply to: [DP Widgets Plus] Widgets Disappear in Admin After Activation DP Widgets PlusWhen activated,
Fatal error: Call to undefined method stray_widgets::get_settings() in <b>/wp-content/plugins/dp-widgets-plus/dp-widget-plus.php</b> on line <b>105</b>
Forum: Plugins
In reply to: [DP Widgets Plus] Widgets Disappear in Admin After Activation DP Widgets Plusif I comment out
add_filter(‘dynamic_sidebar_params’, array(&$this, ‘dynamic_sidebar_params’));The widgets with the DP Panel appears.
But the input does not appear on the final template.