Digital experiences for all disciplines
Forum Replies Created
-
Posted in: We hit Power Elite.
-
This reply has been marked as private.September 19, 2014 at 1:14 am in reply to: English language files in version 1.91 of the theme seem to be in Greek. #112378
Good to hear. If you’d like some unsolicited advice, I think using “Shopping Cart” is preferable to “Shopping Bag”. The icons used are all carts, it is the more accepted term in North America and most other English speaking countries, with the exception of perhaps the UK. May I also suggest the following for the My Account modal links and window titles (Email customer care, Shipping information, Returns & exchange, F.A.Q.’s).
Email customer care -> Email Customer Care
Shipping information -> Shipping Information
Returns & exchange -> Returns and Exchanges (the use of an ampersand is generally bad form and inconsistent)
F.A.Q.’s -> FAQs (This is the grammatically correct spelling)This bug is still present in the current version of the theme (1.91). Why hasn’t this solution been integrated into the theme yet?
This reply has been marked as private.This reply has been marked as private.Can you please include the patch discussed here in the next update:
http://support.swiftideas.net/forums/topic/view-all-products-issue/What I am describing is not possible after all, the “Account aux options” only seem to appear when changing the “Header Layout” option to one of the first three options. I was trying to reproduce this menu in the top bar, as I am using the fourth header layout, which does not contain the menu in question. Fortunately, I think I can use the “sf_aux_links” function to hack together a solution.
I have enabled “Show account aux option” in the header options, but this does not seem to have any effect.
I forgot to mention, this method makes the custom dropdown menus less fragile when being resized. There are a few cases where this is evident, for example here. When resizing the window the country dropdown is borked.
I forgot to add the following which is needed to hide the arrows from the IE native controls:
::-ms-expand { display: none; }
For whatever reason the code I posted in the first post got mangled. The first code element should read:
.woo-select:after { pointer-events: none; }
October 4, 2013 at 5:22 am in reply to: Broken admin interface with custom wp-content directory #25245There seems to be another instance where a custom wp-content directory breaks something in the Swift Framework.
The code in question: wp-content/themes/neighborhood/includes/swift-framework/sf-shortcodes/config.php.php (lines 1-10):
$wp_load = "../wp-load.php"; $i = 0; while (!file_exists($wp_load) && $i++ < 10) { $wp_load = "../$wp_load"; } require($wp_load);
Replacing the above with the following works, though modifying the theme’s core files is not ideal.
require_once($_SERVER['DOCUMENT_ROOT'] . '/wordpress/wp-load.php');
I do think it would be worthwhile for the theme’s developers to handle cases where the theme and/or wordpress directories are in non-default locations, there seems to be a definite trend towards this type of install.
-
Posted in: We hit Power Elite.