Dcone
Forum Replies Created
-
Disabling clicktracking and just pasting the URL directly in the html editor seems to “solve” the problem…or atleast make it work. Obviously not ideal though…
Have the exact same problem! Would love a solution to this!
Forum: Plugins
In reply to: [Any Mobile Theme Switcher] Site not loading on iPad MiniA previous developer had created several versions of a theme, calling the theme-folders:
– x-themeV2.1
– x-themeV2.2
– x-themeV2.3
– etc.But in the css-headers all the themes were called the same “x-theme”. So eventhough the active desktop theme was x-themeV2.2, I think the plugin wasn’t able find it.
By giving all the css-headers unique names it solved my issue. So if you have duplicate themes, make sure they have unique css-header names.
style.css
/* Theme Name: x-themeV2.2 Theme URI: blalblabla Description: blalblabla Author: blalblabla Author URI: blalblablablalbla */
Forum: Plugins
In reply to: [Store Locator Plus? for WP] License dissapearedCould multiple installations of the same plugin cause it to crash on other sites?
It seems that this all happened as I was setting the plugin up on a development site?
Forum: Plugins
In reply to: [Store Locator Plus? for WP] License dissapearedAlso, it seems to have resulted in the map not showing.
I’m running Store Locator Plus 3.0.7 on WP 3.5.1.
Forum: Plugins
In reply to: [WooCommerce] Custom loop using multiple categoriesI was able to solve my problem using the following:
<?php $args = array( 'post_type' => 'product', 'posts_per_page' => -1, 'tax_query' => array( 'relation' => 'AND', array( 'taxonomy' => 'product_cat', 'field' => 'slug', 'terms' => $catOne ), array( 'taxonomy' => 'product_cat', 'field' => 'slug', 'terms' => $catTwo ) ) ); ?>
Hope it helps someone else!
Forum: Plugins
In reply to: [Any Mobile Theme Switcher] Site not loading on iPad MiniIt was a problem with the original desktop theme. Sloppy naming of previous theme versions caused some sort of conflict.