Serafín Danessa
Forum Replies Created
-
Forum: Plugins
In reply to: [Mercado Pago payments for WooCommerce] Compatibility ProblemIt seems that it’s also a generic problem that can generate other compatibility issues, but not sure.
This is what it says:Payment gateway plugins have a property called enabled, which can have one of two values: yes, if gateway is enabled, or no, if the gateway is disabled. The MercadoPago plugin, instead, incorrectly returns a boolean value, i.e. true when it’s enabled and false when it’s disabled.
To fix it you just need to change a line, and that worked for me. But I’m not sure if that affect another part of your plug. Apparently no.
Cheers!
Forum: Plugins
In reply to: [WordPress Social Login] Get user token to call APIThanks Juan, Gonna try it both ways, but probably the firstone is better for future plugin updates.
Gracias y Saludos!
Forum: Plugins
In reply to: [WooCommerce ARS Currency] PayPal currency problemThanks for the answer! You’re talking about the PayPal API, or Woocommerce that doesn’t accept the currency?
Cheers!
Forum: Plugins
In reply to: [Cimy User Extra Fields] Using CUEF as meta with WP_User_QueryOk, thanks anyways for all your Work!
Cheers!
Hi, I’m having the same problem.
I’ve deactivated all plugins, and checked the console at the same time that clicking on the pic to open, and says:
#Object<error> has no method 'replace'
, on line 77 of prettyphoto.js file.
And below:Resource interpreted as Document but transferred with MIME type image/jpeg
Does that helps to figure out the solution? Maybe a jQuery version problem?
Cheers!
Thanks!
Yes, the theme in general sucks.
Thanks for the help!
This is the function that fucked up everything. I’ve commented by the moment, and it’s working OK, but yo know how to fix it in the proper way?
Thanks!!add_filter('pre_get_posts', 'query_post_type'); function query_post_type($query) { if ( is_category() || is_tag() && empty( $query->query_vars['suppress_filters'] ) ) { $post_type = get_query_var('post_type'); if($post_type) $post_type = $post_type; else $post_type = array('post','slider','clients','portfolio','nav_menu_item'); $query->set('post_type',$post_type); return $query; } }
Ok, thanks!
The sidebar is the same.
I’ve tried deactivating all plugins, without success, but changing the theme the widget works fine, so the thing is the theme.
Also, inspecting a little deeper, at the end of function eo_get_events, i’ve add this dumps:
if($query_array){
var_dump($query_array);
$events=get_posts($query_array);
var_dump($events);
return $events;
}The first ($query_array) is the same for both pages, but the second one($events) is different, so get_posts is acting different for those pages…
Any ideas?
Thanks!
Yes, but nothing. You have your site live? Can I see it?
In my site if you choose a day, just write the month as I setted but appear the whole monthly calendar on datepicker, not only the months.By the way, my dateformat is “yy-mm”
Yes, but it didn’t change the datepicker :S
After hundred of tries, I’ve made it.
For set the post on the 3 taxonomy levels the order of the columns is important but also the order of the rows.
For anyone that need it, the result is:“Father, Child
0, Father
Child, Baby”I’ve tested with row 3 at the top and doesn’t work. Must be that way.
Regards!
I’m having the same problem, but can’t solve it that way. Can you copy me an example of the grand-child term?
Thanks!
Forum: Plugins
In reply to: [qTranslate] [Plugin: qTranslate] Spanish problembrasofilo
I’ve replaced the po files as you said and worked for the admin menu tabs.Thanks!
However, I’m having problems with custom menues now.
It show te full title (on backend, frontend works fine), something like <!–:es….
I was using a function for correct that (https://pastebin.com/CxHd8BD3).
Was working good too, but now it resets the names to the current admin language every time I enter to the menu settings, and that’s make that frontend shows same for both languages.Any Idea?
Forum: Themes and Templates
In reply to: Post thumbnail as backgroundIt works! Thanks Frumph