andruxnet
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Strip all markdown from shortcodeThank you, Nick,
Unfortunately that HTML makes my customizations don’t work, since the CSS that was already in place in my theme was not working because of the extra CSS in the plugin’s elements, plus responsiveness was being broken as well.
I managed to get around that by using jQuery and moving my own HTML outside of the plugin HTML and then removing the unused HTML, something like this:
$('.gce-feed').appendTo('.fusion-flip-boxes').removeClass('gce-feed');
$('[class^=gce-]').remove();
Even after I made it work the way I wanted using that jQuery code above, my client opted for a simpler approach and I was able to just style around the plugin’s own elements.
In any case, it would be great to have the ability to specify the “display” attribute to “json” or something like that, it would give us way more power over what we may need to achieve on very specific cases, where we don’t care about the HTML in the feed content at all but just want to manipulate the events information from our own templates using variables instead of the shortcodes… it is still a great plugin, very easy to use and it fits most of the cases out there, so, nevermind if that’s a feature you don’t plan to implement at all ??
Keep it up!
jQuery is not being loaded when login-footer.php is loaded, easiest – but not best – is to add the following to your login-footer.php file:
<script type=”text/javascript” src=”https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js”></script>
Or whatever url you have your jQuery source file on.
Cheers
Forum: Plugins
In reply to: [Dynamic Content Gallery] Widget is not showing upHi, reempie,
Did you get this to work? How did you do it? I’m having a similar problem.
Forum: Plugins
In reply to: [Image Widget] Image Widget quit workingGreat! Thank you Peter
Forum: Plugins
In reply to: [Image Widget] Image Widget quit workingThe problem is a
console.log( attachments );
statement inside resources/js/image-widget.js, just remove that line and it should work.Forum: Plugins
In reply to: [Image Widget] Won't upload image in wordpress 3.5 (Fresh Install)Hey guys,
I tried this plugin with IE and it doesn’t work, as some say, after clicking the button to insert the image it just returns blank.
I found the problem, it’s a
console.log( attachments );
statement inside resources/js/image-widget.js, just remove that line and it should work.