Questions tagged as 'plugin'

0
answers

Ionic Development

I have an Ionic application developed in Windows 10 64-bit environment when viewing the project in Windows 8.1 32 bit error is presented.    The type 'IAsyncOperation < >' is defined in an assembly that is not referenced. You must add a...
asked by 23.08.2018 / 05:27
0
answers

WordPress Plugin WP-PageNavi does not find a second page

The pagination appears at the bottom of the page, the limit imposed with the custom query is respected on the first page, but when I access page 2, I fall into a 404. Here is the code: <?php $category = get_the_category(); $...
asked by 08.08.2018 / 15:31
0
answers

How to request the aws-sdk plugin in Serverless.yml?

I have a Typescript function that needs to import the aws-sdk plugin for NodeJs. import * as Lambda from 'aws-sdk/clients/lambda'; In serverless.yml you should normally do: plugins: - serverless-aws-sdk When I try to deploy I get an...
asked by 03.08.2018 / 17:37
1
answer

Strings not detected by Polylang.

In a wordpress site to make it bilingual, I'm using the Polylang plugin, however I need to translate the part of Search and I can not. This page is not a page listed in wordpress and the list of Strings to translate, it does not appear. It would...
asked by 01.08.2018 / 17:29
0
answers

Is it possible to save document rum after removing it using a middleware in Mongoose?

I'm developing a system that requires some MongoDB documents to be kept in a database even if they have been removed, for historical purposes, so I created a plugin that inserts 3 fields: criadoEm atualizadoEm apagadoEm...
asked by 16.07.2018 / 21:06
0
answers

Capture values from a multiselect - jQuery plugin

Hello, I generated a form using the Mulsiselect plugin. However, I am not sure how to capture the values that are selected by the user. My last attempt was to try to play inside a form and capture the id via POST, but the idea did not work. T...
asked by 12.07.2018 / 19:29
0
answers

How do I make a face book plugin responsive?

This is the following, I have a facebook plugin that is inside a DIV which in turn is the body of the page, This DIV has margins so when reducing the size of the window the plugin goes out of the DIV. I need to reduce the size of the window by r...
asked by 09.07.2018 / 16:57
0
answers

Moodle: Verify Certificate does not display information

The block Verify Certificate does not pull information about certificates validated by the system, it only shows this screen. Detail to which this code is registered in the system.     
asked by 04.06.2018 / 19:16
0
answers

Check cart is NOT empty Woocommerce 3.4+

I want to check if the cart is NOT empty, but I can not! Can someone help me, please? . add_action( 'wp_footer', 'redirecionar' ); function redirecionar(){ global $woocommerce; if ( !sizeof($woocommerce->cart->cart_...
asked by 03.06.2018 / 13:12
1
answer

Redirect if the basket is empty | Woocommerce 3+

add_action( 'wp_footer', 'redirecionar' ); function redirecionar(){ global $woocommerce; if ( is_page('carrinho-de-compras') and !sizeof($woocommerce->cart->cart_contents) ) { wp_redirect( get_home_url() ); exit();...
asked by 24.05.2018 / 15:09