rayshman
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Hello dear friend,
I had encountered a similar issue as well. Add this code to the footer of your theme and adjust the values as desired. ( – 25 )
This should help until the plugin developers fix the issue.jQuery(document).ready(function($) {
if (typeof $.DgwtWcasAutocompleteSearch !== 'undefined') {
$.DgwtWcasAutocompleteSearch.prototype.fixPositionSuggestions = function() {
var that = this,
$suggestions = that.getSuggestionsContainer(),
$formEl = that.getForm(),
$input = that.el,
formData = that.getElementInfo($formEl),
inputData = that.getElementInfo($input),
offset = {
top: inputData.top + inputData.height - 25,
left: formData.left
};
$suggestions.css(offset);
};
}
});Forum: Plugins
In reply to: [One User Avatar | User Profile Picture] Set upload dirSomeone can help me??
We use WooCommerce’s flat rate. We need this part of your plugin code to return the price without conversion. Of course, the main issue is that we do not want to edit your plugins core and we need a code that we can put in our themes function.
Hi again
I want this code to be disabled or return $priceif ( ! function_exists( 'wmc_get_price_shipping' ) ) { function wmc_get_price_shipping( $price ) { //return wmc_get_price( $price, false, false ); return $price; } }
Forum: Plugins
In reply to: [A-Z Listing] Delete some links and keep titlewith this code
line 49 in a-z-listing.phpwhile ( $a_z_query->have_items() ) : $a_z_query->the_item(); if ( $a_z_query->get_the_item_post_count() == 0 ){ ?> <li> <?php $a_z_query->the_title(); ?> </li> <?php }else{ ?> <li> <a href="<?php $a_z_query->the_permalink(); ?>"> <?php $a_z_query->the_title(); ?> </a> </li> <?php } endwhile; ?>
Forum: Plugins
In reply to: [MAS Videos] template codeThanks for answering @farookibrahim
But in documentation you only have plugin settings and you didn’t put anything in the template to use.
Can this plugin be used as shortcode ?- This reply was modified 4 years, 10 months ago by rayshman.
Viewing 6 replies - 1 through 6 (of 6 total)