Bacek
Forum Replies Created
-
Forum: Plugins
In reply to: [Event Tickets and Registration] Noone can book when one category is fullIt happened on an event that is already passed, I tried to do a test event with one category sold out, but the problem is gone now.
I am using Event tickets, so no pro version. If I’ll have the same problem again I will post it here.
Best regards,
An?eForum: Plugins
In reply to: [Event Tickets and Registration] Noone can book when one category is fullHey, I have the same problem. Is there any solution?
Forum: Plugins
In reply to: [Event Tickets and Registration] Events ticket RSV button problemIssue solved, I updated everything again and played with calendar settings a bit, not sure what I did, but the button is back to normal.
Nevermind, I just unchecked Activate languages and translations for media in polylang and everything works. Sorry about that.
Ok it seems that the problem is Polylang plugin. No idea why, I use it on one other site with elementor without problems.
Thank you, you’re the best!
Regards,
An?eThanks, that worked. I was thinking of doing something similar but wasn’t sure if that won’t destroy my page.
Regards,
An?eI’m sorry, I forgot. I’m using The events calendar https://www.ads-software.com/plugins/the-events-calendar/
Forum: Plugins
In reply to: [The Events Calendar] Event cost disappearedI tried to do this, but still I get no cost field. All I get is an error message
To begin using Event Tickets Plus Extension: Show Cost Fields, please install and activate the latest version of Event Tickets and Event Tickets Plus.
My Event tickets plugin is updated and I’m not using Event tickets plus. Is there any option at least to hide the cost from the event, now it automatically states that all events are free
Forum: Fixing WordPress
In reply to: WordPress is changing my codeOk, after only two syntax errors I managed to write something that actually works.
<?php function roll_me_over_shortcode( $atts ) { $atts = shortcode_atts( array( 'normal' => 'url/to/normal-not-set-photo.jpg', 'hover' => 'url/to/hover-not-set-photo.jpg', 'link' => 'url' ), $atts, 'roll-me-over' ); ob_Start(); ?> <a href="'<?php echo esc_attr( $atts['link'] ); ?>'" target="_top" onmouseover="document.sub_but.src='<?php echo esc_attr( $atts['hover'] ); ?>'" onmouseout="document.sub_but.src='<?php echo esc_attr( $atts['normal'] ); ?>'"> <img src='<?php echo esc_attr( $atts['normal'] ); ?>' style="width:250px; height:250px; border:0px solid #cc3300;" alt="Move your mouse over me" name="sub_but" /> </a> <?php return ob_get_clean(); } add_shortcode( 'roll-me-over', 'roll_me_over_shortcode' );
Thank you for your help.
Forum: Fixing WordPress
In reply to: WordPress is changing my codeThank you, this almost works perfectly, you forgot to put ‘ behind
'<?php echo esc_attr( $atts['hover'] ); ?>"
But, sorry if this is a stupid question, I’m really new to actually writting code, how can I set a url link on the photo?
[roll-me-over normal=”url/to/photo1″ hover=”url/to/photo2″] only has atributes for two photos, not for the link.