Ghostyvb13
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Cannot traverse through month view or change viewi removed all the transients but still the same effect..
Has this ever happend to other users?
Forum: Plugins
In reply to: [The Events Calendar] Cannot traverse through month view or change viewI looked under de settings general tab, but i dont see clear transients anywhere…
Forum: Plugins
In reply to: [The Events Calendar] Cannot traverse through month view or change viewWe dont have caching enabled on the site nor via a plugin like wp rocket.
Also the caching on plesk side is not enabled.
Forum: Plugins
In reply to: [Booking Activities] Booking without accountWell i fixed it by removing wp rocket and adding the user data login to the form with the only option enabled No account which i overlooked 🙂 . This solved the issue for us.
Apparently wp rocket does not work nicely with Booking activities, i also tried to ommit the javascript files within the wp-rocket settings but it did not work for me. It works and thats what counts..
Thank you for your efforts.
Forum: Plugins
In reply to: [Booking Activities] Booking without accountWas this fixed? i am also using wp rocket with this plugin with the pro form builder. It keeps saying you need to be logged in, even after i have disabled wp rocket.
Is there a fix on this issue?
Well it worked for me. Using a custom theme layout for the search since it’s products only but the post_type some how messed things up after the update. By removing it with code below in functions PHP its works again as supposed to :)..
Thanks!
add_filter( 'aws_searchbox_markup', 'my_aws_searchbox_markup' ); function my_aws_searchbox_markup( $markup ) { $hidden = '<input type="hidden" name="post_type" value="product">'; $markup = str_replace( $hidden, '', $markup ); return $markup; }Forum: Plugins
In reply to: [Simple Job Board] Application form not showingSo i cannot add the application form by another way?
Forum: Plugins
In reply to: [WP Accessibility Helper (WAH)] Divi Visual builder breaksOk thank you 🙂
Forum: Plugins
In reply to: [Product Table for WooCommerce - Add Multiple Products to Cart] Feature ideaThis can be removed, but i cannot, i have send the idea via the right channel 🙂
Forum: Plugins
In reply to: [Flow-Flow Social Feed Stream] Facebook unsupported get requestI have the same issue for facebook, worked fine a few days ago… and this is the not paid version.
Plugin received next error message from network API for this feed:
Unsupported get request.
Hope you have the fix soon 🙂
Hi yes i do have another question. Default sorting is on oldest, can the default sort for the users grid be changed to for instance Lastname A-Z?
How much would it cost for you to develop such an option?
We have a small budget available.I hope there is some kind of solution to add a sort on a certain metadata value.
That worked very sweet.. I created some extra custom code also because i needed to count the totals of the custom1 field and the total members + the custom field. And it worked out nice
Here’s the code for someone that would need some help:
<?php
/*
=== Load parent Styles ===
*/
function dc_enqueue_styles() {
wp_enqueue_style( ‘divi-parent’, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘child-style’, get_stylesheet_directory_uri() . ‘/style.css’, array( ‘divi-parent’ ) );
}
add_action( ‘wp_enqueue_scripts’, ‘dc_enqueue_styles’ );function ru_custom_attendee_list( $registrants_data ) {
$totals = 0;
$html = ‘<div class=”tribe-events-event-meta rtec-event-meta rtec-attendee-list-meta”>’;
$html .= ‘<h3 class=”rtec-section-title”>Aangemeld</h3>’;
$html .= ‘<div style=”padding: 0 4%”>’;$html .= ‘<table width=””>’;
$html .= ‘<thead>’;
$html .= ‘<tr>’;
$html .= ‘<th>Naam</th>’;
$html .= ‘<th>Achternaam</th>’;
$html .= ‘<th>Introducees</th>’;
$html .= ‘</tr>’;
$html .= ‘</thead>’;
$html .= ‘<tbody>’;// loops through the $registrants_data and displays the values in their array order
foreach ( $registrants_data as $registration ) {
$html .= ‘<tr>’;$totals += $registration[“custom1”];
$totals2 += $registration[“custom1″];foreach ( $registration as $key => $value ) {
$html .= ‘<td valign=”top”>’ . esc_html( $value ) . ‘</td>’;
}$totals2 += 1;
$html .= ‘</tr>’;
}
$html .= ‘<tr><td colspan=2>Totaal introducees</td><td>’. $totals .'</td></tr>’;
$html .= ‘<tr><td colspan=2>Totaal deelnemers</td><td>’. $totals2 .'</td></tr>’;
$html .= ‘</tbody>’;
$html .= ‘</table>’;$html .= ‘</div>’;
$html .= ‘</div>’;echo $html;
}
// removes the default attendee list, otherwise you will have two lists
remove_action( ‘rtec_the_attendee_list’, ‘rtec_the_default_attendee_list’ );
add_action( ‘rtec_the_attendee_list’, ‘ru_custom_attendee_list’ );function ru_attendee_list_settings_filter( $attendee_list_fields ) {
// adds custom field data to the $registrants_data for the custom attendee list
$attendee_list_fields = array( ‘first_name’, ‘last_name’, ‘custom1’ );return $attendee_list_fields;
}
add_filter( ‘rtec_attendee_list_fields’, ‘ru_attendee_list_settings_filter’, 10, 1 );Well i found the issue 🙂
It was in the plugin Hide price until login.
https://ww.wp.xz.cn/plugins/hide-price-until-login/I will send the developer(s) a message..
Hi Andreas,
I found out today that banktransfers do not cause any issue (maybe because it does no go out of the website), its only happening on a ideal transaction for this website. I do not know if Creditcard or paypal might cause the issue also, because we do not have that available.. i will put the website offline at the end of today so i can try to disable some plugins.. I allready did to no succes… I am using this configuration on other websites and it is not causing any issue which makes it even stranger for us.
Is there a way we can force the total price not to be empty or webhooks that i need to ensure are there? The issue started around 11 of Oktober maybe a plugin update. Maybe something else… I hope i am not the first having this issue 🙂 Any ideas are welcome…
Thanks in advance Andreas 🙂