karimun
Forum Replies Created
-
Hello support, is this issue solved in latest v2.4.5
?Forum: Plugins
In reply to: [ACF Post Types] Categories?Same here.
And: How to define if taxonomy is hierarchical (like categories/tags)?
thanksDone.
It seems to happen when your default demo posts/cats (or both?) are removed from the backend.
Works again after removing all %epkb% dbFields from options.table and installing the plugin from scratch.
Have a look, %sequence% fields were (suddently) empty.
https://pasteboard.co/GNwyKVY.jpgI will open a support ticket if you need more info.
Pavlo,
what I did is changing the class name to something nonesense in get_currencies() .. and now the refund per item works. ??
class_exists(‘WOOCS_INACT’)
Do you recommend another, more elegant way?
Pavlo, here the code from:
/plugins/woocommerce-tm-extra-product-options/include/class-tm-epo-helper-base.php:494I DONT have the Aelia plugin installed (and it never was installed).
What do you think?public function get_currencies(){
$enabled_currencies = apply_filters(‘wc_aelia_cs_enabled_currencies’, array($this->wc_base_currency()));
if (class_exists(‘WOOCS’)){
global $WOOCS;
$currencies=$WOOCS->get_currencies();
if ($currencies && is_array($currencies)){
$enabled_currencies=array();
foreach ($currencies as $key => $value) {
$enabled_currencies[]=$value[‘name’];
}
}
}elseif (class_exists(‘WooCommerce_All_in_One_Currency_Converter_Main’)){
global $woocommerce_all_in_one_currency_converter;
$currency_data = $woocommerce_all_in_one_currency_converter->settings->get_currency_data();
if ($currency_data && is_array($currency_data)){
$enabled_currencies=array();
foreach ($currency_data as $key => $value) {
$enabled_currencies[]=$key;
}
}
}
return $enabled_currencies;
}public function wc_aelia_cs_enabled_currencies(){
$enabled_currencies = $this->get_currencies();
$from_currency = $this->wc_base_currency();
foreach ($enabled_currencies as $key => $value) {
if($value==$from_currency){
unset($enabled_currencies[$key]);
break;
}
}
return $enabled_currencies;
}public function wc_aelia_num_enabled_currencies(){
$enabled_currencies = $this->wc_aelia_cs_enabled_currencies();
if (is_array($enabled_currencies)){
return count($enabled_currencies);
}
return 0;
}hi pavlo,
yes BACS is payment system
It seems that this plugin does not play nice:
“Woocommerce Extra Product Options”
https://codecanyon.net/item/woocommerce-extra-product-options/7908619Maybe you can give me a rapid hint only by looking at the Error.Log:
`[25-Aug-2016 11:14:23 UTC] PHP Fatal error: Uncaught Error: Call to a member function get_currencies() on null in /var/www/vhosts/mydomain.com/httpdocs/wp/wp-content/plugins/woocommerce-tm-extra-product-options/include/class-tm-epo-helper-base.php:494
Stack trace:
#0 /var/www/vhosts/mydomain.com/httpdocs/wp/wp-content/plugins/woocommerce-tm-extra-product-options/include/class-tm-epo-helper-base.php(515): TM_EPO_HELPER_base->get_currencies()
#1 /var/www/vhosts/mydomain.com/httpdocs/wp/wp-content/plugins/woocommerce-tm-extra-product-options/include/class-tm-epo-builder-base.php(1897): TM_EPO_HELPER_base->wc_aelia_cs_enabled_currencies()
#2 /var/www/vhosts/mydomain.com/httpdocs/wp/wp-content/plugins/woocommerce-tm-extra-product-options/include/class-tm-epo-builder-base.php(699): TM_EPO_BUILDER_base->add_element(‘textarea’, Array)
#3 /var/www/vhosts/mydomain.com/httpdocs/wp/wp-content/plugins/woocommerce-tm-extra-product-options/include/class-tm-epo-builder-base.php(59): TM_EPO_BUILDER_base->init_elements()
#4 /var/www/vhosts/mydomain.com/httpdocs/wp in /var/www/vhosts/mydomain.com/httpdocs/wp/wp-content/plugins/woocommerce-tm-extra-product-options/include/class-tm-epo-helper-base.php on line 494Forum: Reviews
In reply to: [WooCommerce Auto Restore Stock] Does not work with Hold Stock status changeIt works with this line addid to the plugin __construct() function:
add_action( 'woocommerce_order_status_pending_to_cancelled', array( $this, 'restore_order_stock' ), 10, 1 );
Forum: Plugins
In reply to: [Imsanity] Metadata Width/Height not updated after resizeUpdate:
This happened when importing images with another plugin (in my case WP All Import) = IMSANITY_SOURCE_OTHERUploading images directly in the library works as expected.
Forum: Plugins
In reply to: [Visual Editor Custom Buttons] Uncaught ReferenceError: QTags is not definedConfirming the speaker before.
Forum: Plugins
In reply to: [WooCommerce Sermepa payment gateway] Migración SHA256Reading the last entries it seems that the plugin of Jesús ángel works correctly because the default RedSys plugin also shows this 2h cancellation behaviour. For me it seems to indicate that RedSys itself introduced an insane kind of 2h on-hold policy..
Forum: Plugins
In reply to: [WooCommerce Sermepa payment gateway] Migración SHA256Thanks for your efforts JesusAngel.
I′m sure you know that the official WooCommerce extensions are located here:
https://www.redsys.es/wps/portal/redsys/publica/areadeserviciosweb/descargaDeDocumentacionYEjecutables/Unfortunately, the offered WooCommerce plugin never worked for us, your version did the job, in SHA1 times..
We are totally depending on the results of your investigations. Please keep us updated.
Un saludo
Forum: Plugins
In reply to: [Simple Ads Manager] PHP in Ads Code?ok, the default (patch) ad under places ignores PHP but singular ads work fine.
btw, find the ads generation link in the quickmenu of each ad place (in case somebody is confused .. like I was)Forum: Plugins
In reply to: [Plugin: User Access Manager] Buggy?Hi Alex, my users are set to author role. When changing the roles to editor everybody can edit everything – like in default WP. Unfortunately I dont see the effect of your code.
Your script passes a truncated image name to timthumb.php if the name contains spaces (Should be the preg_match part).
Here the changes I did in wordpress-popular-posts.php to make it work:
Change line 795
$img = wp_get_attachment_image($first_attachment->ID); preg_match('/<\s*img [^\>]*src\s*=\s*[\""\']?([^\""\'\s>]*)/i', $img, $imgm);
into this
$img = wp_get_attachment_image_src($first_attachment->ID);
Change line 800
return $imgm;
into this
return $img[0];
And finally the path related code:
In line 708 change
timthumb.php?src=". $img[1]
into this
timthumb.php?src=". $img
Thanks for your plugin.