sandwebdesign
Forum Replies Created
-
Forum: Plugins
In reply to: [Paytium: Mollie payment forms & donations] Error after updateSame…
Forum: Plugins
In reply to: [Author Box WP Lens] open link in new windowThat’s great! Thanks!
Forum: Plugins
In reply to: [SEO Auto Linker] error: undefined arrayI have deactivated the plugin to avoid all those error messages on the site. But I would like to activate it again. So still interested in a possible solution.
Hi Marc, thanks for your quick respons.
But the example page is just one page:
https://wordpress-705528-2470984.cloudwaysapps.com/index.php/praktijkinformatie/Or do I misunderstand something?
Oh and now I notice the links in the toc don’t scroll to the headings. Am I missing something?
Forum: Plugins
In reply to: [GenerateBlocks] Different block designs for desktop and mobileHi David,
Thanks. I’m using GB Pro but when I change the color or color stop in the tablet panel, the color is also changed in the Desktop panel. Is this a bug or am I doing something wrong?
I’m especially interested in setting a different color stop for different devices.Forum: Plugins
In reply to: [GenerateBlocks] Different block designs for desktop and mobile“The only thing that doesn’t have responsive options are colors, as those typically don’t change depending on the device.
Let me know if something else is missing (not color related).”
I am trying to set a different color stop in the background gradient for tablet and mobile.
I’m new to Generate Blocks so maybe I’m missing something but I think it is not possible. It is color related but the stop position is something that can be device related.Oh yes, how stupid of me!
Thanks a lot!
Sandra
Forum: Plugins
In reply to: [Lenix Leads Collector] Some answers don’t show upThis is how the data are stored in the postmeta table:
”
{“idVoornaam”:{“id”:”idVoornaam”,”type”:”text”,”title”:”Voornaam”,”value”:”sandra test6″,”raw_value”:”sandra test6″,”required”:true},”idAchternaam”:{“id”:”idAchternaam”,”type”:”text”,”title”:”Achternaam”,”value”:”test”,”raw_value”:”test”,”required”:true},”idEmail”:{“id”:”idEmail”,”type”:”email”,”title”:”Emailadres”,”value”:”zantensvan@gmail.com”,”raw_value”:”zantensvan@gmail.com”,”required”:true},”idWoonplaats”:{“id”:”idWoonplaats”,”type”:”text”,”title”:”Woonplaats”,”value”:”Test”,”raw_value”:”Test”,”required”:true},”idGeboortedatum”:{“id”:”idGeboortedatum”,”type”:”date”,”title”:”Geboortedatum”,”value”:”1996-02-07″,”raw_value”:”1996-02-07″,”required”:true},””:{“id”:””,”type”:”html”,”title”:””,”value”:””,”raw_value”:””,”required”:false}}
”But they don’t show up in the backend of the site. Only a row wit e.g. “Lead #961” is shown but no data.
Forum: Plugins
In reply to: [Lenix Leads Collector] Some answers don’t show upI have same problem…
Forum: Plugins
In reply to: [Connections Business Directory] How to migrate list from one site to anotherThanks a lot Steven for your fast reply!
I’ll try the table method first.
Regards, Sandra
Forum: Plugins
In reply to: [The Events Calendar] Restrict RSVP to 1Hi Mike,
Yes, that helped! Thanks a lot Mike!
I had already hided the field but the problem was indeed I had disabled the input field.
In case other people want to restrict the RSVP value to 1, I’ll post the code I’ve used here.
So, in this code the value is set to 1, the value input field is hided and the input fields for the attendee are always showing. Because I didn’t need the attendees to have the option to choose between ‘I’ll come’ / ‘I don’t come’, this option is also hided.
”add_action( ‘wp_footer’, ‘tribe_limit_rsvps_to_one’ );
function tribe_limit_rsvps_to_one() {
wp_enqueue_script( ‘jquery’ );
?>
<script>
jQuery(document).ready(function($){
if ( $(‘.tribe-events-tickets’ ).length ) {
var $input = $(‘.tribe-events-tickets’ ).find( ‘input.tribe-ticket-quantity’ );
$input.attr( ‘type’, ‘text’ );
$input.attr( ‘max’, ‘1’ );
$input.val( ‘1’ );
//don’t show quantity field
$(“.tribe-ticket.quantity”).css(“display”, “none”);
//always display input fields input
$(“.tribe-tickets-meta-row”).css(“display”, “block”);
//don’t show selectbox, I’ll come / don’t come
$(“.tribe-tickets-order_status-row”).css(“display”, “none”);
}
});
</script>
<?php
}”
Thanks again,
SandraI’ve made the same Astra Layout with the Carousel widget again and inserted this new one on the pages. Now Elementor is loading again.
Although I have no idea why the former exact same Astra Layout suddenly made Elementor stop loading…I’ve tested some more. When I insert a carousel widget on the page, there is no problem. But when the carousel is inserted with Astra Layouts, Elementor won’t load.
When I insert an Astra Layout with a text widget, Elementor loads.So, with my site, it seems to be a problem with the combination of Astra Layout and the Image carousel of Elementor.
It has worked before though.
I had same problem using Elementor Pro v2.01 and latest version of Astra Pro.
It turned out to be the Elementor Carousel widget causing the problem.
With Astra Layouts I had inserted the carousel on every page.
Although it worked before. So I don’t no yet why Elementor is not loading now when having the carousel widget on the page.I’ve rolled back the Elementor to older version but that didn’t solve the problem.