giosafat
Forum Replies Created
-
Forum: Plugins
In reply to: [qTranslate X] Upgrading qtranslateHi, you can download the new qtranslate-xt from here:
https://github.com/qTranslate/qtranslate-xt/releases
– Download the last release from GitHub in zip or tar.gz format (usually zip for Windows users).
– Uncompress the archive in your plugins folder and rename it to qtranslate-xt.
– Deactivate plugin qTranslate-X, qTranslate, mqTranslate, qTranslate Plus, zTranslate or any other multilingual plugin, if you are running any.
– Activate qTranslate-XT through the ‘Plugins’ admin page in WordPress (/wp-admin/plugins.php).Let me know
Forum: Plugins
In reply to: [Wordpress Webinar Plugin - WebinarPress] Problem with the live streamingThanks Lucy, i will test it!
Hi Dave, don’t worry about the complaints, i think that wordapp is an excellent plugin and i hope you’ll continue to develop it to make it even better.
Thanks and congratulations.
GiorgioThank you, it’s anyhow an excellent plugin!
Thank you alexdex, it works, but with some app themes the languages aren’t shown properly (over the menu etc), it worked fine inserting the language selector in “mobile header” widget and using the “Football club” theme.
Forum: Plugins
In reply to: [Fluid Responsive Slideshow] Change/style loading symbolHi erkdahl, you can make your own custom loader from here:
https://www.ajaxload.info/
or download it from here:
https://preloaders.net/
call it loading.gif and replace the original in css/frs.Same problem.
Forum: Plugins
In reply to: [MapPress Maps for WordPress] Maps Not Displaying – version 2.43.3Sorry, i can’t leave the website without the map, but i assure you that 2.43.3 shows a blank frame, i tried twice to downgrade to 2.42.1 and then upgrade to 2.43.3, but it doesn’t work, i had to go back to 2.42.1
Forum: Plugins
In reply to: [MapPress Maps for WordPress] Maps Not Displaying – version 2.43.3me too, the last version doesn’t work
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] Error on SiteMapThanks, that was the problem.
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] Error on SiteMapHi drew82, i have the same issue, how did you soved?
Forum: Plugins
In reply to: [Contact Form 7 minlength extension] Not mandatory fieldsThanks a lot, it would be very useful in my project, do you have any estimate of when this feature will be implemented?
Forum: Plugins
In reply to: [Contact Form 7 minlength extension] Not mandatory fieldsNo, this is another isuue. The problem is:
If a field is NOT mandatory, it can be empty; the minimun lenght should only be considered if the field is filled, but the plugin show me the validation error even when the field is empty.
Obviously 0 characters are less than the set minimun lenght, but if the field is NOT mandatory, this should NOT be considered an error.Forum: Plugins
In reply to: [Contact Form 7] How to Expand & Collapse Text in the form1-install, activate and configure “Easy Spoiler” plugin
2-in the functions.php of Contact Form 7 add:
add_filter( ‘wpcf7_form_elements’, ‘mycustom_wpcf7_form_elements’ );
function mycustom_wpcf7_form_elements( $form ) {
$form = do_shortcode( $form );
return $form;}
3-The shortcode format in the cf7 form is (example):
[spoiler title=”the title here”]
State 1:
[text* state1 2/2 “IT” “EN” “FR”]
State 2:
[text* state2 2/2 “IT” “EN” “FR”]
[/spoiler]