Jineu
Forum Replies Created
-
Thank you for taking time to explain. It’s happening due to some script attacks from bad actors/bots. We were having issues with the reCaptha plugin content security headers, and some script monkeys were able to force through registration. They are now blocked – but still trying to access the PDB login link.
- This reply was modified 2 years, 3 months ago by Jineu.
Forum: Plugins
In reply to: [Participants Database] CAPTCHA not workingWe have had issues with the ReCaptcha that were solved by updating the site content security policy headers.
The JS files were not getting loaded, as Google was changing things behind the scenes. So the forms were not working.
This tool ( https://github.com/april/laboratory ) helped us solve that.
Fixed. Many thanks for the quick reply. That was exactly it. PDB is a great tool. It’s dependable and has worked flawlessly for years. Not sure why the table column was not created before. If we figure that out – we will let you know.
Forum: Plugins
In reply to: [BuddyPress Docs] WP Search and BuddyPress Docs Post TypeSelf-solved. Add this into your themes functions.php:
// Include Custom Post Types in Search
/**
* This function modifies the main WordPress query to include an array of
* post types instead of the default ‘post’ post type.
*
* @param object $query The main WordPress query.
*/
function my_include_custom_post_types_in_search_results( $query ) {
if ( $query->is_main_query() && $query->is_search() && ! is_admin() ) {
$query->set( ‘post_type’, array( ‘post’, ‘page’, ‘bp_doc’) );
}
}
add_action( ‘pre_get_posts’, ‘my_include_custom_post_types_in_search_results’ );
//Forum: Plugins
In reply to: [BuddyPress Docs] Correct Way to Style BuddyPress DocsThanks for that. Over the years we have had too many style sheets. Time to consolidate and simplify!
Forum: Plugins
In reply to: [WP FullCalendar] 24-hour clock and Days of the WeekSolved this and sharing to save someone else the time!
Results in European Date formatting where desired (e.g. 22.08.2019).Goes into inline.js on Line 5, right below:
jQuery(document).ready( function($){
var fullcalendar_args = {// — Start Cal Customisation
timeZone: ‘Europe/Berlin’,
slotLabelFormat:”HH:mm”,
minTime:’07:00′,
maxTime:’22:00′,
scrollTime:’08:00′,
height: ‘auto’,
contentHeight:’100%’,
views: {
basic: {
titleFormat: ‘MMMM YYYY’, columnFormat: ‘dddd’},
agenda: {
titleFormat: ‘MMMM YYYY’,
columnFormat: ‘ddd D.M’,
titleRangeSeparator: ‘ – ‘},
agendaWeek: {
titleFormat: ‘MMMM YYYY’,
columnFormat: ‘ddd D.M’,
titleRangeSeparator: ‘ – ‘},
agendaDay: {
titleFormat: ‘dddd, DD MMMM YYYY’,
columnFormat:’ ‘},
},
// — End Cal Customisation- This reply was modified 5 years, 3 months ago by Jineu.
Forum: Plugins
In reply to: [WP FullCalendar] Is this plugin compatible with wpml?WPML CMS makes this plugin fail on our installations.
Just noticed that it is a conflict specifically with WP-Fullcalendar and WPML. Disabled all plugins, and the WPML main plugin (CMS) causes WP-Fullcalendar to not show dates, times, etc. as set in the Settings page.
- This reply was modified 6 years, 8 months ago by Jineu.