Dekadinious
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem with search page navigationPerfect!
Thank you very much indeed!
Forum: Fixing WordPress
In reply to: Problem with search page navigationThank you!
That works perfectly. I just wanted to add that I now get http://domain.com//page/2/?s=a in the search, with a double /. This does not matter for me as it works, but do you know if that is incompatible with some browsers? π
Forum: Fixing WordPress
In reply to: Problem with search page navigationIt does not. It has a “searchform.php” file with these contents:
<?php $search_terms = htmlspecialchars( $_GET["s"] ); ?> <form role="form" action="<?php bloginfo('siteurl'); ?>/" id="searchform" method="get"> <label for="s" class="sr-only">SΓΈk</label> <div class="input-group"> <input type="text" class="form-control" id="s" name="s" placeholder="SΓΈk"<?php if ( $search_terms !== '' ) { echo ' value="' . $search_terms . '"'; } ?> /> <span class="input-group-btn"> <button type="submit" class="btn btn-default"><i class="glyphicon glyphicon-search"></i></button> </span> </div> <!-- .input-group --> </form>It also has a loop-nav.php file that might be the culprit:
<?php if ( !is_singular() ) { global $wp_query; $total = $wp_query->max_num_pages; if ( $total > 1 ) { echo '<nav class="pagination-centered">'; $current_page = max(1, get_query_var('paged')); $mid_size = 7 - $current_page; if ($mid_size < 4) $mid_size = 4; $page_links = paginate_links(array( 'base' => get_pagenum_link(1) . '%_%', 'format' => 'page/%#%/', 'current' => $current_page, 'total' => $total, 'mid_size' => $mid_size, 'type' => 'array', 'prev_text' => 'Β«', 'next_text' => 'Neste side Β»' )); if (count($page_links) > 0) { echo '<ul class="pagination">'; // echo '<li><span class="page-numbers pages">Side ' . $current_page . ' av ' . $total . '</span></li>'; foreach ($page_links as $link) { echo '<li>' . $link . '</li>'; } } echo '</nav>'; } } ?>Thanks!
Forum: Fixing WordPress
In reply to: Problem with search page navigationHello!
I deactivated all plugins and resaved the permalinks, but the issue is still there. I suspect some theme-files are causing the issue, but I don’t quite know where to look.
Have a nice day!
Forum: Plugins
In reply to: [Tracking Code Manager] Revenue not showing up?And also, if I refund an order, does the order get reversed in analytics?
Hello!
Sorry for answering so late, but that seems like a good way to go!
Thank you!
Forum: Plugins
In reply to: [WooCommerce] How to not send e-mail some of the time?Hello!
Sorry for answering so late. I have the “Your order is sent”-text in the completed e-mail. Therefore I am completing every order as soon as they are sent, and then I have a separate system for checking for payments on the invoices. If an invoice is not paid on time, I send out a new one with a fee added to it through WooCommerce in the order. To do this, I have to “uncomplete” the order and set it to complete again after adding the fee.
I have found a workaround: Change the e-mail adress in the order to my own while I do the above, and change it back to the customer e-mail adress when I am done π
Have a nice day!
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Change adress info orderWorks great, thank you incredibly much!
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Change adress info orderIt was, but I can’t fix it in the settings. Does not work. I will check their forum.
Thanks!
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Change adress info orderCould it be the WooCommerce Poor Guys Swiss Knife do you think?
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] Change adress info orderThank you, I will look into that! The only problem is that here in Norway it should be like the Dutch adress, but it seems WooCommerce is configured wrongly!
Forum: Plugins
In reply to: [WooCommerce] Remove tooltips on product imageThe javascript removing the title tag without removing the alt-tag worked perfectly!
Thanks π
Forum: Plugins
In reply to: [WooCommerce] Remove tooltips on product imageThank you for using so much of your time on this problem.
It sadly does not work. The alt tag is removed, the title tag is still there and the tooltip still shows.
Thank you for the answers and for the good work!
Ok, but what exactly is the problem that arises when an already subscribed user ticks the box?
And is it possible to make it so that an unsubscribed user gets the box again without having to edit the database for each user?