Leo Gono
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] da_DK translation errorHey Brook,
Thanks for the reply. I just updated the .po and .mo files but the error is still there.
Forum: Plugins
In reply to: [Facebook Publish] Don't Post on My Facebook PageI used a beta version provided by the author and it’s working. I can post both on my timeline and facebook page. get the beta version here: https://www.ads-software.com/support/topic/facebook-publish-does-not-publish-at-all?replies=18#post-6902337
Any theme can be a parent theme. If you just need to update the styles, all you actually need is to create a child theme with custom styled css. https://codex.www.ads-software.com/Child_Themes
Just include the template line in your child theme style.css like “Template: twentythirteen” where “twentythirteen” is the folder where your parent theme is located.
Roots at the moment has evolved into a starter theme but can still be used as a parent theme. I like it as a starter theme as it includes gruntfile.js so development – compiling css, js – becames a breeze.
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Maximum Check on CheckboxesGot this working using jquery. I use this as a reference: https://forum.jquery.com/topic/maximum-checked-checkboxes-in-specifck-div-s
$("#bla :checkbox").click(function() { if($("#bla :checkbox:checked").length >= 4) { $("#bla :checkbox:not(:checked)").attr("disabled", "disabled"); } else { $("#bla :checkbox").attr("disabled", ""); } }); ?
thanks a lot! I will try it later tonight.. KUDOS for a great plugin!
I’ve checked on the source, in the website that produces error. this is the form wrapper:
<form enctype="multipart/form-data" action="/registration/?pid=PDBPRIVATEIDHERE" method="post" class="pdb-disabled">
while the one which is working:
<form enctype="multipart/form-data" action="/registration/?pid=PDBPRIVATEIDHERE" method="post">
where should I go to change this?
Forum: Plugins
In reply to: [WP-Testimonials] [Plugin: WP-Testimonials] Open link in new windowYou have to manually edit wp-testimonials.php in plugin folder. search for the line which output the link, it’s around line 743 in my end. the line looks like this:
$retvalo .= '<a href="'.$tstpage2->homepage.'" class="cite-link">'.stripslashes($tstpage2->company).'</a>';
add code to open in new window.
$retvalo .= '<a href="'.$tstpage2->homepage.'" class="cite-link" target="_blank">'.stripslashes($tstpage2->company).'</a>';
Hope this helps!