lorenz90
Forum Replies Created
-
Forum: Plugins
In reply to: [Unique Headers] get_custom_header() doesn’t return the header anymore?as a workaround, i am now using $image = get_header_image(); which does the trick, however the old approach was preferable, because I could get the header image in the desired resolution
thank you for the response.
can I also set an array? e.g.
$imageIdsForVariation = [ 21, 22, 23 ];
update_post_meta($variation_id, ‘woo_variation_gallery_images’, $imageIdsForVariation);Thank you.
Forum: Plugins
In reply to: [Events Made Easy] How can I user user-defined fields in Events?Thank you!
And now same question for location fields?
Forum: Plugins
In reply to: [Events Made Easy] REST API?Thank you, I believe the RSS feed might do the trick.
any update on this?
I also seem to be affected by this issue. the error message reads
Warning: Invalid argument supplied for foreach() in /home/.sites/47/site8847169/web/weinschoeller/wp-content/plugins/feed-them-social/includes/feed-them-functions.php on line 333thank you.
- This reply was modified 4 years, 6 months ago by lorenz90.
Hi, I resolved the issue.
I had an issue where I overwrote the title set by yoast in my functions.php
Thank you,
LorenzTo be more specific, the
<title>Summer Academy Newsletter Subscription</title>is wrong.
<meta property="og:title" content="Allegro Vivo Kammermusik Festival" />is correctly set by yoast
Forum: Plugins
In reply to: [WP-Spreadplugin] Designer: Can’t add Shirt to CartHi Thimo – works like a charm now.
Thank you so much.
Can I buy you a beer somehow? 🙂 can’t find a paypal link.
edit: found it.
- This reply was modified 5 years, 5 months ago by lorenz90.
Forum: Plugins
In reply to: [WP-Spreadplugin] Designer: Can’t add Shirt to Carthi,
unfortunately, I still get the error.
not sure why this is marked as resolved 🙂
were you not able to reproduce it?
thanks,
lorenzalternative: is there the possibility to trigger the holler box from PHP or via shortcode?
- This reply was modified 5 years, 5 months ago by lorenz90.
Forum: Plugins
In reply to: [Events Made Easy] Green Map of DeathHi,
I just tried from a different PC and indeed, everything seems to work fine.
Thank you!
Cheers,
LorenzForum: Plugins
In reply to: [Simple Lightbox] Simple Lightbox Stopped workingtemporary workaround without SLB that works for me:
1) Install EasyFancybox: https://ww.wp.xz.cn/plugins/easy-fancybox/
2) Put this into your functions.php so galleries always link to the media file, which automatically triggers EasyFancybox// Fix Lightbox add_filter( 'shortcode_atts_gallery', function( $out ){ $out['link'] = 'file'; return $out; } );(Note: If you also need galleries that don’t link to the media file, this will not work)
@vandolina it’s probably best if you open your own thread!
Forum: Plugins
In reply to: [Easy Table of Contents] Long Headings cut off in Sidebar@shazahm1hotmailcom
any info on this? willing to solve this myself if you guide me in the right direction.Forum: Plugins
In reply to: [Album and Image Gallery Plus Lightbox] How to disable the lightbox?@flobogo I had the same Issue.
You can solve it the other way round: Disable the SLB plugin on the gallery page using the exclude shortcode SLB provides.
[slb_exclude] ... gallery shortcode ... [/slb_exclude]You then will get only the Lightbox of this plugin for the gallery, but keep SLB for the rest of the page.
Cheers,
LorenzForum: Fixing WordPress
In reply to: Cannot change website language from de_DE to de_DE_formal