I came across this plugin and installed it, then re-ran the tests. I now get 5 failing?
Any ideas?
]]>Impact: Only in front end, the tooltip in the published post is not shown
here’s the browsers’ console message:
JQMIGRATE: Migrate is installed, version 3.0.0
(.../wp-content/plugins/jquery-updater/js/ jquery-migrate-3.0.0.min.js:2:454)
TypeError: a.browser is undefined
(.../wp-content/plugins/footnotes/js/jquery.tools.min.js:242:10)
TypeError: jQuery(...).tooltip is not a function
(on the post where [ref] located)
but when i disable the jQuery Updater plugins, it’s working correctly
]]>I am looking if this calendar can be tweaked to display the days with posts from a custom filed date instead of the postdate.
Would be a great solution for a simple events calendar.
Thanks,
Mariyan
Can someone help me?
After this line:
Amount: {price}
I need something like:
tax within this amount 19%: {price/119*100}
So I used custom code but when I use it there is a still no output?
// function für neuen tag hinzufügen
function my_custom_prefix_add_sample_referral_tag( $payment_id ) {
give_add_email_tag( ‘referral’, ‘This tag can be used to output the custom referral field’, ‘my_custom_prefix_get_donation_referral_data’ );
}
// neuen tag hinzufügen
add_action( ‘give_add_email_tags’, ‘my_custom_prefix_add_sample_referral_tag’ );
// die function welche dann entsprchend ersetzt
function my_custom_prefix_get_donation_referral_data( $payment_id ) {
$payment_meta = give_get_payment_meta( $payment_id );
$output = $payment_meta[‘price’] * 100 / 119; // like this
return $output;
}
This problem popped up after upgrading to Edit Flow 0.6.4. Any ideas on what changed?
]]>