wjweb
Forum Replies Created
-
Forum: Plugins
In reply to: [BEMO A-Z Index] Filter doesnt work on my sitePaid only for a plugin that doesn’t work? I’d like to buy it but I have to be sure it’s working though…
Forum: Plugins
In reply to: [WooCommerce] Displaying SKU under title on category pageI got it working by putting the code in the content-product.php of the theme (Avada). That should do it. Now I get a new problem; all products appear twice on the category page… any ideas how to fix that?
Forum: Plugins
In reply to: [WooCommerce] Displaying SKU under title on category pageIt doesn’t unfortunately. I tried putting it at the top and at the bottom, but no results..
<?php /** * The template for displaying product content within loops * * This template can be overridden by copying it to yourtheme/woocommerce/content-product.php. * * HOWEVER, on occasion WooCommerce will need to update template files and you (the theme developer). * will need to copy the new files to your theme to maintain compatibility. We try to do this. * as little as possible, but it does happen. When this occurs the version of the template file will. * be bumped and the readme will list any important changes. * * @see http://docs.woothemes.com/document/template-structure/ * @author WooThemes * @package WooCommerce/Templates * @version 2.5.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } global $product, $woocommerce_loop; // Store loop count we're currently on if ( empty( $woocommerce_loop['loop'] ) ) { $woocommerce_loop['loop'] = 0; } // Store column count for displaying the grid if ( empty( $woocommerce_loop['columns'] ) ) { $woocommerce_loop['columns'] = apply_filters( 'loop_shop_columns', 4 ); } // Ensure visibility if ( ! $product || ! $product->is_visible() ) { return; } // Increase loop count $woocommerce_loop['loop']++; // Extra post classes $classes = array(); if ( 0 === ( $woocommerce_loop['loop'] - 1 ) % $woocommerce_loop['columns'] || 1 === $woocommerce_loop['columns'] ) { $classes[] = 'first'; } if ( 0 === $woocommerce_loop['loop'] % $woocommerce_loop['columns'] ) { $classes[] = 'last'; } ?> <li <?php post_class( $classes ); ?>> <?php /** * woocommerce_before_shop_loop_item hook. * * @hooked woocommerce_template_loop_product_link_open - 10 */ do_action( 'woocommerce_before_shop_loop_item' ); /** * woocommerce_before_shop_loop_item_title hook. * * @hooked woocommerce_show_product_loop_sale_flash - 10 * @hooked woocommerce_template_loop_product_thumbnail - 10 */ do_action( 'woocommerce_before_shop_loop_item_title' ); /** * woocommerce_shop_loop_item_title hook. * * @hooked woocommerce_template_loop_product_title - 10 */ do_action( 'woocommerce_shop_loop_item_title' ); /** * woocommerce_after_shop_loop_item_title hook. * * @hooked woocommerce_template_loop_rating - 5 * @hooked woocommerce_template_loop_price - 10 */ do_action( 'woocommerce_after_shop_loop_item_title' ); /** * woocommerce_after_shop_loop_item hook. * * @hooked woocommerce_template_loop_product_link_close - 5 * @hooked woocommerce_template_loop_add_to_cart - 10 */ do_action( 'woocommerce_after_shop_loop_item' ); ?> </li> if ( $product->get_sku() ) { echo '<div class="product-meta">SKU: ' . $product->get_sku() . '</div>'; }Forum: Plugins
In reply to: [BEMO A-Z Index] Filter doesnt work on my siteCan you tell me also why the pagination doesn’t work on my site http://www.alertincasso.nl/juridische-begrippen/ ? It used to work fine but since a day or 2 I can’t change between A and B anymore (or any other)
Forum: Plugins
In reply to: [BEMO A-Z Index] Filter doesnt work on my siteSame here, when clicking E it will still give me the whole list, starting at A.
Forum: Plugins
In reply to: [BEMO A-Z Index] Some improvements neededHi Nicolas,
i still have the same problem, can you post a vcopy of your custom version? Or tell me what to change where?
Going from page 2 on one of the letters to another will give me 0 results.
Forum: Plugins
In reply to: [BEMO A-Z Index] Some improvements neededI’m having the same problem. In which file can this be edited or added?
Forum: Plugins
In reply to: [The Events Calendar] IE11 and event titleThe exact link is this: http://www.vjpp.nl/evenement/de-aanloop-naar-en-de-gevolgen-van-het-hangmat-arrest/
Screenshot: http://imgur.com/1LOCgJR
It looks good in IE Edge, Chrome and Firefox, just not in IE 10 and IE 11.
if it helps; the website is running at http://www.propertyandlandsolutions.com/home-2 . The first level is the country: Thailand. Second level is ‘Koh Samui’. Third level are the towns on the island, but when I enter them (i.e. Chaweng) in the search field, it doesn’t give me any hits.
Only ‘Thailand’ and ‘Koh Samui’ work.
thanks for your reply. I only have 2 options in the location field: simple and Location textsearch. How do i setup Google auto suggest?
Forum: Plugins
In reply to: [Realtyna Organic IDX plugin + WPL Real Estate] Remove agent infoYeah i knew it would be easy, just couldn’t find it. Thanks and thumbs up for the quick reply!
Forum: Fixing WordPress
In reply to: Saeed attackerDid you find a solution to this problem already? I have several sites that were hacked by Saeed 210 and unlike previous hacks I’ve been unable to find a solution so far.
I installed Wordfence and it comes up with the result that the site has been hacked, but it unable to replace the files with the original one..
Please let me know if you found something.
Forum: Themes and Templates
In reply to: Disable menu in headerthemeforest. but its heavily modded. why?
hi Denis, thanks a lot! That worked.
Forum: Plugins
In reply to: [qTranslate] Only 1 flag clickableDone. placed it in the wrong part of header.php for some reason.