larsemil
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] Breaking widgets on siteI have the exact same problem.
i added this on row 278 in gfcptaddonbase.php
'order' => 'ASC'
and that solved it. please update plugin.
Forum: Themes and Templates
In reply to: [Gridiculous] Menu mobile an tablet does not orkI have same problem.
https://falup.dalnix.seForum: Plugins
In reply to: [Connect Matomo (WP-Matomo, WP-Piwik)] WP-Piwik changes link to IPSolved it.
Actually if i entered https://dalnix.se/piwik i got IP instead of URI.
Entering https://www.dalnix.se/piwik everything worked just fine.The latter being the URI piwik is configured as “its” URI.
Forum: Plugins
In reply to: [Connect Matomo (WP-Matomo, WP-Piwik)] WP-Piwik changes link to IPThis is still the issue. The code generated has the ip instead of the URI. I cant find any way to change this from within the plugin so I have to disable to enter the code and then I manually insert the code into the footer in the theme.
Latest version of all things involved.
Forum: Plugins
In reply to: [Jigoshop] Jigoshop shop page loaded without headers…Oh: almost forgot.
The theme running on page is Arctica by AIT.
They use WPLatte(https://www.ait-themes.com/doc/wplatte-html-templates/) to generate templates. Could that be the case?/E
Forum: Fixing WordPress
In reply to: Search Form with Custom Taxonomy DropdownI solved this by doing this:
This is my $_GET
Array ( [utbildningsniva] => Array ( [0] => 12 ) [ort] => Array ( [0] => 7 ) [s] => program [post_type] => Page )
And then i did this in search.php
<?php $search['post_type'] = 'page'; $search['tax_query'] = array( 'relation' => 'or', ); foreach($_GET as $key => $option) { if(is_array($option)) { array_push($search['tax_query'], array( 'taxonomy' => $key, 'field' => 'id', 'terms' => $option )); } } query_posts($search); ?>
Also note that in my case i have multiple terms and the user got the ability to choose multiple terms. Which means that i use lots of arrays in my search function.
Good luck!
Forum: Plugins
In reply to: [Contact Form 7] [Plugin: Contact Form 7] Passing on actual form nameNoone?
Forum: Fixing WordPress
In reply to: [WP-Paginate] Can't get WP-Paginate to work on single.phpI am using a custom query to list news from news category. would like to paginate those.
<?php $wp_query = new WP_Query('category_name=nyheter&posts_per_page=1&paged='.get_query_var( 'paged' )); ?> <?php while ($wp_query->have_posts()) : $wp_query->the_post(); ?> <a href="<?php the_permalink();?>" title="<?php the_title();?>"><?php the_title(); ?></a><br/> <?php endwhile; ?><br/> <?php if(function_exists('wp_paginate')) { wp_paginate(); } ?>
Allthouh it seems that single.php cannot handle the parameters sent. any ideas?
Thanks alot! That did help. I cant find a way to get rid of that green box and style that though.
Tried a style like this:
.wpcf7-response-output, .wpcf7-display-none, .wpcf7-mail-sent-ok
{
margin: 0px;
padding: 0px;
border: 0px;
}But that did nothing.