ndrodrigues
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] API KEY HTTP REFERRER BLOCKEDHi John, Thank you for the reply. When I got that error, my calendar was Public.
Thank you, Tobias. For the visitors the Tables work wonderfully good. I was wondering if Searching and Sorting is available while editing the table. I found out that if I ‘right click’ a cell then a menuappears and now I am able to sort that column. Is there a search function while editing the table? Thank you so very much for your help. Is there a big advantage for us (non-profit) to go Pro version?
Hi, I did the same and it did not work for me. Help please…
http://www.ndrphotos.com/my-account/
I have this code in my child themes functions.php
<?php
/**
* Custom Functions
*/// Remove Sidebar in Search Results Page
add_filter(‘kadence_display_sidebar’, ‘search_sidebar’);function search_sidebar($sidebar) {
if (is_search()) {
return false;
}
return $sidebar;
}// Let’s try some anti-spam on user registration
add_filter( ‘woocommerce_process_registration_errors’, ‘op_woocommerce_sicaptcha_registration_filter’ );
function op_woocommerce_sicaptcha_registration_filter($errors) {
if (class_exists(‘siCaptcha’)) {
$si_image_captcha = new siCaptcha();
$errors = $si_image_captcha->si_captcha_register_post($errors);
}
return($errors);
}