Viszt Péter
Forum Replies Created
-
üdv!
A plugin f?oldalán ott egy mintakód ami a témád functions.php fájlába megy, az adja hozzá az akutális euró árfolyamot a számlára és a nyelvet is átállítja angolra.
Forum: Plugins
In reply to: [Számlázz.hu integráció WooCommerce-hez] WC 2.5?Bocs, nem láttam ezt a kérdést. Megoldódott mindkét probléma?
Forum: Plugins
In reply to: [Számlázz.hu integráció WooCommerce-hez] Kiállított számlák szerkeszthet?ségeüdv! Ilyen funkciót tudtommal a szamlazz.hu nem támogat. Az automatikus számlakészítéskor a számla akkor készül el, ha a rendelés állapotát befejezettre állítod(listában kipipálod sor végén pl). Eddigi tapasztalatom alapján ez akkor szokott megt?rténni, amikor feladod a csomagot, ilyenkor már általában nincs variálás a vásárló részér?l.
Forum: Plugins
In reply to: [Price Based on Country for WooCommerce] Prices inclusive of taxSorry, my bad. I was just confused… it works fine, thanks!
Forum: Plugins
In reply to: [Nemus Slider] How can I add a "Read more …" link in the slider?Hi!
Theres no filter to change the post title at the moment, but you can wrap your excerpt in a link and add a read more button like this:
add_filter('nemus-slider-autoslide-caption','wrap_exceprt_in_slider_with_link',10,4); function wrap_exceprt_in_slider_with_link($excerpt, $slider_id, $slide_id, $post_id) { $excerpt = '<a href="'.get_permalink($post_id).'">'.$excerpt.'</a>'; return $excerpt; } add_action('nemus-slider-after-autoslide-caption','add_read_more_link_in_slider_after_excerpt',10,3); function add_read_more_link_in_slider_after_excerpt($slider_id, $slide_id, $post_id) { echo '<a href="'.get_permalink($post_id).'">Read More...</a>'; }
These codes goes in your functions.php file. If you only need to do this for 1 slider os specific sliders, wrap the content inside the function in a conditional logic based on the slider id($slider_id variable)
Hope this helps.
Forum: Plugins
In reply to: [WordPress PDF Templates] Preview works, but pdf is blankNice! Thanks, that was the fix i needed:)
Awesome plugin btw, well-written code:)
Forum: Plugins
In reply to: [WordPress PDF Templates] Preview works, but pdf is blankI found the issue!:)
I’m using Theme My Login to create a private site and when TML / Settings / Security / Private Site is checked(you’ll be redirected to a login page always if not logged in), it will generate a blank pdf:) Weird, because with another theme, i can see the login form on the pdf file, but my theme is completely blank. Anyway, i turned off the private site option and the pdf is generated properly:) I’ll try to come up with a solution and i’ll post it here so people can find it if needed.
Forum: Plugins
In reply to: [WordPress PDF Templates] Preview works, but pdf is blankHm. I just tried it on another site with the same hosting and its working! So i’m not exactly sure whats going on, but looks like a theme or plugin issue after all. I’ll try to get back to you once i figure out whats going on:)
Forum: Plugins
In reply to: [WordPress PDF Templates] Preview works, but pdf is blankYes, tried with disable_pdf_cache too, no luck. Also tried with a different theme and disabled all other plugins to avoid any conflict, still no luck:(
Forum: Plugins
In reply to: [WordPress PDF Templates] Preview works, but pdf is blankSure, i did, tried with different posts too. I still think its a hosting issue, because the same exact site works on my localhost. Any tips what to look for, dompdf needs any special php functions that might be turned off in some cases?
Forum: Plugins
In reply to: [WordPress PDF Templates] Preview works, but pdf is blankIts turned off, all ready to go but the pdf file is still blank:(
Forum: Plugins
In reply to: [WordPress PDF Templates] Preview works, but pdf is blankHi!
Thanks for that fast reply. I just tried adding error_reporting(E_ERROR | E_PARSE); to my config file, but sadly it still generates an empty pdf page. Just tried it on localhost and its working fine. So i’m guessing its a server/hosting issue. Any idea whats need to be enabled to generate the pdf file correctly?
Thanks!
Forum: Plugins
In reply to: [Nemus Slider] Nemus button empty in toolbar wof WordPress 3.9Sorry, it is fixed now.
Forum: Plugins
In reply to: [Nemus Slider] Not working properly?Hi! The slider appears behind the text/images, because you’re using a 2 column layout for your text, probably using a shortcode, and the floats are not cleared after these two column. I’m not sure which theme you’re using but you probably have a shortcode for clearing the floats, please check the theme’s documentation.
About the slider, the issue is probably that you don’t have a featured image specified for your posts that you want to show in the slider. Please edit your posts and in the bottom right corner select a featured image.
Forum: Plugins
In reply to: [Nemus Slider] Not working properly?Hi! Sorry about the late response. Can you add your slider again so i can check out the issue? Thanks