mattblox
Forum Replies Created
-
Forum: Plugins
In reply to: [Events Made Easy] EME causes redirect?Hi and thx for the quick answer!
Yes it makes sense.Is there another “recommended” option to print the starting date of a specific Event somewhere on the page?
Forum: Plugins
In reply to: [Events Made Easy] Show html-form after Booking (template)This should fix the PDF upon booking if approval is needed too:
https://plugins.trac.www.ads-software.com/changeset/2463820/works like a charm! Thanks!
Improving the pdf part is surely a cool thing!
Pagebreaks are filtered by wordpress (installing tinymce advanced or something alike will allow you to change that). Unless you mean something else here?
I meant: in case your “ticket” is 3-5 pages long, it would be nice to have some control when one A4-page ends and the next one starts.
Also, i’m not sure what syntax the pdf-margin expects, so i worked around:<div id="Seite1" style=" margin-top: 5mm; margin-bottom: 0mm; margin-left: 5mm; margin-right: 5mm; width:100%; height: 280mm; font-size: 10pt; ">...first page contents</div> <div id="Seite2" style=" margin-top: 5mm; margin-bottom: 0mm; margin-left: 5mm; margin-right: 5mm; width:100%; height: 280mm; font-size: 10pt; ">...2nd page contents</div>
This way, it seems to place the whole
<div>
onto the next page.- This reply was modified 4 years, 1 month ago by mattblox.
Forum: Plugins
In reply to: [Events Made Easy] Show html-form after Booking (template)Hi and thx again for your help!
creating a
<a href> GET
Link is not too convinient in terms of transferring multiline-adress-data, so i’d like to avoid it.
If i used GET, i’d had to use some other code to encode the Data…Since i’m no developer, i don’t really know about hooks and stuff (can barely do some copypasta)
I guess it would be possible to echo the forbidden html tags using a simple hook that echoes “<form action=…”?Ragarding the PDF Template, i discovered it does not activate on pending bookings despite activated. Maybe a bug or rather me doing the wrong settings?
Also, inserting pagebreaks is not possible yet?
Greetings Matt
Forum: Plugins
In reply to: [Events Made Easy] Stop redirect after booking? (Offline Payment)hi and thx for the quick response!
The redirection comes from the “Offline Payment” provider. Got it.
since i want the pdf-link available AFTER EME confirmed the Booking, i intended to placed it with the Bookingconfirmation.
sorry, i reposted it here: https://www.ads-software.com/support/topic/stop-redirect-after-booking-offline-payment-2/
hi and thx for the quick response!
The redirection comes from the “Offline Payment” prodiver. Got it.
since i want the pdf-link available AFTER EME confirmed the Booking, i intended to placed it with the Bookingconfirmation.
Forum: Plugins
In reply to: [WP2Static] Homepage emptyhi there,
i added to the blacklist:
elementor_library (elementor loops)
filebase_foldernow it works with some minor issues
Forum: Plugins
In reply to: [WP2Static] Homepage emptyyes i made some screenshots:
https://documentcloud.adobe.com/link/track?uri=urn%3Aaaid%3Ascds%3AUS%3Ab2b7975d-606b-49d1-95a3-2357bc22c446Forum: Plugins
In reply to: [WP2Static] Homepage emptyhi there, good idea.
but the “/wp-content/themes/sydney-pro-ii-blox/style.css” is actually almost emptythe actual content is missing <h1> <h2> etc.
greetings
Forum: Plugins
In reply to: [Email posts to subscribers] mail subject ###POSTTITLE###did i miss something?
email-posts-to-subscribers/sendmail/sendmail-subscriber.php
https://pastebin.com/7uWSayMZemail-posts-to-subscribers/query/newsletter.php
https://pastebin.com/qZZ72hTYForum: Plugins
In reply to: [Email posts to subscribers] mail subject ###POSTTITLE###Hi there, does it work for ###POSTTITLE###?
Forum: Plugins
In reply to: [Email posts to subscribers] New users not added to subscriber listHi there, i think the subscriber list is totally independant from the wp user list.
Subscribers have no password and cannot write postings. They can just sign up or remove themselve from the list (or be removed)Advantage: less GDPR and security hassle.
Disadvantage: Users have to sign up twice to write comments :-/would be cool if this could be combined somehow…
- This reply was modified 5 years, 10 months ago by mattblox.
Forum: Reviews
In reply to: [Email posts to subscribers] Working!Yes it is really a good and functional addon.
I would like to extend here and there but my php skills are not too well.Btw. Is it available on github?
Forum: Plugins
In reply to: [Email posts to subscribers] Mail specific PostActually die plugin name implies that this could be done
Forum: Plugins
In reply to: [Email posts to subscribers] mail subject ###POSTTITLE###My quick&dirty solution:
query/newsletter.php, line 89:
after$post_title = $post->post_title;
insert:
if($action=="first_post_title")Return $post_title;
sendmail/sendmail-subscriber.php line 45:
after content, insert another alp_template_compose:$first_post_title = elp_cls_newsletter::elp_template_compose($data[0]['elp_set_templid'], $data[0]['elp_set_postcount'], $data[0]['elp_set_postcategory'], $data[0]['elp_set_postorderby'], $data[0]['elp_set_postorder'], "first_post_title"); $subject = substr_count($subject,"###POSTTITLEONLY###")?$first_post_title:str_replace("###POSTTITLE###", $first_post_title, $subject);
now, in the mail configuration you can add ###POSTTITLE### or ###POSTTITLEONLY### to extend or replace the mail subject.
Forum: Plugins
In reply to: [Email posts to subscribers] Mail specific PostThis would be really great!