Česlav Przywara
Forum Replies Created
-
Forum: Plugins
In reply to: [MapPress Maps for WordPress] Controls not display properlyI had this issue too, but it seems to be gone in recent version (2.50.10).
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] run cron job with a php commandHi @fscbmwcca,
it is possible, but you have to know the path to the WordPress installation on your server. Then you just run
wp-cron.phpvia PHP like:php /path/to/wordpress/wp-cron.php
Cheers,
ČeslavHi Martin,
thanks for your reply! It’s great to know that the social wall can be embed as JS widget as well, this is completely sufficient for the project I work on 🙂 That said, I should probably have created a test account at walls.io before asking 😉
Cheers from Zell am See,
ČeslavForum: Plugins
In reply to: [Flamingo] Externally Export DataHi,
This will get you some basic data (but some metadata may be missing):
SELECT post_date, post_title, post_content FROM wp_posts WHERE post_type = 'flamingo_inbound';
Note that you may have to change table name, if you use non-default prefix.
- This reply was modified 7 years, 8 months ago by Česlav Przywara. Reason: Readability
Forum: Plugins
In reply to: [Flamingo] change csv delimiterHi,
You can do it via
flamingo_csv_value_separatorfilter. In your theme’sfunctions.php:add_filter('flamingo_csv_value_separator', function () { return ';'; }, 10, 0);Forum: Plugins
In reply to: [Flamingo] Email auto delete option available maybe?Hi,
I second the request, would be a useful feature for our projects.
All the best,
ČeslavHi Jeff,
Thanks a lot! I’m happy to confirm that the problem is gone in version 20180816 🙂
Forum: Plugins
In reply to: [Easy Google Maps] Remove plugin tables on uninstallHi,
thanks for your feedback. I did remove the tables myself – thanks for consistently sticking to
gmp_prefix, made it easy to identify the tables 😉Cheers,
ČeslavForum: Plugins
In reply to: [Enhanced Media Library] Small tip to improve plugin code and compatibilityHi @webbistro,
I’m looking forward to it!
Btw. I’ve found one more instance of the same problem on line
650in the same file (inwpuxss_eml_on_activationfunction).All the best,
ČeslavForum: Plugins
In reply to: [Contact Form 7] id css error with value/tagYour CSS seems wrong, try to replace
.idcontact-form-height-fieldwith#contact-form-height-field…Forum: Plugins
In reply to: [URL Params] Use with Contact Form 7Hi,
not sure, if this is what you want to achieve, but Contact Form 7 has the capability to prefill field with a value from GET parameter, see: https://contactform7.com/getting-default-values-from-the-context/
Cheers,
ČeslavForum: Plugins
In reply to: [Contact Form 7] Tracking Form Submissions with Google AnalyticsMy question: in Google Analytics, I have need to create an event ? or the event is create automatically ?
I believe the events in GA are created automatically based on what your tracking script sends. But you’re getting ouf of the scope of this support forum 😉
Forum: Plugins
In reply to: [Contact Form 7] Checkbox and Text PositioningHi,
the following CSS rule makes the checkbox input field 400px wide:
body .cf7-style.cf7-style-1095 input { width: 400px; }You might want to make it more specific:
body .cf7-style.cf7-style-1095 input[type="email"], body .cf7-style.cf7-style-1095 input[type="text"] { width: 400px; }Forum: Plugins
In reply to: [Contact Form 7] Tracking on Send with Google AnalyticsHi @jerzytj,
you may find my answer in another thread useful: https://wordpress.org/support/topic/tracking-form-submissions-with-google-analytics-3/
Forum: Plugins
In reply to: [Contact Form 7] Form doesn’t appear in page only shortcodeHi,
if you include shortcode directly in template PHP file, you have to pass it through do_shortcode() function – like this:
<div class="formulario"> <?php echo do_shortcode('[contact-form-7 id="367" title="Contact form 1"]'); ?> </div>