felbar77
Forum Replies Created
-
Spoke too soon – email sending still does not work correctly – opening new issue with different subject and part of the process.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Order Status ChangeHi, since I am still a bit stuck with similar issue on pdf not updating live – I found out that the reason is probably cause somewhere along the way initial pdf was created (on new order, or processing).
Try seeing if you have similar case to mine – in woocommerce orders list, if you press the pdf icon, as soon as the status is equal to the last one you want (completed), is the pdf ok?
So, in other words maybe its this: if only one attach-to status is active, then only one pdf will get created?
Sometimes a word is enough to solve the issue…
In this case it was “prioritize”
changed email sending to 999.
Works like a charm. Thank you for your assistance!!!Hi thanks for the reply.
I have managed to get it attached to custom order status.
However, I have this issue, here is the flow explained:
1. customer selects product
2. invoice is generated on new order (admin) – so that I get invoice number for further steps /step 4 external service.
3. customer pays – woocommerce status changes to completed
4. additional plugin on completed sends info to external service, returns tax verification numbers…
5. Tax numbers are added to custom fields and displayed on invoice
qt the same time – Order changes status to “fiscalized”
7. On this status, woocommerce sends email as done with invoice attached.Now the issue – attached invoice has no tax numbers visible.
Woocommerce products in the dashboard show tax numbers on pdf…
So, i guess I send email on status change to fiscalized, but with pdf created initially on order, and before numbers get on invoice…Question: can you help me with order of execution (trigger email after all done, or with some delay or something?)
Forum: Themes and Templates
In reply to: [Hueman] Site title not showing up in browser tabYour every page has two titles, shown in source – for example Kritiikit has:
<title>Kritiikit – </title>
<title>Kritiikit – Laajakuva</title>
and home page has:
<title></title> <title>Laajakuva</title>
Obviously it displays the first title…You said in your other thread “Then I however added the Enable title tag- command to my child theme, and that solved the problem. ”
maybe you should try and remove this now?
Forum: Themes and Templates
In reply to: [Hueman] Site title not showing up in browser tabI think you lack Site identity – the name of the site should be written in Appearance//Customize//Site Identity…
Try and see if that is the question…
Harry.Forum: Plugins
In reply to: [YouTube Embed] Conflict with "Add to any" sharing pluginApplied the new code.
Thank you for your efforts. Keep up the good work!
Harry.
Forum: Plugins
In reply to: [YouTube Embed] Conflict with "Add to any" sharing pluginHm, did this
removed ” from line 333
$result .= $ttab . '<meta itemprop="description" content="' . htmlentities( get_the_excerpt() ). '" />' . $newline;
so that it says:
`$result .= $ttab . ‘<meta itemprop=”description” content=” . htmlentities( get_the_excerpt() ). ” />’ . $newline;and it works… Ty for all the work! Will decide now what to do – deactivate meta or change code. ??
Forum: Plugins
In reply to: [YouTube Embed] Conflict with "Add to any" sharing pluginStrange. Icons of share appear on second refresh on any page I try. They do not show on first load. After F5/refresh they appear. some caching problem maybe?
Forum: Plugins
In reply to: [YouTube Embed] Conflict with "Add to any" sharing pluginNope, new install first sharing then youtube – still only floating icons visible. will try shutting down the plugins one by one to see if something else is in the way. Keep you posted.
Forum: Plugins
In reply to: [YouTube Embed] Conflict with "Add to any" sharing pluginIn this example – I activated version 4.0.1 and now only floating share is available (on the right side). above and below articles nothing.
Whole web site is only youtube videos.
Tried turning off cache and security plugins, no use… Will try remove both, clean and reset and install first share then u2b, and get back to you.
Forum: Plugins
In reply to: [Alfie WP Weather] Another language questionHi- any news on Croatian version (sent the files)? tnx
Forum: Plugins
In reply to: [Alfie WP Weather] Images disappearingYes W3 is on.
Moving things around front page gets images back online – any change, add or remove some widget, post order etc… So right now cant say if it will work.
I have disabled it – will look what is going on.
NOTE: I have “Authenticated users will not receive minified pages if this option is enabled.” ticked under minify in W3 TC, and always looking at my homepage while logged in.Forum: Plugins
In reply to: [Alfie WP Weather] Images disappearingSent screen capture and web page link on mail
stumbled upon an answer on my own (half way there now)…
<?php $feats = new WP_Query(); $feats->query('cat=3&posts_per_page=1'); while ($feats->have_posts()) : $feats->the_post(); ?> <a href=<?php the_permalink() ?><?php the_title(); ?></a> <?php tern_wp_youtube_video() ?> <?php endwhile; ?>
this gives me direct playable video on main page, moving on to slider issues…