somtam
Forum Replies Created
-
Forum: Plugins
In reply to: [Ginger - EU Cookie Law] Problem with style.css of child themeSorry to disturb,
but I am still in trouble with one website.
Is there any canche that the plugin have problem with childtheme?
thanks!Forum: Plugins
In reply to: [Ginger - EU Cookie Law] Problem with style.css of child themeI mean that the plugin looks great but it breaks all the site, which is made with enfold by the way. The style.css file of the child theme doesn’t pass any more the css to the elements page.
Anyway this is the only website where I have problem with your plugin. You made a great job.Forum: Plugins
In reply to: [Ginger - EU Cookie Law] Problem with style.css of child themeI make an example. In the page I have a form where the input css declaration are in the style.css file. When the plugin is active the input file doesn’t receive anymore the css. Gone! Instead the css of your plugin are ok and it looks perfect.
thanks!!!!!
Forum: Plugins
In reply to: [Ginger - EU Cookie Law] Problem with style.css of child themeYes I see that the ginger css is loaded first than the style.css and also you give the canche to customize it, but the problem is that the style.css is like it doesn’t exists.
I really have no idea.Forum: Plugins
In reply to: [Ginger - EU Cookie Law] Problem with style.css of child themeThank you so much, but now it is not installed because it would broke all the website.
IF you have any idea I can check by myself.
thanks again for the support!
5 star!Forum: Plugins
In reply to: [Ginger - EU Cookie Law] How to use this plugin with WPMLthat would be great! thank you!
Forum: Plugins
In reply to: [Google Analytics for WooCommerce] This plugin and Yoast GA pluginI had the same doubt, so I check the page sources and I notice that in the /order-received/ the function:
(function(i,s,o,g,r,a,m){i[‘GoogleAnalyticsObject’]=r;i[r]=i[r]||function(){ …. }
was fired twice. I don’t know 100% if this is bad, but was enough to decide to stay only with the woocommerce plugin.
Forum: Fixing WordPress
In reply to: Load jQuery in plugin – the correct wayHi keesiemeijer,
thanks for answer, everything is clear now.Forum: Hacks
In reply to: parse_query on category pageSolved,
is enough to set:
$wp_query->query_vars[‘post_status’] = array( ‘publish’, ‘inherit’, ‘private’ );thanks!
Forum: Fixing WordPress
In reply to: wp_query: posts_per_pageAs they say in the wp_query page:
ATTENTION If you use sticky posts, they will be included (prepended!) in the posts you retrieve whether you want it or not. To suppress this behaviour use ignore_sticky_posts
so probably we have to ad ignore_sticky_posts always if we need the exact number of row to be retrieved.
Forum: Fixing WordPress
In reply to: wp_query: posts_per_pageI tried to add
'ignore_sticky_posts' => true,
and now the number of posts returned is ok.
This stuff let me full of doubts… does it means that for a widget or a plugin that uses WP_Query and posts_per_page we have always to use ignore_sticky_posts?Forum: Fixing WordPress
In reply to: wp_query: posts_per_pageHi and thanks for helping!
I make a simple test in a page, and the code is:$query = new WP_Query( array( 'post_type' => 'post', 'posts_per_page' => 2, ) ); if ( $query->have_posts() ) { while ( $query->have_posts() ) { $query->the_post(); the_title(); echo '<br>'; } } wp_reset_postdata();?
if I add the ‘category_name’ or ‘cat’ everything is working fine…??!!??
Forum: Fixing WordPress
In reply to: wp_query: posts_per_pageI notice that it works only if I insert in the args a specific
“category_name” => “the name”
or
cat = N of categoriesthis doesn’t make sense to me…
PS: only with from the last 3.8 version.
Does something change from that?Forum: Hacks
In reply to: $wpdb->prepare with an sql like "WHERE id IN()"thanks for anwer…
I’ve got it!Forum: Everything else WordPress
In reply to: Where to user prepare with $wpdbok!
it makes sense,
thanks so much!