Posts by Matheus Barem • 131 points
6 posts
-
0
votes0
answers62
viewsQ: Wordpress plugin does not display html
I’m trying to make a simple plugin that show via shortcode a small google maps map with the current location of the user, but when I put the shortcode the map does not appear, follows the code:…
-
1
votes1
answer30
viewsQ: Limit rendering of images
I’m using the plugin https://wordpress.org/plugins/taxonomy-images/ to relate images to categories, and I’m printing icons next to the post title so(code below) but it brings all related categories…
-
0
votes1
answer119
viewsQ: Display image next to category related post title
I need to display an image related to the post next to the title of post, then I installed the plugin Taxonomy Images. I’m trying to make the display through the command used by the documentation:…
-
0
votes0
answers51
viewsQ: List.Js does not work
I am creating a web app using EMBER and want to use in a certain place the Listjs to list discussions but not working. follows the code: function(List){ var options = { listClass: 'list',…
javascriptasked Matheus Barem 131 -
1
votes1
answer71
viewsA: How to insert Jquery using Emberjs
Fixing! To apply Jquery I should apply Document, follow the corrected File: require(['../js/bootstrap'], function () { require([ 'jquery' ],function($){ $(document).on('click', '#search',…
-
1
votes1
answer71
viewsQ: How to insert Jquery using Emberjs
I’m building a web app with Ember.js (simple) and I’m trying to use some animation functions with Jquey, there goes the code: require(['../js/bootstrap'], function () { require([ 'jquery',…